Have been playing with coding for this for a while and am stuck. Looking for an idea on which way to go. I have 3 nodes 00, 01 and 02. Node 00 is controlling 9 servos a total 3 on each node during the same loop.
I need multiple data sent to node 01 and 02.
This will be used to send around 1000 commands in sequence and eventually randomly.
Can I send a servo ID and value simultaneously?
Can I address a servo ID using a unique header for every servo?
Sent from node00.
void loop(){
network.update();
node1 servo0 pos10
node1 servo1 pos50
delay(100)
node1 servo0 pos40
node2 servo1 pos120
node2 servo2 pos10
delay(100)
}