Add cloud module for smartdevice (#767)

Add initial support for the cloud module.

Adds a new binary sensor: `Cloud connection (cloud_connection): False`
This commit is contained in:
Teemu R
2024-02-19 20:48:46 +01:00
committed by GitHub
parent 520b6bbae3
commit f5175c5632
3 changed files with 37 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ class FakeSmartTransport(BaseTransport):
FIXTURE_MISSING_MAP = {
"get_wireless_scan_info": ("wireless", {"ap_list": [], "wep_supported": False}),
"get_connect_cloud_state": ("cloud_connect", {"status": 1}),
"get_on_off_gradually_info": ("on_off_gradually", {"enable": True}),
}