Communication between multiple Arduinos

Hey I have A question and perhaps someone had the same and know how to fix it. I made a I2C Communication with multiple Arduinos Mega R2 and R3. https://www.arduino.cc/en/Tutorial/MasterWriter but if I upload I to the Arduino and then teh MOvi Stops Working. Its like its hung in the void.recive program an wont go back to the Loop. WHat shoud I do??
Best regards Alex

Without more detailed information this is hard to debug. I would look at the following two things:

  1. Are you sure your communication pins aren’t conflicting with MOVI’s pins? MOVI uses pins 10 and 11 and they can be changed using jumpers.
  2. If it’s not 1) then it’s most likely a software thing. The double communication can be tricky to implement. You need to make sure that the Arduino main loop has instructions to talk to both devices. For examples, you definitely need a movi.poll() command in the main loop to keep MOVI ‘alive’.

Let me know if this helped,
Gerald

So we can i2c to more arduino boards while movi is connected to one?