
This is a program that turns your mbed device into a FireFly gateway, that publishes data from FireFly BLE modules to the IBM Watson IoT Platform.
Dependencies: C12832 EthernetInterface MQTT mbed-rtos mbed
Fork of IBMIoTClientEthernetExample by
LPC1768.h@26:65808ea318a3, 2016-03-04 (annotated)
- Committer:
- skoda
- Date:
- Fri Mar 04 09:14:23 2016 +0000
- Revision:
- 26:65808ea318a3
- Parent:
- 25:93368e752d2d
- Child:
- 27:9727cdb5fa65
final version before release
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
samdanbury | 6:37b6d0d56190 | 1 | /******************************************************************************* |
samdanbury | 6:37b6d0d56190 | 2 | * Copyright (c) 2014 IBM Corp. |
samdanbury | 6:37b6d0d56190 | 3 | * |
samdanbury | 6:37b6d0d56190 | 4 | * All rights reserved. This program and the accompanying materials |
samdanbury | 6:37b6d0d56190 | 5 | * are made available under the terms of the Eclipse Public License v1.0 |
samdanbury | 6:37b6d0d56190 | 6 | * and Eclipse Distribution License v1.0 which accompany this distribution. |
samdanbury | 6:37b6d0d56190 | 7 | * |
samdanbury | 6:37b6d0d56190 | 8 | * The Eclipse Public License is available at |
samdanbury | 6:37b6d0d56190 | 9 | * http://www.eclipse.org/legal/epl-v10.html |
samdanbury | 6:37b6d0d56190 | 10 | * and the Eclipse Distribution License is available at |
samdanbury | 6:37b6d0d56190 | 11 | * http://www.eclipse.org/org/documents/edl-v10.php. |
samdanbury | 6:37b6d0d56190 | 12 | * |
samdanbury | 6:37b6d0d56190 | 13 | * Contributors: |
samdanbury | 6:37b6d0d56190 | 14 | * Ian Craggs - initial implementation |
icraggs | 8:80d49dd91542 | 15 | * Sam Grove - added mehtod to check the status of the Ethernet cable |
samdanbury | 6:37b6d0d56190 | 16 | *******************************************************************************/ |
samdanbury | 6:37b6d0d56190 | 17 | |
samdanbury | 6:37b6d0d56190 | 18 | #if !defined(LPC1768_H) |
samdanbury | 6:37b6d0d56190 | 19 | #define LPC1768_H |
samdanbury | 6:37b6d0d56190 | 20 | |
samdanbury | 6:37b6d0d56190 | 21 | C12832 lcd(p5, p7, p6, p8, p11); |
samdanbury | 6:37b6d0d56190 | 22 | DigitalOut led2(LED2); |
icraggs | 8:80d49dd91542 | 23 | PwmOut r(p23); |
icraggs | 8:80d49dd91542 | 24 | PwmOut g(p24); |
icraggs | 8:80d49dd91542 | 25 | PwmOut b(p25); |
skoda | 20:14a61a65afba | 26 | //MMA7660 MMA(p28, p27); |
skoda | 20:14a61a65afba | 27 | //LM75B sensor(p28, p27); |
icraggs | 8:80d49dd91542 | 28 | DigitalIn Down(p12); |
icraggs | 8:80d49dd91542 | 29 | DigitalIn Left(p13); |
icraggs | 8:80d49dd91542 | 30 | DigitalIn Click(p14); |
icraggs | 8:80d49dd91542 | 31 | DigitalIn Up(p15); |
icraggs | 8:80d49dd91542 | 32 | DigitalIn Right(p16); |
icraggs | 8:80d49dd91542 | 33 | AnalogIn ain1(p19); |
icraggs | 8:80d49dd91542 | 34 | AnalogIn ain2(p20); |
skoda | 20:14a61a65afba | 35 | //Matjaz |
skoda | 20:14a61a65afba | 36 | //I2CSlave slave(p28, p27); //p9sda p10scl |
skoda | 24:437c753be4fd | 37 | //I2CSlave slave(p9, p10); |
skoda | 25:93368e752d2d | 38 | RawSerial pc(USBTX, USBRX); |
skoda | 25:93368e752d2d | 39 | RawSerial xbee(p9,p10); |
skoda | 24:437c753be4fd | 40 | //Serial xbee(p13,p14); |
samdanbury | 6:37b6d0d56190 | 41 | |
samdanbury | 6:37b6d0d56190 | 42 | #define LED2_OFF 0 |
samdanbury | 6:37b6d0d56190 | 43 | #define LED2_ON 1 |
samdanbury | 6:37b6d0d56190 | 44 | |
samdanbury | 6:37b6d0d56190 | 45 | #define DEFAULT_TYPE_NAME "iotsample-mbed-lpc1768" |
samdanbury | 6:37b6d0d56190 | 46 | |
icraggs | 8:80d49dd91542 | 47 | #include "lpc_phy.h" |
icraggs | 8:80d49dd91542 | 48 | // need a wrapper since K64F and LPC1768 wont have the same name for mii read methods |
icraggs | 8:80d49dd91542 | 49 | static uint32_t linkStatus(void) |
icraggs | 8:80d49dd91542 | 50 | { |
icraggs | 8:80d49dd91542 | 51 | return (lpc_mii_read_data() & 1); |
icraggs | 8:80d49dd91542 | 52 | } |
icraggs | 8:80d49dd91542 | 53 | |
samdanbury | 6:37b6d0d56190 | 54 | #endif |