Timeline for Not seeing frames returned from client when using ESP8266 Wifi Shield
Current License: CC BY-SA 3.0
25 events
when toggle format | what | by | license | comment | |
---|---|---|---|---|---|
Aug 15, 2017 at 0:46 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Jul 15, 2017 at 17:56 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Jun 15, 2017 at 10:34 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
May 3, 2017 at 5:33 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Apr 3, 2017 at 4:19 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Mar 4, 2017 at 2:13 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Feb 2, 2017 at 0:33 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Jan 3, 2017 at 0:06 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Dec 3, 2016 at 23:20 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Nov 3, 2016 at 22:48 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Oct 4, 2016 at 22:46 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Sep 4, 2016 at 21:16 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Aug 5, 2016 at 20:19 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Jul 6, 2016 at 19:45 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Jun 17, 2016 at 20:13 | comment | added | Snr Srub | Hi, sorry for taking so long to reply, I haven't looked on here in a while. If it's still helpful to say, I didn't change the header file, I use the setBaud function from SparkFunESP8266WiFi.h straight after using begin() | |
Jun 6, 2016 at 19:23 | comment | added | James T | It looks like I have the same problem. I used the "ESP8266_Shield_Demo_Sparkfun" and often the webpage shows not a proper output ("AT.." commands instead). How did you adapt the baud rate in the "SparkFunESP8266WiFi.h"? Thanks! | |
Jun 4, 2016 at 6:45 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
May 5, 2016 at 6:34 | history | bumped | Community Bot | This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. | |
Mar 5, 2016 at 23:43 | answer | added | Snr Srub | timeline score: 1 | |
Mar 5, 2016 at 18:59 | comment | added | Snr Srub | @JRobert I've checked communication on Wireshark and it looks OK. Every time the client refreshes the webpage it should send a message to the ESP8266 that should be picked up by client.read() I think the problem lies in getting the frame from the ESP8266 to the Arduino, as the system is successfully sending the webpage as requested. | |
Mar 5, 2016 at 16:54 | comment | added | JRobert | You're welcome. I wasn't convinced that was it, but now it's one less possibility! So now you know that coming out of the while loop, clientline contains two characters, one of which is some kind of whitespace, likely a space, and a '\n' (because the terminal line-feeds). You may need to be debugging the client at this point. Are you sure it is sending what you think it should be? | |
Mar 5, 2016 at 15:53 | comment | added | Snr Srub | Hi @JRobert, thanks for the advice. I've made those changes, but the serial output is still the same. | |
Mar 5, 2016 at 14:31 | comment | added | JRobert |
At for( int i = 0; i <= index; i++) , I don't believe you've initialized clientline[index] anywhere, so the final iteration will print an undefined character. I don't know if this is the error, but I think it is an error. You could instead set clientline[index] = 0円; (i.e. NUL-terminate the line), and replace the for-loop with Serial.print(clientline); , letting Serial.print() print the whole string for you.
|
|
Mar 5, 2016 at 11:15 | review | First posts | |||
Mar 6, 2016 at 21:06 | |||||
Mar 5, 2016 at 11:13 | history | asked | Snr Srub | CC BY-SA 3.0 |