mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-12-14 20:18:29 +00:00
Initial TapoCamera support (#1165)
Adds experimental support for the Tapo Camera protocol also used by the H200 hub. Creates a new SslAesTransport and a derived SmartCamera and SmartCameraProtocol.
This commit is contained in:
12
kasa/experimental/enabled.py
Normal file
12
kasa/experimental/enabled.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""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
|
||||
Reference in New Issue
Block a user