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 68db2d5 commit 239cfabCopy full SHA for 239cfab
README.rst
@@ -58,12 +58,12 @@ To install in a virtual environment in your current project:
58
Usage Example
59
=============
60
61
-Load bridge username and IP Address from secrets.py file:
+Load bridge username and IP Address from settings.toml file:
62
63
.. code-block:: python
64
65
- username = secrets['hue_username']
66
- bridge_ip = secrets['bridge_ip']
+ username = os.getenv("hue_username")
+ bridge_ip = os.getenv("bridge_ip")
67
my_bridge = Bridge(wifi, bridge_ip, username)
68
69
Enumerate all lights on the bridge
0 commit comments