Student project by David Berlin and Boris Dogadov made for the Embedded Systems Workshop course given in Tel-Aviv University on 2010 by Sivan Toledo. Visit the project website for more details: http://davidberlin.co.il/sadna/ .

Dependencies:   EthernetNetIf NTPClient_NetServices mbed HTTPServer HTTPClient CyaSSL

Dropbox/Dropbox.h

Committer:
sivan_toledo
Date:
2011-04-25
Revision:
1:b05231650f32
Parent:
0:3e7d6f496a67

File content as of revision 1:b05231650f32:

#include "mbed.h"
#include <string>

// Get user token and secret based on username and password
bool dropbox_getToken(char* username, char* password);

// Syncrhonize controller time to real-world time for dropbox authorization process
bool dropbox_syncTime();

// Upload local srcFile to dropbox with dstFile name
bool dropbox_upload(string srcFile, string dstFile);

// Sends successful-sync confirmation email
bool send_email(char* email);