Пожалуйста, помогите мне, я хочу подключить светодиодную ленту, но не знаю, он сказал, что мое устройство не найдено
Код: Выделить всё
import time
import asyncio
import logging # Don't forget to add this line
import trionesControl.trionesControl as tc
async def main():
# Change the mac address to the one of your bulb or LED strip
device = await tc.connect('FB:00:E0:82:AA:1F')
await tc.powerOn(device)
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
asyncio.run(main())
Источник: https://stackoverflow.com/questions/781 ... -bluetooth