18 lines
257 B
C++
18 lines
257 B
C++
#pragma once
|
|
#include "Particle.h"
|
|
#include "../Figments/Figments.h"
|
|
|
|
class SerialInput: public InputSource {
|
|
public:
|
|
void onStart() override {
|
|
//Serial.begin();
|
|
}
|
|
|
|
InputEvent read();
|
|
|
|
private:
|
|
String m_buf;
|
|
void doCommand();
|
|
|
|
}
|