文件名称:lattu:使用python控制BLE受控智能灯泡的简单方法
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-01 15:44:32
bluetooth python3 smart-bulb bluetto Python
拉图 直接控制BLE受控智能灯泡的方法。 支持的灯泡 我只有Iota灯泡,所以这是目前唯一支持的灯泡。 如果您知道GAT命令,请查看 ,添加对灯泡的支持确实很容易。 安装 $ pip install lattu 例子 >> > from lattu import IotaBulb >> > my_bulb = IotaBulb ( '98:7b:f3:37:6a:e7' ) >> > my_bulb . connect () >> > my_bulb . on () >> > my_bulb . off () >> > my_bulb . on ( '00ff00' ) # Green! >> > my_bulb . color ( '0000ff' ) # Blue! >> > my_bulb . color ( '0000ff' , 50 ) # Blue, but hal
【文件预览】:
lattu-master
----setup.py(3KB)
----lattu.py(2KB)
----example.py(537B)
----README.md(714B)
----iota_command_maker.py(1KB)