Sample code that showcases how to use IBMIoTF client library to connect the mbed LPC1768 or FRDM-K64F devices to the IBM Internet of Things Cloud service.

Dependencies:   C12832 IBMIoTF LM75B MMA7660

src/K64F.h

Committer:
lokeshhk
Date:
2017-05-31
Revision:
5:48b6090e0df1
Parent:
4:a416fef97faa

File content as of revision 5:48b6090e0df1:

/*******************************************************************************
 * Copyright (c) 2015 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
 *    Sam Grove  - added method to check the status of the Ethernet cable
 *******************************************************************************/

#if !defined(K64F_H)
#define K64F_H

#if USE_LCD
C12832 lcd(D11, D13, D12, D7, D10);
#endif
BusOut led2 (LED_BLUE);
BusOut r (D5);
BusOut g (D9);
BusOut b (D8);
MMA7660 MMA(PTE25, PTE24);
LM75B sensor(PTE25, PTE24);
DigitalIn Up(A2); DigitalIn Down(A3); DigitalIn Right(A4); DigitalIn Left(A5); DigitalIn Click(D4);
AnalogIn ain1(A0); AnalogIn ain2(A1);

#define LED2_OFF 1
#define LED2_ON 0

#define DEFAULT_TYPE_NAME "iotsample-mbed-k64f"

#endif