I am following this tutorial of a very basic serial communication between 2 arduino unos.
I have made the connections as given and connected the arduino unos to 2 separate laptops via USB.
Code1:
char mystr[3] = "Hello"; //String data
void setup() {
// Begin the Serial at 9600 Baud
Serial.begin(9600);
}
void loop() {
Serial.write(mystr,5); //Write the serial data
delay(1000);
}
Code 2:
char mystr[5]; //Initialized variable to store recieved data
void setup() {
// Begin the Serial at 9600 Baud
Serial.begin(9600);
}
void loop() {
Serial.readBytes(mystr,5); //Read the serial data and store in var
delay(1000);
}
Error on arduino following code 1:
Arduino: 1.8.5 (Windows 10), Board: "Arduino/Genuino Uno"
Sketch uses 1602 bytes (4%) of program storage space. Maximum is 32256 bytes.
Global variables use 188 bytes (9%) of dynamic memory, leaving 1860 bytes for local variables. Maximum is 2048 bytes.
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x00
An error occurred while uploading the sketch
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
Arduino running code 2 is stuck on the uploading and does not fininsh uploading.
The solutions on the internet only talk of the scenarios where the arduino is having trouble communication with the computer and so the solutions given are:
- check com port
- check that correct board is selected
- do not insert the arduinos in usb 3
- press reset button
None of these is my problem as I have checked them all. The arduinos themselves are working fine. I have a very strong feeling that there is a problem with the pins 0 and 1, i.e. with serial comm.
Please help.
1 Answer 1
I am guessing you have connected 2 arduinos together using their hardware serial ports while uploading. This cause uploading to fail as those ports are getting two signals at the same time.
Break this connection before upload and then it should work. You can reconnect them after upload.
If you want to avoid this you can use different pins with software serials for communication.
Also consider using Serial.available() on the reading end to see if there is data to be read.
-
Normally "guessing" is discouraged, but as this absolutely horrible "tutorial" literally instructs the unsuspecting to make this problematic connection, you are probably right. Whoever wrote that terrible guide has done the world a disservice.Chris Stratton– Chris Stratton2018年03月10日 18:36:44 +00:00Commented Mar 10, 2018 at 18:36
char mystr[3] = "Hello"; //String data
is not good -- you can't allocate 3 bytes in an array and assign a string that requires 6 bytes of data (5 characters, plus null terminator.)Problem in serial communication between 2 arduinos
... that title is absolutely incorrect