-
Notifications
You must be signed in to change notification settings - Fork 284
UDP #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
first of all you should specify what's the version of the firmware flashed on you esp8266 module |
FW Version:AT version:0.25.0.0(Jun 5 2015 16:27:16) |
I would recommend to try my fork #32 for the AT commands version higher than v0.22 for apropriate UDP support (https://github.com/semiotproject/ITEADLIB_Arduino_WeeESP8266) |
Everything works! Thanks! |
Help me, please!
Code in standart WiFi Arduino module for UDP:
void setup() {
...
Udp.begin(localPort);
}
void loop() {
// if there's data available, read a packet
int packetSize = Udp.parsePacket();
if (packetSize){ ... }
}
How to use your library to listen UDP packets to a specific port?
The text was updated successfully, but these errors were encountered: