Skip to content
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

Serial Receive Not Working With DMDESP & ESP8266 #5

Open
akshaythoke9116 opened this issue Jan 12, 2022 · 0 comments
Open

Serial Receive Not Working With DMDESP & ESP8266 #5

akshaythoke9116 opened this issue Jan 12, 2022 · 0 comments

Comments

@akshaythoke9116
Copy link

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();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant