Finished GCodeSender

This commit is contained in:
Alessandro Ranellucci 2014-12-27 22:57:20 +01:00
parent 8b438dc0de
commit b126f92f41
7 changed files with 222 additions and 68 deletions

View file

@ -11,6 +11,9 @@
GCodeSender(std::string port, unsigned int baud_rate);
~GCodeSender();
bool is_connected() const;
int queue_size() const;
void disconnect();
void send(std::string s);
};