Wifi Pressure Sensor
Dependencies: HTTPClient MPL3115A2 NTPClient TMP102 USBDevice cc3000_hostdriver_mbedsocket mbed
main.h@7:3d9d776dc20b, 2014-01-08 (annotated)
- Committer:
- markirwin
- Date:
- Wed Jan 08 05:17:13 2014 +0000
- Revision:
- 7:3d9d776dc20b
- Parent:
- 0:0bce3a738bcb
Post Temp to Xively
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
SolderSplashLabs | 0:0bce3a738bcb | 1 | |
SolderSplashLabs | 0:0bce3a738bcb | 2 | #ifndef MAIN_H |
SolderSplashLabs | 0:0bce3a738bcb | 3 | #define MAIN_H |
SolderSplashLabs | 0:0bce3a738bcb | 4 | |
SolderSplashLabs | 0:0bce3a738bcb | 5 | #define SERIAL_BAUD_RATE 115200 |
SolderSplashLabs | 0:0bce3a738bcb | 6 | |
SolderSplashLabs | 0:0bce3a738bcb | 7 | typedef enum MENU_LEVEL |
SolderSplashLabs | 0:0bce3a738bcb | 8 | { |
SolderSplashLabs | 0:0bce3a738bcb | 9 | MENU_TOP = 0, |
SolderSplashLabs | 0:0bce3a738bcb | 10 | MENU_CONNECTION, |
SolderSplashLabs | 0:0bce3a738bcb | 11 | MENU_TCP, |
SolderSplashLabs | 0:0bce3a738bcb | 12 | MENU_UDP |
SolderSplashLabs | 0:0bce3a738bcb | 13 | } MENU_LEVEL; |
SolderSplashLabs | 0:0bce3a738bcb | 14 | |
SolderSplashLabs | 0:0bce3a738bcb | 15 | extern cc3000 wifi; |
SolderSplashLabs | 0:0bce3a738bcb | 16 | |
SolderSplashLabs | 0:0bce3a738bcb | 17 | #endif |