From f32f4d7fb5b1845f2032ce0170ab5dcae36635a5 Mon Sep 17 00:00:00 2001 From: Alex Orid Date: Wed, 28 Apr 2021 06:31:42 -0400 Subject: [PATCH] volume fix --- standalone_lights.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/standalone_lights.py b/standalone_lights.py index 409796d..cca6f73 100644 --- a/standalone_lights.py +++ b/standalone_lights.py @@ -24,7 +24,8 @@ api.config["DEBUG"] = True class Lights_Module(): def __init__(self): super().__init__() - self.bridge_:Bridge = Bridge('192.168.191.146') + # The .python_hue is generated in the home directory by default. + self.bridge_:Bridge = Bridge('192.168.191.42', config_file_path='credentials/.python_hue') def main(self): praxis_logger_obj.log("\nStarting up [Lights_Module]...")