====== 20X4 LCD Smartie Asset USB ====== ===== Ansteuern mit Python ===== Das [[http://shop.boxtec.ch/product_info.php/products_id/40394|20X4 LCD Smartie Asset USB]] kann problemlos mit Python angesteuert werden: import serial sd = serial.Serial('/dev/ttyUSB0', 9600, rtscts=0, xonxoff=1, timeout=0) # Start comms: sd.write('\xfe\x53\x75\x72\x65') # sd.write(chr(254)+chr(88)) # say hello sd.write("HELLO WORLD!") Im [[http://shop.boxtec.ch/pub/sure/DE-LP14111_Ver1.0_EN.pdf|Manual]] finden Sie mehr Informationen zu den einzelnen Befehlen zur Displaysteuerung.