
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
C027.h@27:9727cdb5fa65, 2016-03-30 (annotated)
- Committer:
- skoda
- Date:
- Wed Mar 30 07:05:50 2016 +0000
- Revision:
- 27:9727cdb5fa65
- Parent:
- 25:93368e752d2d
FireFly mbed first release v1.0
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 |
samdanbury | 6:37b6d0d56190 | 15 | *******************************************************************************/ |
samdanbury | 6:37b6d0d56190 | 16 | |
samdanbury | 6:37b6d0d56190 | 17 | #if !defined(K64F_H) |
samdanbury | 6:37b6d0d56190 | 18 | #define K64F_H |
samdanbury | 6:37b6d0d56190 | 19 | |
samdanbury | 6:37b6d0d56190 | 20 | C12832 lcd(D11, D13, D12, D7, D10); |
mazgch | 11:7a6df9a2dcdc | 21 | PwmOut r(D5); |
mazgch | 11:7a6df9a2dcdc | 22 | PwmOut g(D9); |
mazgch | 11:7a6df9a2dcdc | 23 | PwmOut b(D8); |
samdanbury | 6:37b6d0d56190 | 24 | DigitalOut led1(LED1); DigitalOut led2(LED2); DigitalOut led3(LED3); |
samdanbury | 6:37b6d0d56190 | 25 | DigitalIn Up(A2); DigitalIn Down(A3); DigitalIn Left(A4); DigitalIn Right(A5); DigitalIn Click(D4); |
samdanbury | 6:37b6d0d56190 | 26 | AnalogIn ain1 (A0); AnalogIn ain2 (A1); |
skoda | 27:9727cdb5fa65 | 27 | |
skoda | 25:93368e752d2d | 28 | RawSerial pc(USBTX, USBRX); |
skoda | 25:93368e752d2d | 29 | RawSerial xbee(P4_28,P4_29); |
skoda | 24:437c753be4fd | 30 | |
samdanbury | 6:37b6d0d56190 | 31 | |
samdanbury | 6:37b6d0d56190 | 32 | #define LED2_OFF 0 |
samdanbury | 6:37b6d0d56190 | 33 | #define LED2_ON 1 |
samdanbury | 6:37b6d0d56190 | 34 | |
samdanbury | 6:37b6d0d56190 | 35 | #define DEFAULT_TYPE_NAME "iotsample-mbed-c027" |
samdanbury | 6:37b6d0d56190 | 36 | |
mazgch | 11:7a6df9a2dcdc | 37 | #include "lpc_phy.h" |
mazgch | 11:7a6df9a2dcdc | 38 | // need a wrapper since K64F and LPC1768 wont have the same name for mii read methods |
mazgch | 11:7a6df9a2dcdc | 39 | static uint32_t linkStatus(void) |
mazgch | 11:7a6df9a2dcdc | 40 | { |
mazgch | 11:7a6df9a2dcdc | 41 | return (lpc_mii_read_data() & 1); |
mazgch | 11:7a6df9a2dcdc | 42 | } |
mazgch | 11:7a6df9a2dcdc | 43 | |
samdanbury | 6:37b6d0d56190 | 44 | #endif |