Good morning everyone!
I have a motor driver that i want to directly control with a simple XBee3 (XB3-24Z8PT-J).
Until now I would have use an intermediate cpu like an Arduino, but now we have MicroPython!
The motor driver needs to receive TTL level single-byte serial commands of 8 bits and it is a one direction only interface (no RX needed on the XBee, just TX).
I want to receive lets say a transmit packet with a json payload and depending on the content of the json send the correct command to the motor driver. 9600 Baud rate is enough.
I do not need to monitor anything on a console, so I can use [AP] = [1, 2, 4]. (I do not want to use transparent mode)
Any idea how to achieve that?