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