STM32L010とWS2812BとPython 3.7.6(PC)で光らす。
目的
PCからマイコンを通してWS2812Bをコントロールする。
前提、まず、STM32L010とWS2812Bのシリアコントールを構築
STM32L010とWS2812Bを使い、シリアルから入力された値で光らす。
import serial
import time
ser = serial.Serial('COM6',9600,timeout=None)
print ("tttt")
time.sleep(0.1)
ser.write(b'123')
time.sleep(2)
ser.write(b'a!!')
print ("rrr")
time.sleep(2)
ser.write(b'!a!')
time.sleep(2)
ser.write(b'!!a')
ser.close()
Author And Source
この問題について(STM32L010とWS2812BとPython 3.7.6(PC)で光らす。), 我々は、より多くの情報をここで見つけました https://qiita.com/caa45040/items/5e015c03383a4953c557著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .