jyotirajsharma
jyotirajsharma
Can you confirm that if your Zdpscan.ino works well with single serial device such as Arduino Uno R3 as well ? If I comment `Serial.begin(9600)` from `setup()` function, I can...
Thank you for your response. But, I am still NOT able to figure it out why scan operation code does NOT work, without serial monitor open (for a single serial...
Thank you for your suggestion. It seems now it is working with using Software Serial. ``` SoftwareSerial XBee_serial(2, 3); // RX, TX xbee.begin(XBee_serial); Serial.begin(9600); xbee.setSerial(XBee_serial); ```