I'm trying to send 5 ints in the range of 0-180 from Blender to the Arduino Uno device using pySerial (py3K). I have managed to send 1 int (not sure if it's the best way but it works). However I'm failing to send more than 1 and every example online seems to stop at 1.
Here's the complete code. The task is to send servo0-servo4 to the arduino and apply those values to the corresponding servos. In line 64 I send servo0 from Blender and in line 94 I receive it in the Arduino using Serial.parseInt() (Again I'm just using this cause it works but I'll welcome any better/faster way).