A program for IoT demonstration with mbed, EnOcean and MQTT.

Dependencies:   IBMIoTClientEthernetExample C12832 EthernetInterface MQTT USB400Serial USBHost mbed

Fork of IBMIoTClientEthernetExample by IBM Watson IoT

Revision:
6:37b6d0d56190
Child:
8:80d49dd91542
diff -r 11fd21af0c0f -r 37b6d0d56190 LPC1768.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LPC1768.h	Wed Aug 20 12:45:14 2014 +0000
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Copyright (c) 2014 IBM Corp.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ *
+ * The Eclipse Public License is available at
+ *    http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ *   http://www.eclipse.org/org/documents/edl-v10.php.
+ *
+ * Contributors:
+ *    Ian Craggs - initial implementation
+ *******************************************************************************/
+
+#if !defined(LPC1768_H)
+#define LPC1768_H
+
+C12832 lcd(p5, p7, p6, p8, p11);
+DigitalOut led2(LED2);
+PwmOut r(p23); PwmOut g(p24); PwmOut b(p25);
+MMA7660 MMA(p28, p27);
+LM75B sensor(p28, p27);
+DigitalIn Down(p12); DigitalIn Left(p13); DigitalIn Click(p14); DigitalIn Up(p15); DigitalIn Right(p16);
+AnalogIn ain1(p19); AnalogIn ain2(p20);
+
+#define LED2_OFF 0
+#define LED2_ON 1
+
+#define DEFAULT_TYPE_NAME "iotsample-mbed-lpc1768"
+
+#endif
\ No newline at end of file