All Questions
2 questions
0
votes
0
answers
4k
views
How to send a packet from tcp server to client use nodemcu(ESP8266) in arduino IDE?
In this code I wrote that the server send again what it received from client:
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <WiFiServer.h>
WiFiServer server(8080);
...
3
votes
2
answers
11k
views
How to make AT commands work programatically in arduino for ESP8266 wifi module
I am doing a simple tcp communication from an arduino to raspberry-pi wirelessly with an ESP8266 wifi module on arduino uno.The tcp server is running on the raspberry-pi.I am able to do TCP ...