東京電力の 需要実績を表示します。

Dependencies:   EthernetInterface FiapV2 HTTPClientForSOAP TextLCD mbed-rtos mbed spxml

Fork of temp_FIAP_fetch by Yasushi TAUCHI

Files at this revision

API Documentation at this revision

Comitter:
yueee_yt
Date:
Wed Aug 22 02:41:42 2012 +0000
Parent:
1:d62d57f9a180
Child:
3:654cee27697e
Commit message:
tepco demand

Changed in this revision

FiapV2.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/FiapV2.lib	Mon Aug 20 12:53:57 2012 +0000
+++ b/FiapV2.lib	Wed Aug 22 02:41:42 2012 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/yueee_yt/code/FiapV2/#edbcc1833b58
+http://mbed.org/users/yueee_yt/code/FiapV2/#52e95ea60ec1
--- a/main.cpp	Mon Aug 20 12:53:57 2012 +0000
+++ b/main.cpp	Wed Aug 22 02:41:42 2012 +0000
@@ -8,10 +8,10 @@
 TextLCD lcd(p24, p26, p27, p28, p29, p30);
 DigitalOut led(LED1);
 char timezone[] = "+09:00";  // JST
-FIAP fiap("http://192.168.1.3/axis2/services/FIAPStorage");
-char atemp[10];
+FIAP fiap("http://www.futaba-kikaku.jp/services/jyukyu.php");
+char atemp[7];
 struct fiap_element element[]= {
-    {"http://csse-tech.jp/temp_tauchi",atemp,NULL,NULL,NULL,NULL,NULL,NULL,timezone},
+    {"http://futaba-kikaku.jp/epco/tepco/demand",atemp,NULL,NULL,NULL,NULL,NULL,NULL,timezone},
 };
 
 
@@ -22,7 +22,7 @@
     fiap.fetch_last_data(element,1);
     temp=atof(element[0].value);
     lcd.locate(0,1);
-    lcd.printf("%2d:%2d:%2d %4.1fDeg",element[0].hour,element[0].minute,element[0].second,temp);
+    lcd.printf("%02d:%02d:%02d %5.0f",element[0].hour,element[0].minute,element[0].second,temp);
    }
 
 int main()
@@ -31,10 +31,11 @@
     eth.connect();
     lcd.cls();
     lcd.locate(0,0);
-    lcd.printf("%s", eth.getIPAddress());
-    //fiap.debug_mode=true;
+    //lcd.printf("%s", eth.getIPAddress());
+    lcd.printf("tepco demand");
+    fiap.debug_mode=true;
     while(true) {
         tick();
-        wait(2);
+        wait(10);
     }
 }