Created
December 7, 2016 03:17
-
-
Save brian-lc/af7f5e84b738ec43193e61eeeb7de2da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WAKESTATE = 1; | |
#define SLEEPSTATE = 0; | |
#define ERRORSTATE = -1; | |
// Sensor codes | |
#define ID_CMD = 'I'; | |
#define LED_CMD = 'L'; | |
#define READ_CMD = 'R'; | |
#define SLEEP_CMD = 'Sleep'; | |
class EzoSensor { | |
public: | |
String deviceID; | |
int deviceState; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment