IBMIoTClientEthernetExample for WIZwiki-W7500 platform
Dependencies: MQTT WIZnetInterface mbed-src
WIZwiki-W7500.h
- Committer:
- hkjung
- Date:
- 2015-06-29
- Revision:
- 0:7488a229e6fc
- Child:
- 2:b1dcfd885d7f
File content as of revision 0:7488a229e6fc:
/*******************************************************************************
* Copyright (c) 2015 WIZnet co., ltd.
*
* Contributors:
* Eric Jung
*******************************************************************************/
#ifndef WIZWIKI_W7500_H
#define WIZWIKI_W7500_H
PwmOut r(LED_RED);
PwmOut g(LED_GREEN);
PwmOut b(LED_BLUE);
//DigitalOut r(LED_RED);
//DigitalOut g(LED_GREEN);
//DigitalOut b(LED_BLUE);
AnalogIn ain0(A0);
AnalogIn ain1(A1);
#define OFF 0
#define ON 1
#define DEFAULT_TYPE_NAME "iotsample-mbed-wizwiki-w7500"
#endif
Eric Jung