Help needed: Arduino Wireless Notice Board project
-
@codelery It might be because of buffer size of received message. You need to increase the buffer size.
Check the section "Expanding Arduino SoftwareSerial Buffer Size" in this tutorial : https://lastminuteengineers.com/sim800l-gsm-module-arduino-tutorial/ -
@rafitc99 The thing is that I am not using the SoftwareSerial library in receiving the message from the first microcontroller. I am using the hardware serial (pin 0 and 1 on Arduino Uno)
-
@codelery said in Help needed: Arduino Wireless Notice Board project:
I am using the hardware serial (pin 0 and 1 on Arduino Uno)
As @rafitc99 mentioned, you need to expand the Serila buffer, in the hardware serial also the Arduino board package implements a 64-byte ring buffer for send and receive on the hardware serial messages. So you need to change that to 256 as per your message length.
-
@salmanfaris I did change the buffer size and everything is working perfectly. Thanks coming to my rescue.
-
@rafitc99 I changed the buffer and that solved the problem. Thanks a lot for coming to my rescue.
-