MQTT example using the Freescale FRDM-K64F platform without additional hardware.
Dependencies: EthernetInterface MQTT mbed-rtos mbed HC_SR04_Ultrasonic_Library
Fork of K64F-RTOS-MQTT-Example by
k64f.h@3:e33c80165703, 2017-08-09 (annotated)
- Committer:
- sim2egor
- Date:
- Wed Aug 09 18:39:52 2017 +0300
- Revision:
- 3:e33c80165703
- Parent:
- 0:9796509d718e
??????? ?? ????????? ?? ???????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
msbaylis | 0:9796509d718e | 1 | #ifndef K64F_H_ |
msbaylis | 0:9796509d718e | 2 | #define K64F_H_ |
msbaylis | 0:9796509d718e | 3 | |
msbaylis | 0:9796509d718e | 4 | typedef enum color {off, red, green, blue} color_t; |
msbaylis | 0:9796509d718e | 5 | |
msbaylis | 0:9796509d718e | 6 | Serial pc(USBTX, USBRX); |
msbaylis | 0:9796509d718e | 7 | DigitalOut redLED(LED_RED); |
msbaylis | 0:9796509d718e | 8 | DigitalOut greenLED(LED_GREEN); |
msbaylis | 0:9796509d718e | 9 | DigitalOut blueLED(LED_BLUE); |
msbaylis | 0:9796509d718e | 10 | InterruptIn switch2(SW2); |
msbaylis | 0:9796509d718e | 11 | InterruptIn switch3(SW3); |
msbaylis | 0:9796509d718e | 12 | |
msbaylis | 0:9796509d718e | 13 | #endif // K64F.H |