X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=smart_home%2Flights.py;h=ee23fb08f4e60ef4664338cde7e53bdefd340544;hb=72d255e75695973843f05f5bd60fb415ff782ffe;hp=9a5a2311ee516587e2515ae8e1c30be716c26e0d;hpb=4863b00af3b2ddcfaa2e5f47fd6dd7e95c1eb6c5;p=python_utils.git diff --git a/smart_home/lights.py b/smart_home/lights.py index 9a5a231..ee23fb0 100644 --- a/smart_home/lights.py +++ b/smart_home/lights.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + """Utilities for dealing with the smart lights.""" import datetime @@ -283,7 +285,7 @@ class TPLinkLight(BaseLight): if extra_args is not None: cmd += f" {extra_args}" logger.debug('About to execute: %s', cmd) - return tplink.tplink_command(cmd) + return tplink.tplink_command_wrapper(cmd) @overrides def turn_on(self) -> bool: @@ -365,7 +367,7 @@ class TPLinkLight(BaseLight): self.get_cmdline() + '-j \'{"smartlife.iot.dimmer":{"set_brightness":{"brightness":%d}}}\'' % level ) - return tplink.tplink_command(cmd) + return tplink.tplink_command_wrapper(cmd) # class GoogleLightGroup(GoogleLight):