aboutsummaryrefslogtreecommitdiff
path: root/examples/light.py
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2023-07-09 19:37:37 +0200
committerJan200101 <sentrycraft123@gmail.com>2023-07-09 19:37:37 +0200
commitb966f6e4705a813dad13b242e9592e699566d9c9 (patch)
treefba1a57bf3ed01b7826487c98f000ae9f111cf20 /examples/light.py
downloadShellyPy-b966f6e4705a813dad13b242e9592e699566d9c9.tar.gz
ShellyPy-b966f6e4705a813dad13b242e9592e699566d9c9.zip
Squash rewriterewrite
Diffstat (limited to 'examples/light.py')
-rw-r--r--examples/light.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/light.py b/examples/light.py
new file mode 100644
index 0000000..3b679ab
--- /dev/null
+++ b/examples/light.py
@@ -0,0 +1,27 @@
+import ShellyPy
+
+device = ShellyPy.api.Device.connect("192.0.0.20")
+
+# turn all lights off
+device.lights.off()
+
+# turn all lights on
+device.lights.on()
+
+# toggle all lights
+device.lights.toggle()
+
+# return light 0 on
+device.lights[0].on()
+
+# Set Brightness in percent
+device.lights[0].brightness = 50 # 50%
+
+# Set RGB colors (Gen 1 only)
+device.lights[0].rgb = (255, 255, 255)
+
+# Set RGBW colors (Gen 1 only)
+device.lights[0].rgbw = (128, 128, 128, 0)
+
+# Set only one color (Gen 1 only)
+device.lights[0].red = 64