MBED MQTT Lighting Endpoint for NXP LPC1768+AppBoard
Dependencies: C12832_lcd EthernetInterface StatusReporter LM75B MQTT-ansond endpoint_core endpoint_mqtt mbed-rtos mbed
Definitions.h@249:feb98bc83ea3, 2014-08-01 (annotated)
- Committer:
- ansond
- Date:
- Fri Aug 01 12:23:09 2014 +0000
- Revision:
- 249:feb98bc83ea3
- Parent:
- 241:f0e47c31bd04
- Child:
- 260:ed171435e410
updates for APM copcar
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ansond | 172:e996f6ce25f7 | 1 | /* Copyright C2013 Doug Anson, MIT License |
ansond | 172:e996f6ce25f7 | 2 | * |
ansond | 172:e996f6ce25f7 | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
ansond | 172:e996f6ce25f7 | 4 | * and associated documentation files the "Software", to deal in the Software without restriction, |
ansond | 172:e996f6ce25f7 | 5 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
ansond | 172:e996f6ce25f7 | 6 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
ansond | 172:e996f6ce25f7 | 7 | * furnished to do so, subject to the following conditions: |
ansond | 172:e996f6ce25f7 | 8 | * |
ansond | 172:e996f6ce25f7 | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
ansond | 172:e996f6ce25f7 | 10 | * substantial portions of the Software. |
ansond | 172:e996f6ce25f7 | 11 | * |
ansond | 172:e996f6ce25f7 | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
ansond | 172:e996f6ce25f7 | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
ansond | 172:e996f6ce25f7 | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
ansond | 172:e996f6ce25f7 | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
ansond | 172:e996f6ce25f7 | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
ansond | 172:e996f6ce25f7 | 17 | */ |
ansond | 172:e996f6ce25f7 | 18 | |
ansond | 172:e996f6ce25f7 | 19 | #ifndef _DEFINITIONS_H_ |
ansond | 172:e996f6ce25f7 | 20 | #define _DEFINITIONS_H_ |
ansond | 172:e996f6ce25f7 | 21 | |
ansond | 172:e996f6ce25f7 | 22 | // platform |
ansond | 172:e996f6ce25f7 | 23 | #include "mbed.h" |
ansond | 172:e996f6ce25f7 | 24 | |
ansond | 173:b8f479524c92 | 25 | // Platform Switch |
ansond | 181:f78020a9b78a | 26 | //#define _ENDPOINT_UBLOX_PLATFORM true // uncomment for the U-Blox MBED platform |
ansond | 181:f78020a9b78a | 27 | //#define _ENDPOINT_FREESCALE_PLATFORM true // uncomment for the Freescale Freedom MBED platform |
ansond | 181:f78020a9b78a | 28 | #define _ENDPOINT_NXP_PLATFORM true // uncomment for the NXP MBED platform |
ansond | 181:f78020a9b78a | 29 | |
ansond | 190:fc7814c8a5c5 | 30 | // Network Usage (default is Ethernet) |
ansond | 190:fc7814c8a5c5 | 31 | // #define CELLULAR_NETWORK true // true - use cellular network, false - use ethernet (cannot co-exist together) |
ansond | 190:fc7814c8a5c5 | 32 | |
ansond | 239:94000806837e | 33 | // Multitech Temp Probe customization |
ansond | 239:94000806837e | 34 | #define MULTITECH_TEMP_PROBE true // true - on, undef - off |
ansond | 239:94000806837e | 35 | |
ansond | 181:f78020a9b78a | 36 | // what kind of personality we are... |
ansond | 225:b25d253ecd7e | 37 | #define LIGHT_PERSONALITY true // the endpoint will be a (set of) lights |
ansond | 225:b25d253ecd7e | 38 | //#define COPCAR_PERSONALITY true // the endpoint will emulate a cop car |
ansond | 173:b8f479524c92 | 39 | |
ansond | 249:feb98bc83ea3 | 40 | // special behavior for APM CopCar - steady state on/off for blinking |
ansond | 249:feb98bc83ea3 | 41 | //#define APM_COPCAR_ENABLE true // true - enabled, (undef) - disabled |
ansond | 249:feb98bc83ea3 | 42 | |
ansond | 240:ddc9d4962a86 | 43 | // APM Demo Light Configuration |
ansond | 240:ddc9d4962a86 | 44 | #define APM_LIGHT_ENABLE false // true - enable APM Demo light, undef - disable |
ansond | 240:ddc9d4962a86 | 45 | |
ansond | 240:ddc9d4962a86 | 46 | // External LED Light Configuration |
ansond | 240:ddc9d4962a86 | 47 | #define EXT_LED_ENABLE true // true - enable external LED endpoint light, false - disable |
ansond | 240:ddc9d4962a86 | 48 | |
ansond | 172:e996f6ce25f7 | 49 | // include common definitions |
ansond | 172:e996f6ce25f7 | 50 | #include "CommonDefinitions.h" |
ansond | 172:e996f6ce25f7 | 51 | |
ansond | 174:4da75aabdd67 | 52 | // MQTT specific support |
ansond | 174:4da75aabdd67 | 53 | #include "MQTTDefinitions.h" |
ansond | 172:e996f6ce25f7 | 54 | |
ansond | 172:e996f6ce25f7 | 55 | // Philips Light Config |
ansond | 172:e996f6ce25f7 | 56 | #define PL_ENABLE false // true - enable for endpoint light, false - disable |
ansond | 172:e996f6ce25f7 | 57 | #define PL_LIGHT_ID PL_LIGHT_ID_BILL // Default light for Philips Light |
ansond | 172:e996f6ce25f7 | 58 | |
ansond | 172:e996f6ce25f7 | 59 | // Endpoint GPS Coordinates/Location |
ansond | 241:f0e47c31bd04 | 60 | //#define ENDPOINT_LOCATION "Las Vegas Country Club" // Where this light/endpoint lives |
ansond | 241:f0e47c31bd04 | 61 | //#define ENDPOINT_GPS_COORDS "-115.143470 36.131916" // golf course -115.143470 36.131916 |
ansond | 241:f0e47c31bd04 | 62 | #define ENDPOINT_LOCATION "Bilbao Spain Utilities" // Where this light/endpoint lives |
ansond | 241:f0e47c31bd04 | 63 | #define ENDPOINT_GPS_COORDS "-2.923628 43.263383" // Bilbao spain |
ansond | 241:f0e47c31bd04 | 64 | |
ansond | 172:e996f6ce25f7 | 65 | |
ansond | 172:e996f6ce25f7 | 66 | // MBED doesnt have a good notion of time - so we code it here |
ansond | 172:e996f6ce25f7 | 67 | #define ENDPOINT_STARTTIME "\"STARTDATETIME\":\"2014-03-09T22:03:06-07:00\"," |
ansond | 172:e996f6ce25f7 | 68 | #define ENDPOINT_STOPTIME "\"ENDDATETIME\":\"2015-03-10T03:35:55-07:00\"," |
ansond | 172:e996f6ce25f7 | 69 | #define ENDPOINT_TIMEZONE "\"TIMEZONEOFFSET\":\"-07:00\"" |
ansond | 172:e996f6ce25f7 | 70 | |
ansond | 174:4da75aabdd67 | 71 | // DEBUG Memory Debug Enable/Disable |
ansond | 174:4da75aabdd67 | 72 | // #define ENABLE_MEMORY_DEBUG true // false - disable, true - enable |
ansond | 172:e996f6ce25f7 | 73 | |
ansond | 174:4da75aabdd67 | 74 | // DEBUG Hush Logging |
ansond | 174:4da75aabdd67 | 75 | //#define HUSH_LOG true // false - logging output, true - no logging |
ansond | 172:e996f6ce25f7 | 76 | |
ansond | 174:4da75aabdd67 | 77 | // DEBUG Hush LED usage |
ansond | 174:4da75aabdd67 | 78 | //define HUSH_LEDS true // false - enable LEDs, true - disable LEDs |
ansond | 172:e996f6ce25f7 | 79 | |
ansond | 174:4da75aabdd67 | 80 | // KEIL: our MAC address |
ansond | 174:4da75aabdd67 | 81 | //#define MAC_ADDRESS 0xa0,0x12,0xAB,0xE3,0x4F,0x56 |
ansond | 172:e996f6ce25f7 | 82 | |
ansond | 172:e996f6ce25f7 | 83 | #endif // _DEFINITIONS_H |