
Dependencies: EthernetNetIf mbed
HTTPClientExample.cpp
- Committer:
- donatien
- Date:
- 2010-08-05
- Revision:
- 3:5964d831654c
- Parent:
- 1:4e6e885b48a2
File content as of revision 3:5964d831654c:
#include "mbed.h" #include "EthernetNetIf.h" #include "HTTPClient.h" EthernetNetIf eth; HTTPClient http; int main() { printf("Setting up...\n"); EthernetErr ethErr = eth.setup(); if(ethErr) { printf("Error %d in setup.\n", ethErr); return -1; } printf("Setup OK\n"); HTTPText txt; HTTPResult r = http.get("http://mbed.org/media/uploads/donatien/hello.txt", &txt); if(r==HTTP_OK) { printf("Result :\"%s\"\n", txt.gets()); } else { printf("Error %d\n", r); } while(1) { } return 0; }