Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By vidal11
#15595 Hello,

I tried to connect a Mega Arduino , a sensor DS18B20 and esp8266 to send data from my sensor on the Internet.

After configuration, I sed https://codebender.cc/sketch:98754#thin ... sp8266.ino this code

but the data does not reach the server, why?

AT

AT + CIPSTART = " TCP ", " 184106153149 " 80

AT + CIPSEND = 47

AT + CIPCLOSE

AT + CIPSTART = " TCP ", " 184106153149 " 80

AT + CIPSEND = 47

AT + CIPCLOSE

AT + CIPSTART = " TCP ", " 184106153149 " 80

AT + CIPSEND = 47

AT + CIPCLOSE

Can anyone help me please ?

Thank you in advance
User avatar
By chadouming
#15639 184106153149 is not a valid ip, it's missing "." .

Also, from these logs, it seems like you are telling the server you will send data but never do it.

Finally, this is not the right forum, this forum is for programming your esp8266 directly from Arduino IDE, not from an actual arduino with AT commands.

I personally think you could eliminate the arduino mega and use only the esp8266 and bs18b20. I'm sure there is already example for that.