Hi!
Thanks for your NTP firmware! I am new to ESP8266 but I got it running. But I have some trouble with the used baud rate of 115200 bps. I tried to change the baud rate with AT+CPIOBAUD=19200 which…
```
Serial.begin(9600); // sets the serial port to 9600
Serial1.begin(9600);
wifi.begin(Serial1);
wifi.setTimeout(20000);
wifi.quitAP();
//get version
char versions[16] = {};
Serial.print("getVe…