pfodParser  5.0.1
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
pfodCmd.h
Go to the documentation of this file.
1 #ifndef PFOD_CMD_H
2 #define PFOD_CMD_H
3 
4 #include <Printable.h>
5 
6 class pfodCmd : public Printable {
7  public:
8  pfodCmd();
9  char cmd[5] = ""; // allow for cmds from m1 to m999
10  size_t printTo(Print& p) const;
11  private:
12  static size_t _cmdInt;
13 };
14 #endif
Definition: pfodCmd.h:6
size_t printTo(Print &p) const
char cmd[5]
Definition: pfodCmd.h:9