It can be run only with mbed LPC1768, LAN socket and DHT11 sensor. mbed application board is not needed.

Dependencies:   DHT11 EthernetInterface MQTT mbed-rtos mbed

Fork of IBMIoTClientEthernetExample by IBM Watson IoT

Example Photo /media/uploads/strysd/simpleiot.png

- 水魚堂さんの回路図エディタ BSch3V を利用して作成しました。回路図データ /media/uploads/strysd/simpleiot.ce3

- DHT11 は、masahiro's electronic lab さんで配布されている部品ライブラリを利用しました。http://www.eleclabo.com/denshi/doc/bschlib.html

/media/uploads/strysd/simpleiot_jittai_1.jpg

/media/uploads/strysd/simpleiot_jittai_2.jpg

/media/uploads/strysd/simpleiot_jittai_3.jpg

Committer:
strysd
Date:
Sat Oct 15 05:55:27 2016 +0000
Revision:
20:d8387eff818d
Parent:
8:80d49dd91542
first commit after fork

Who changed what in which revision?

UserRevisionLine numberNew 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
strysd 20:d8387eff818d 16 *******************************************************************************
strysd 20:d8387eff818d 17 * Forked by Satoru Yoshida 2016/Oct
strysd 20:d8387eff818d 18 * Removed support for mbed application board, this program can run only
strysd 20:d8387eff818d 19 * set of mbed LPC1768, LAN socket and DHT11 sensor
samdanbury 6:37b6d0d56190 20 *******************************************************************************/
samdanbury 6:37b6d0d56190 21
samdanbury 6:37b6d0d56190 22 #if !defined(LPC1768_H)
samdanbury 6:37b6d0d56190 23 #define LPC1768_H
samdanbury 6:37b6d0d56190 24
strysd 20:d8387eff818d 25 #include "DHT11.h"
strysd 20:d8387eff818d 26
samdanbury 6:37b6d0d56190 27 DigitalOut led2(LED2);
samdanbury 6:37b6d0d56190 28
samdanbury 6:37b6d0d56190 29 #define LED2_OFF 0
samdanbury 6:37b6d0d56190 30 #define LED2_ON 1
samdanbury 6:37b6d0d56190 31
strysd 20:d8387eff818d 32 DHT11 dht(p18);
strysd 20:d8387eff818d 33
samdanbury 6:37b6d0d56190 34 #define DEFAULT_TYPE_NAME "iotsample-mbed-lpc1768"
samdanbury 6:37b6d0d56190 35
icraggs 8:80d49dd91542 36 #include "lpc_phy.h"
icraggs 8:80d49dd91542 37 // need a wrapper since K64F and LPC1768 wont have the same name for mii read methods
icraggs 8:80d49dd91542 38 static uint32_t linkStatus(void)
icraggs 8:80d49dd91542 39 {
icraggs 8:80d49dd91542 40 return (lpc_mii_read_data() & 1);
icraggs 8:80d49dd91542 41 }
icraggs 8:80d49dd91542 42
samdanbury 6:37b6d0d56190 43 #endif