We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533ce77 commit b01d787Copy full SHA for b01d787
adafruit_ble/services/magic_light.py
@@ -34,6 +34,8 @@
34
__version__ = "0.0.0-auto.0"
35
36
class MagicLightService(Service):
37
+ """Service for controlling a Magic Light RGB bulb."""
38
+
39
# These UUIDs actually use the standard base UUID even though they aren't standard.
40
uuid = VendorUUID("0000ffe5-0000-1000-8000-00805f9b34fb")
41
examples/ble_magic_light.py
@@ -1,7 +1,7 @@
1
"""This demo connects to a magic light and has it do a color wheel."""
2
import adafruit_ble
3
import _bleio
4
-import time
5
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
6
from adafruit_ble.services.magic_light import MagicLightService
7
0 commit comments