Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of FBRDash by
Comms.h
00001 #ifndef FBRDASH_COMMS_H 00002 #define FBRDASH_COMMS_H 00003 00004 #include "State.h" 00005 00006 class Comms 00007 { 00008 public: 00009 Comms(State* _values); 00010 virtual void send(char message) {}; 00011 00012 protected: 00013 State* values; 00014 00015 void process_packet(unsigned char id, int length, unsigned char data[]); 00016 }; 00017 00018 #endif
Generated on Wed Jul 13 2022 14:23:01 by
1.7.2
