Chris Styles / Mbed 2 deprecated EA_Twitter

Dependencies:   mbed lwip

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "HTTPClient.h"
00003 
00004 using namespace std;
00005 
00006 DigitalOut led(LED1);
00007 HTTPClient http;
00008 
00009 const char user[] = "my-user-name";
00010 const char pass[] = "my-password";
00011 const char msg[] = "status=<my message>
00012 const char url[]  = "http://twitter.com/statuses/update.xml";
00013 
00014 int main(void) {
00015     http.auth(user, pass);
00016     http.post(url, msg);
00017   
00018     while(1) {
00019         led = !led;
00020         wait(0.2);
00021     }
00022 }
00023