PN Version01 ESP

Dependencies:   ESP8266Interface HTTPClient-SSL WebSocketClient mbed-rtos mbed

Fork of ESP8266_HTTP_HelloWorld by ESP8266

Files at this revision

API Documentation at this revision

Comitter:
sarahmarshy
Date:
Tue Jun 09 16:31:03 2015 +0000
Parent:
16:e3d152c9f6e0
Child:
18:3209e51b731a
Commit message:
New page to get from. Larger buffer for getting headers.

Changed in this revision

ESP8266Interface.lib Show annotated file Show diff for this revision Revisions of this file
HTTPClient-SSL.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/ESP8266Interface.lib	Mon Jun 08 17:48:22 2015 +0000
+++ b/ESP8266Interface.lib	Tue Jun 09 16:31:03 2015 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/teams/ESP8266/code/ESP8266Interface/#913d07795182
+http://developer.mbed.org/teams/ESP8266/code/ESP8266Interface/#1f4dd0e91837
--- a/HTTPClient-SSL.lib	Mon Jun 08 17:48:22 2015 +0000
+++ b/HTTPClient-SSL.lib	Tue Jun 09 16:31:03 2015 +0000
@@ -1,1 +1,1 @@
-http://developer.mbed.org/users/sarahmarshy/code/HTTPClient-SSL/#a564fc323921
+http://developer.mbed.org/users/sarahmarshy/code/HTTPClient-SSL/#a18a06b000f3
--- a/main.cpp	Mon Jun 08 17:48:22 2015 +0000
+++ b/main.cpp	Tue Jun 09 16:31:03 2015 +0000
@@ -5,7 +5,7 @@
 #include "TCPSocketServer.h"
 #include "Websocket.h"
 
-ESP8266Interface wifi(D1,D0,D2,"demossid","",115200); // TX,RX,Reset,SSID,Password,Baud
+ESP8266Interface wifi(D1,D0,D2,"demossid","password",115200); // TX,RX,Reset,SSID,Password,Baud
 RawSerial pc(USBTX, USBRX); // tx, rx
 HTTPClient http;
 char str[512];
@@ -17,7 +17,7 @@
     
     //GET
     pc.printf("\nTrying to fetch page using GET...\n\r");
-    int ret = http.get("http://191.239.57.70/", str, 128);//IP address is mbed.org
+    int ret = http.get("http://54.175.222.246/get", str, 512);//IP address is httpbin.org/get
     if (!ret) {
         pc.printf("Page fetched successfully - read %d characters\n\r", strlen(str));
         pc.printf("Result: %s\n\r", str);
--- a/mbed.bld	Mon Jun 08 17:48:22 2015 +0000
+++ b/mbed.bld	Tue Jun 09 16:31:03 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/cbbeb26dbd92
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/7cff1c4259d7
\ No newline at end of file