
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
K64F.h@24:437c753be4fd, 2016-03-01 (annotated)
- Committer:
- skoda
- Date:
- Tue Mar 01 06:20:45 2016 +0000
- Revision:
- 24:437c753be4fd
- Parent:
- 20:14a61a65afba
- Child:
- 25:93368e752d2d
before MODSERIAL
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 method to check the status of the Ethernet cable |
samdanbury | 6:37b6d0d56190 | 16 | *******************************************************************************/ |
samdanbury | 6:37b6d0d56190 | 17 | |
samdanbury | 6:37b6d0d56190 | 18 | #if !defined(K64F_H) |
samdanbury | 6:37b6d0d56190 | 19 | #define K64F_H |
samdanbury | 6:37b6d0d56190 | 20 | |
samdanbury | 6:37b6d0d56190 | 21 | C12832 lcd(D11, D13, D12, D7, D10); |
samdanbury | 6:37b6d0d56190 | 22 | BusOut led2 (LED_BLUE); |
samdanbury | 6:37b6d0d56190 | 23 | BusOut r (D5); |
samdanbury | 6:37b6d0d56190 | 24 | BusOut g (D9); |
samdanbury | 6:37b6d0d56190 | 25 | BusOut b (D8); |
skoda | 20:14a61a65afba | 26 | //MMA7660 MMA(PTE25, PTE24); //matjaz: ne uporablam !!! |
skoda | 20:14a61a65afba | 27 | //LM75B sensor(PTE25, PTE24); |
samdanbury | 6:37b6d0d56190 | 28 | DigitalIn Up(A2); DigitalIn Down(A3); DigitalIn Right(A4); DigitalIn Left(A5); DigitalIn Click(D4); |
samdanbury | 6:37b6d0d56190 | 29 | AnalogIn ain1(A0); AnalogIn ain2(A1); |
samdanbury | 6:37b6d0d56190 | 30 | |
skoda | 20:14a61a65afba | 31 | //Matjaz |
skoda | 20:14a61a65afba | 32 | //I2C masterI2C(PTE25,PTE24); //I2C (PinName sda, PinName scl) |
skoda | 24:437c753be4fd | 33 | //I2CSlave slave(PTE25, PTE24); |
skoda | 24:437c753be4fd | 34 | Serial pc(USBTX, USBRX); |
skoda | 24:437c753be4fd | 35 | Serial xbee(PTC17,PTC16); |
skoda | 20:14a61a65afba | 36 | |
skoda | 20:14a61a65afba | 37 | |
skoda | 20:14a61a65afba | 38 | |
skoda | 20:14a61a65afba | 39 | |
samdanbury | 6:37b6d0d56190 | 40 | #define LED2_OFF 1 |
samdanbury | 6:37b6d0d56190 | 41 | #define LED2_ON 0 |
samdanbury | 6:37b6d0d56190 | 42 | |
samdanbury | 6:37b6d0d56190 | 43 | #define DEFAULT_TYPE_NAME "iotsample-mbed-k64f" |
samdanbury | 6:37b6d0d56190 | 44 | |
icraggs | 8:80d49dd91542 | 45 | //#include "lpc_phy.h" |
icraggs | 8:80d49dd91542 | 46 | // need a wrapper since K64F and LPC1768 wont have the same name for mii read methods |
icraggs | 8:80d49dd91542 | 47 | static uint32_t linkStatus(void) |
icraggs | 8:80d49dd91542 | 48 | { |
icraggs | 8:80d49dd91542 | 49 | return (1); |
icraggs | 8:80d49dd91542 | 50 | } |
icraggs | 8:80d49dd91542 | 51 | |
samdanbury | 6:37b6d0d56190 | 52 | #endif |