Download picasa web albums photos automatically. This application requires mpod mother board. See also http://mbed.org/users/geodenx/notebook/mpod/

Dependencies:   BlinkLed HTTPClient EthernetInterface FatFileSystemCpp MSCFileSystem mbed-rtos mbed

Download picasa web albums photos automatically.
This application requires mpod mother board.

Picasaウェブアルバムから、自動的に写真をダウンロードして、ディジタルフォトフレームに表示します。
動作させるには mpod マザーボード が必要です。
プログラムの中で、ご自分のアルバムのRSSファイルへのURLを指定してからご利用下さい。

album description edit information description

Revision:
6:83383116c88a
Parent:
5:66c3398a14c9
--- a/main.cpp	Tue Aug 28 14:41:17 2012 +0000
+++ b/main.cpp	Sat Sep 01 04:28:20 2012 +0000
@@ -14,8 +14,8 @@
 EthernetInterface eth;
 HTTPClient http;
 MSCFileSystem usb("usb");
-BlinkLed led1(LED1, 0.02);
-BlinkLed led2(LED2, 0.2);
+BlinkLed led3(LED3, 0.02);
+BlinkLed led4(LED4, 0.2);
 BlinkLed ethGreen(p26, 0.02);
 BlinkLed ethYellow(p25, 0.2);
 DigitalOut fsusb30s(p9);
@@ -45,7 +45,7 @@
     }
     
     // Indicate downloading
-    led2.startBlink();
+    led4.startBlink();
     ethYellow.startBlink();
         
     // FSUSB30 switches to HSD1 (mbed)
@@ -158,9 +158,9 @@
     fsusb30s = 1; // HSD2
 
     // Indicate finish downloading
-    led2.finishBlink();
+    led4.finishBlink();
     ethYellow.finishBlink();
-    led1.startBlink();
+    led3.startBlink();
     ethGreen.startBlink();
     
     while(true){}