mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 03:33:35 +00:00
dcc36e1dfe
Adds experimental support for the Tapo Camera protocol also used by the H200 hub. Creates a new SslAesTransport and a derived SmartCamera and SmartCameraProtocol.
13 lines
239 B
Python
13 lines
239 B
Python
"""Package for experimental enabled."""
|
|
|
|
|
|
class Enabled:
|
|
"""Class for enabling experimental functionality."""
|
|
|
|
value = False
|
|
|
|
@classmethod
|
|
def set(cls, value):
|
|
"""Set the enabled value."""
|
|
cls.value = value
|