nagius / RemoteRelay

RemoteRelay is an alternative ESP8266 firmware for the relay board made by LCTech-inc
GNU General Public License v3.0
19 stars 7 forks source link

Proper baud rate #3

Closed praegustator closed 2 years ago

praegustator commented 4 years ago

I encountered the problem with single-channel relay from same manufacturer.

With debug=true I was able to see that the chars A0 01 01 A2 were sent successfully. However, the relay did not switched on. I changed the baud rate to 9600.

  Serial.begin(9600);

Now everything works perfectly.