Thermometer connected to internet

Dependencies:   BME280 EthernetInterface FXOS8700Q HTTPClient-wolfSSL NTPClient NetworkAPI OAuth4Tw TSL2561_I2C eCompass_FPU_Lib mbed-rtos mbed wolfSSL

Fork of TCP_Server_Example by Roy van Dam

Committer:
zeus3110
Date:
Sun Sep 27 11:04:54 2015 +0000
Revision:
12:12369ee344ab
Network thermometer test program

Who changed what in which revision?

UserRevisionLine numberNew contents of line
zeus3110 12:12369ee344ab 1 #ifndef PORT_H
zeus3110 12:12369ee344ab 2 #define PORT_H
zeus3110 12:12369ee344ab 3
zeus3110 12:12369ee344ab 4 // I2C Port
zeus3110 12:12369ee344ab 5 #define I2C_SCL PTE24
zeus3110 12:12369ee344ab 6 #define I2C_SDA PTE25
zeus3110 12:12369ee344ab 7
zeus3110 12:12369ee344ab 8 // GPIO Port for LED
zeus3110 12:12369ee344ab 9 #define LED_G LED2
zeus3110 12:12369ee344ab 10 #define LED_R LED1
zeus3110 12:12369ee344ab 11 #define LED_B LED3
zeus3110 12:12369ee344ab 12
zeus3110 12:12369ee344ab 13 // Debug Port
zeus3110 12:12369ee344ab 14 extern Serial pc;
zeus3110 12:12369ee344ab 15
zeus3110 12:12369ee344ab 16 #endif