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を指定してからご利用下さい。
Revision 4:f2d619e67d44, committed 2012-08-24
- Comitter:
- togayan
- Date:
- Fri Aug 24 17:39:24 2012 +0000
- Parent:
- 3:ffbb2b22099a
- Child:
- 5:66c3398a14c9
- Commit message:
- Fixed a bug
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Fri Aug 24 16:16:54 2012 +0000
+++ b/main.cpp Fri Aug 24 17:39:24 2012 +0000
@@ -111,7 +111,7 @@
if ( strcmp(lastBuildDateOriginal, lastBuildDateCurrent) == 0 )
{
printf("lastBuildDate (original) == lastBuildDate (current)\n");
- if(DirHandle* dir = opendir("/usb/DCIM")) // check an existance of DCIM folder
+ if(NULL == opendir("/usb/DCIM")) // check an existance of DCIM folder
{
printf("However, no DCIM folder in USB memory\n");
flgDownloadPhoto = true;
Satoshi Togawa