IoT Example

Dependencies:   C12832 LM75B MMA7660 MQTT mbed-rtos mbed

Fork of IBMIoTClientEthernetExample by IBM Watson IoT

Committer:
sam_grove
Date:
Sat Oct 18 07:45:52 2014 +0000
Revision:
14:5b7cf452e5c0
Parent:
10:6b9104576512
sync

Who changed what in which revision?

UserRevisionLine numberNew contents of line
icraggs 5:fe907e2e0d6c 1 /*******************************************************************************
icraggs 5:fe907e2e0d6c 2 * Copyright (c) 2014 IBM Corp.
icraggs 5:fe907e2e0d6c 3 *
icraggs 5:fe907e2e0d6c 4 * All rights reserved. This program and the accompanying materials
icraggs 5:fe907e2e0d6c 5 * are made available under the terms of the Eclipse Public License v1.0
icraggs 5:fe907e2e0d6c 6 * and Eclipse Distribution License v1.0 which accompany this distribution.
icraggs 5:fe907e2e0d6c 7 *
icraggs 5:fe907e2e0d6c 8 * The Eclipse Public License is available at
icraggs 5:fe907e2e0d6c 9 * http://www.eclipse.org/legal/epl-v10.html
icraggs 5:fe907e2e0d6c 10 * and the Eclipse Distribution License is available at
icraggs 5:fe907e2e0d6c 11 * http://www.eclipse.org/org/documents/edl-v10.php.
icraggs 5:fe907e2e0d6c 12 *
icraggs 5:fe907e2e0d6c 13 * Contributors:
icraggs 5:fe907e2e0d6c 14 * Ian Craggs - initial implementation
sam_grove 7:2fb7a98b559c 15 * Sam Grove - added mehtod to check the status of the Ethernet cable
icraggs 5:fe907e2e0d6c 16 *******************************************************************************/
icraggs 5:fe907e2e0d6c 17
icraggs 5:fe907e2e0d6c 18 #if !defined(K64F_H)
icraggs 5:fe907e2e0d6c 19 #define K64F_H
icraggs 5:fe907e2e0d6c 20
icraggs 5:fe907e2e0d6c 21 C12832 lcd(D11, D13, D12, D7, D10);
icraggs 5:fe907e2e0d6c 22 BusOut led2 (LED_BLUE);
icraggs 5:fe907e2e0d6c 23 BusOut r (D5);
icraggs 5:fe907e2e0d6c 24 BusOut g (D9);
icraggs 5:fe907e2e0d6c 25 BusOut b (D8);
icraggs 5:fe907e2e0d6c 26 MMA7660 MMA(PTE25, PTE24);
icraggs 5:fe907e2e0d6c 27 LM75B sensor(PTE25, PTE24);
icraggs 5:fe907e2e0d6c 28 DigitalIn Up(A2); DigitalIn Down(A3); DigitalIn Right(A4); DigitalIn Left(A5); DigitalIn Click(D4);
icraggs 5:fe907e2e0d6c 29 AnalogIn ain1(A0); AnalogIn ain2(A1);
icraggs 5:fe907e2e0d6c 30
icraggs 5:fe907e2e0d6c 31 #define LED2_OFF 1
icraggs 5:fe907e2e0d6c 32 #define LED2_ON 0
icraggs 5:fe907e2e0d6c 33
icraggs 5:fe907e2e0d6c 34 #define DEFAULT_TYPE_NAME "iotsample-mbed-k64f"
icraggs 5:fe907e2e0d6c 35
sam_grove 10:6b9104576512 36 #include "k64f_emac_config.h"
sam_grove 7:2fb7a98b559c 37 // need a wrapper since K64F and LPC1768 wont have the same name for mii read methods
sam_grove 7:2fb7a98b559c 38 static uint32_t linkStatus(void)
sam_grove 7:2fb7a98b559c 39 {
sam_grove 10:6b9104576512 40 return phy_link_status();
sam_grove 7:2fb7a98b559c 41 }
sam_grove 7:2fb7a98b559c 42
icraggs 5:fe907e2e0d6c 43 #endif