Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832_fix LM75B MMA7660 MQTT PowerControl SNICInterface mbed-rtos mbed
Fork of IBMIoTClientWifiExample by
WiFi_Config.h
- Committer:
- MACRUM
- Date:
- 2015-03-25
- Revision:
- 18:ff8b191de621
- Parent:
- 17:e921a54608ad
- Child:
- 21:f243f013aeda
File content as of revision 18:ff8b191de621:
#if !defined(WIFI_CONFIG_H)
#define WIFI_CONFIG_H
#include "mbed.h"
#define DEMO_AP_SSID "SSID"
#define DEMO_AP_SECURITY_TYPE e_SEC_WPA2_AES
#define DEMO_AP_SECUTIRY_KEY "PASSWORD"
#if defined(TARGET_ARCH_PRO) || defined(TARGET_RZ_A1H)
// for mbed Application Shield
#define WIFI_TX D1
#define WIFI_RX D0
#define WIFI_CTS NC
#define WIFI_RTS NC
#define WIFI_RESET D3
#define WIFI_ALARM NC
#elif defined(TARGET_LPC1768)
// for mbed Application board
#define WIFI_TX p9
#define WIFI_RX p10
#define WIFI_CTS NC
#define WIFI_RTS NC
#define WIFI_RESET p30
#define WIFI_ALARM NC
#endif
#define WIFI_BAUD 115200
#endif
