DMDESP icon indicating copy to clipboard operation
DMDESP copied to clipboard

Serial Receive Not Working With DMDESP & ESP8266

Open akshaythoke9116 opened this issue 3 years ago • 0 comments

Hi All, I want to receive the data from serial and display on P10 Display following code for the Receiving Code, but i am not getting the data.

void loop(){ server.handleClient(); //--> Handle client requests Disp.loop(); //--> Run "Disp.loop" to refresh the LED if(Serial.available()) {
char ch=Serial.read(); Serial.println(ch); recieved_data=Serial.readString(); Serial.println(recieved_data); } main_display();

akshaythoke9116 avatar Jan 12 '22 12:01 akshaythoke9116