Dreamforce Heroku Sample mbed application for the FRDM-K64F. This application uses SocketIO to connect and communicate with Heroku.

Dependencies:   BufferedSerial C12832 EthernetInterface HTTPClient-SSL LM75B MMA7660 SocketIO-k64f WebSocketClient-ThermostatDemo mbed-rtos mbed picojson

Fork of df-2013-minihack-thermostat-complete by MBED_DEMOS

Revision:
0:26c48388f725
Child:
6:74c1e9c8c90e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Nov 05 21:31:01 2013 +0000
@@ -0,0 +1,24 @@
+#include "mbed.h"
+
+#include "Thermostat.h"
+
+Serial pc(USBTX, USBRX);
+Thermostat *thermostat = NULL;
+
+// check for exit
+void checkForExit() {
+    if (pc.readable()) {
+        char c = pc.getc();
+        if (c == 0x03) {    // CTRL-C ASCII
+            pc.printf("ctrl-c: closing down thermostat...\r\n");
+            if (thermostat != NULL) delete thermostat;
+            pc.printf("app exiting...\r\n");
+            exit(1);
+        }
+    }
+}
+
+int main() {
+    thermostat = new Thermostat();
+    if (thermostat != NULL) thermostat->runDemo();
+}