IoT based security system that detects suspicious movements through a motion detector and alerts the user on their gmail. In the presence of motion sensed between 7 to 9 times, the Grove PIR sensor sends an input to the board which is connected to internet via Ethernet. The board publishes the sensor data on IBM IoT foundation, which is known as IBM Watson. The data is then sent to IBM Bluemix which provides real time analysis and the remote time data management and monitoring. For more information : https://developer.ibm.com/recipes/tutorials/mbed-c-client-library-for-ibm-iot-foundation/

Dependencies:   C12832 EthernetInterface LM75B MMA7660 MQTT mbed-rtos mbed

Fork of IBMIoTClientEthernetExample by IBM Watson IoT

Revision:
11:7a6df9a2dcdc
Parent:
6:37b6d0d56190
--- a/C027.h	Mon Oct 20 14:37:33 2014 +0000
+++ b/C027.h	Tue Mar 10 08:24:52 2015 +0000
@@ -18,6 +18,9 @@
 #define K64F_H
 
 C12832 lcd(D11, D13, D12, D7, D10);
+PwmOut r(D5);
+PwmOut g(D9);
+PwmOut b(D8);
 DigitalOut led1(LED1); DigitalOut led2(LED2); DigitalOut led3(LED3);
 MMA7660 MMA(D14, D15);
 LM75B sensor(D14,D15);
@@ -29,4 +32,11 @@
 
 #define DEFAULT_TYPE_NAME "iotsample-mbed-c027"
 
+#include "lpc_phy.h"
+// need a wrapper since K64F and LPC1768 wont have the same name for mii read methods
+static uint32_t linkStatus(void)
+{
+    return (lpc_mii_read_data() & 1);
+}
+
 #endif
\ No newline at end of file