Serial

Tkinter with Serial

Submitted by Evan Boldt on

To use Python as a graphical interface for an Arduino powered robot, programmatically read the USB with the pySerial library. However, waiting for input from pySerial’s Serial object is blocking, which means that it will prevent your GUI from being responsive. The process cannot update buttons…

Serial Commands

Submitted by Evan Boldt on

Introduction Serial communication through USB can be used to communicate between a host computer (like a laptop, or Raspberry Pi), and an Arduino. Doing so allows: Use of the faster hardware of the host computer for calculations Synchronization of multiple Arduinos Use of other information…