mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 13:53:01 +00:00
6 lines
108 B
Python
6 lines
108 B
Python
import serial
|
|
port=8
|
|
ser=None
|
|
def setup(port=port):
|
|
global ser
|
|
ser=serial.Serial(port,baudrate=9600) |