Xively Demo - WIZ550io, W5500 (WIZnet) + Temperature Sensor (DS18B20) EthernetInterfaceW5500 + LPC11U68 Xpresso v2 used

Dependencies:   DS18B20_1wire W5500Interface libxively mbed

Fork of WIZ550io_Xively_Demo by Bongjun Hur

Xively Demo

Board Pic

LPC11U68 + WIZ550io (WIZnet) + DS18B20 Temp Sensor https://31.media.tumblr.com/d63982be5ee62cb7889cde9e685ee757/tumblr_n8s27sY62b1sama12o1_500.jpg

PC Screenshot

/media/uploads/Bongjun/img135.png

Revision:
5:867d16e948eb
Parent:
4:fd030db1a6f4
Child:
6:3c44af154da8
--- a/main.cpp	Fri Aug 17 11:31:32 2012 +0000
+++ b/main.cpp	Fri Aug 24 13:52:40 2012 +0000
@@ -9,12 +9,13 @@
 *     - p26 is for the connection status
 *     - "mbed" is the ssid of the network
 *     - "password" is the password
-*     - true means that the security of the network is WPA
+*     - WPA is the security
 */
-WiflyInterface wifly(p9, p10, p25, p26, "mbed", "password", true);
+WiflyInterface wifly(p9, p10, p25, p26, "mbed", "password", WPA);
 
 int main() {
     wifly.init(); // use DHCP
     while (!wifly.connect()); // join the network
     printf("IP Address is %s\n\r", wifly.getIPAddress());
+    wifly.disconnect();
 }
\ No newline at end of file