{"library":"spotled","title":"SPOTLED","type":"library","description":"Unofficial Python library for controlling SPOTLED Bluetooth LED displays. Supports text, images, animations, and real-time updates. Current version: 1.3.0, release cadence: irregular.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install spotled"],"cli":null},"imports":["from spotled import SpotledClient","from spotled import SpotledDiscovery"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/iwalton3/python-spotled","docs":null,"changelog":null,"pypi":"https://pypi.org/project/spotled/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"from spotled import SpotledDiscovery, SpotledClient\n\n# Discover devices\ndiscovery = SpotledDiscovery()\ndevices = discovery.discover(timeout=3)\nif not devices:\n    print('No devices found')\nelse:\n    # Connect to first device\n    device = devices[0]\n    client = SpotledClient(device.address, device.name)\n    client.connect()\n    client.send_text('Hello SPOTLED!')\n    client.disconnect()","lang":"python","description":"Discover a SPOTLED device and send text.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}