mirror of
https://github.com/python-kasa/python-kasa.git
synced 2026-07-08 06:41:59 +00:00
Add L530EA(EU) device fixture (#1694)
Some checks failed
CI / Perform Lint Checks (3.13) (push) Has been cancelled
CI / Python 3.11 on macos-latest (push) Has been cancelled
CI / Python 3.12 on macos-latest (push) Has been cancelled
CI / Python 3.13 on macos-latest (push) Has been cancelled
CI / Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / Python 3.11 on windows-latest (push) Has been cancelled
CI / Python 3.12 on windows-latest (push) Has been cancelled
CI / Python 3.13 on windows-latest (push) Has been cancelled
CodeQL Checks / Analyze (python) (push) Has been cancelled
Stale / stale (push) Has been cancelled
Some checks failed
CI / Perform Lint Checks (3.13) (push) Has been cancelled
CI / Python 3.11 on macos-latest (push) Has been cancelled
CI / Python 3.12 on macos-latest (push) Has been cancelled
CI / Python 3.13 on macos-latest (push) Has been cancelled
CI / Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / Python 3.11 on windows-latest (push) Has been cancelled
CI / Python 3.12 on windows-latest (push) Has been cancelled
CI / Python 3.13 on windows-latest (push) Has been cancelled
CodeQL Checks / Analyze (python) (push) Has been cancelled
Stale / stale (push) Has been cancelled
This commit is contained in:
@@ -199,7 +199,7 @@ The following devices have been tested and confirmed as working. If your device
|
|||||||
- **Plugs**: P100, P105, P110, P110M, P115, P125M, P135, TP10, TP15
|
- **Plugs**: P100, P105, P110, P110M, P115, P125M, P135, TP10, TP15
|
||||||
- **Power Strips**: P210M, P300, P304M, P306, P316M, TP25
|
- **Power Strips**: P210M, P300, P304M, P306, P316M, TP25
|
||||||
- **Wall Switches**: S210, S220, S500, S500D, S505, S505D, TS15
|
- **Wall Switches**: S210, S220, S500, S500D, S505, S505D, TS15
|
||||||
- **Bulbs**: L430C, L430P, L510B, L510E, L530B, L530E, L535E, L630
|
- **Bulbs**: L430C, L430P, L510B, L510E, L530B, L530E, L530EA, L535E, L630
|
||||||
- **Light Strips**: L900-10, L900-5, L920-5, L930-5
|
- **Light Strips**: L900-10, L900-5, L920-5, L930-5
|
||||||
- **Cameras**: C100, C101, C110, C210, C220, C225, C325WB, C460, C520WS, C720, TC40, TC65, TC70
|
- **Cameras**: C100, C101, C110, C210, C220, C225, C325WB, C460, C520WS, C720, TC40, TC65, TC70
|
||||||
- **Doorbells and chimes**: D100C, D130, D230
|
- **Doorbells and chimes**: D100C, D130, D230
|
||||||
|
|||||||
@@ -276,6 +276,8 @@ All Tapo devices require authentication.<br>Hub-Connected Devices may work acros
|
|||||||
- Hardware: 3.0 (EU) / Firmware: 1.1.6
|
- Hardware: 3.0 (EU) / Firmware: 1.1.6
|
||||||
- Hardware: 2.0 (TW) / Firmware: 1.1.1
|
- Hardware: 2.0 (TW) / Firmware: 1.1.1
|
||||||
- Hardware: 2.0 (US) / Firmware: 1.1.0
|
- Hardware: 2.0 (US) / Firmware: 1.1.0
|
||||||
|
- **L530EA**
|
||||||
|
- Hardware: 1.0 (EU) / Firmware: 1.4.2
|
||||||
- **L535E**
|
- **L535E**
|
||||||
- Hardware: 3.0 (EU) / Firmware: 1.1.8
|
- Hardware: 3.0 (EU) / Firmware: 1.1.8
|
||||||
- **L630**
|
- **L630**
|
||||||
|
|||||||
@@ -27,9 +27,16 @@ from .fixtureinfo import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Tapo bulbs
|
# Tapo bulbs
|
||||||
BULBS_SMART_VARIABLE_TEMP = {"L430C", "L430P", "L530E", "L535E", "L930-5"}
|
BULBS_SMART_VARIABLE_TEMP = {"L430C", "L430P", "L530E", "L530EA", "L535E", "L930-5"}
|
||||||
BULBS_SMART_LIGHT_STRIP = {"L900-5", "L900-10", "L920-5", "L930-5"}
|
BULBS_SMART_LIGHT_STRIP = {"L900-5", "L900-10", "L920-5", "L930-5"}
|
||||||
BULBS_SMART_COLOR = {"L430C", "L430P", "L530E", "L535E", *BULBS_SMART_LIGHT_STRIP}
|
BULBS_SMART_COLOR = {
|
||||||
|
"L430C",
|
||||||
|
"L430P",
|
||||||
|
"L530E",
|
||||||
|
"L530EA",
|
||||||
|
"L535E",
|
||||||
|
*BULBS_SMART_LIGHT_STRIP,
|
||||||
|
}
|
||||||
BULBS_SMART_DIMMABLE = {"L510B", "L510E"}
|
BULBS_SMART_DIMMABLE = {"L510B", "L510E"}
|
||||||
BULBS_SMART = (
|
BULBS_SMART = (
|
||||||
BULBS_SMART_VARIABLE_TEMP.union(BULBS_SMART_COLOR)
|
BULBS_SMART_VARIABLE_TEMP.union(BULBS_SMART_COLOR)
|
||||||
|
|||||||
537
tests/fixtures/smart/L530EA(EU)_1.0_1.4.2.json
vendored
Normal file
537
tests/fixtures/smart/L530EA(EU)_1.0_1.4.2.json
vendored
Normal file
@@ -0,0 +1,537 @@
|
|||||||
|
{
|
||||||
|
"component_nego": {
|
||||||
|
"component_list": [
|
||||||
|
{
|
||||||
|
"id": "device",
|
||||||
|
"ver_code": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "firmware",
|
||||||
|
"ver_code": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "quick_setup",
|
||||||
|
"ver_code": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "inherit",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "time",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "wireless",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "schedule",
|
||||||
|
"ver_code": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "countdown",
|
||||||
|
"ver_code": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "antitheft",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "account",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "synchronize",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "sunrise_sunset",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cloud_connect",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "default_states",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "preset",
|
||||||
|
"ver_code": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "brightness",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "color",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "color_temperature",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "auto_light",
|
||||||
|
"ver_code": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "on_off_gradually",
|
||||||
|
"ver_code": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "device_local_time",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "light_effect",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "iot_cloud",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "bulb_quick_control",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "localSmart",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "tpap",
|
||||||
|
"ver_code": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"discovery_result": {
|
||||||
|
"error_code": 0,
|
||||||
|
"result": {
|
||||||
|
"device_id": "00000000000000000000000000000000",
|
||||||
|
"device_model": "L530EA(EU)",
|
||||||
|
"device_type": "SMART.TAPOBULB",
|
||||||
|
"factory_default": false,
|
||||||
|
"ip": "127.0.0.123",
|
||||||
|
"is_support_iot_cloud": true,
|
||||||
|
"mac": "0C-EF-15-00-00-00",
|
||||||
|
"mgt_encrypt_schm": {
|
||||||
|
"encrypt_type": "KLAP",
|
||||||
|
"http_port": 80,
|
||||||
|
"is_support_https": false,
|
||||||
|
"lv": 2
|
||||||
|
},
|
||||||
|
"obd_src": "tplink",
|
||||||
|
"owner": "00000000000000000000000000000000",
|
||||||
|
"protocol_version": 1,
|
||||||
|
"tpap_preferred": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"get_antitheft_rules": {
|
||||||
|
"antitheft_rule_max_count": 1,
|
||||||
|
"enable": false,
|
||||||
|
"rule_list": []
|
||||||
|
},
|
||||||
|
"get_auto_update_info": {
|
||||||
|
"enable": true,
|
||||||
|
"random_range": 120,
|
||||||
|
"time": 180
|
||||||
|
},
|
||||||
|
"get_connect_cloud_state": {
|
||||||
|
"status": 0
|
||||||
|
},
|
||||||
|
"get_countdown_rules": {
|
||||||
|
"countdown_rule_max_count": 1,
|
||||||
|
"enable": false,
|
||||||
|
"rule_list": []
|
||||||
|
},
|
||||||
|
"get_device_info": {
|
||||||
|
"auto_biorhythm_light_enable": false,
|
||||||
|
"auto_biorhythm_light_id": "R0",
|
||||||
|
"avatar": "hang_lamp_1",
|
||||||
|
"brightness": 80,
|
||||||
|
"color_temp": 2700,
|
||||||
|
"color_temp_range": [
|
||||||
|
2500,
|
||||||
|
6500
|
||||||
|
],
|
||||||
|
"default_states": {
|
||||||
|
"re_power_type": "always_on",
|
||||||
|
"state": {
|
||||||
|
"brightness": 80,
|
||||||
|
"color_temp": 2700,
|
||||||
|
"hue": 0,
|
||||||
|
"saturation": 0
|
||||||
|
},
|
||||||
|
"type": "last_states"
|
||||||
|
},
|
||||||
|
"device_id": "0000000000000000000000000000000000000000",
|
||||||
|
"device_on": true,
|
||||||
|
"dynamic_light_effect_enable": false,
|
||||||
|
"dynamic_light_effect_id": "L1",
|
||||||
|
"fw_id": "00000000000000000000000000000000",
|
||||||
|
"fw_ver": "1.4.2 Build 260113 Rel.172011",
|
||||||
|
"has_set_location_info": true,
|
||||||
|
"hue": 0,
|
||||||
|
"hw_id": "00000000000000000000000000000000",
|
||||||
|
"hw_ver": "1.0",
|
||||||
|
"ip": "127.0.0.123",
|
||||||
|
"lang": "",
|
||||||
|
"latitude": 0,
|
||||||
|
"longitude": 0,
|
||||||
|
"mac": "0C-EF-15-00-00-00",
|
||||||
|
"model": "L530EA",
|
||||||
|
"nickname": "I01BU0tFRF9OQU1FIw==",
|
||||||
|
"oem_id": "00000000000000000000000000000000",
|
||||||
|
"overheated": false,
|
||||||
|
"region": "Europe/Brussels",
|
||||||
|
"rssi": -44,
|
||||||
|
"saturation": 0,
|
||||||
|
"signal_level": 3,
|
||||||
|
"specs": "EU",
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw==",
|
||||||
|
"time_diff": 60,
|
||||||
|
"type": "SMART.TAPOBULB"
|
||||||
|
},
|
||||||
|
"get_device_time": {
|
||||||
|
"region": "Europe/Brussels",
|
||||||
|
"time_diff": 60,
|
||||||
|
"timestamp": 1776445902
|
||||||
|
},
|
||||||
|
"get_device_usage": {
|
||||||
|
"power_usage": {
|
||||||
|
"past30": 16,
|
||||||
|
"past30_mwh": 16169,
|
||||||
|
"past7": 16,
|
||||||
|
"past7_mwh": 16169,
|
||||||
|
"today": 6,
|
||||||
|
"today_mwh": 6169
|
||||||
|
},
|
||||||
|
"saved_power": {
|
||||||
|
"past30": 96,
|
||||||
|
"past30_mwh": 95831,
|
||||||
|
"past7": 96,
|
||||||
|
"past7_mwh": 95831,
|
||||||
|
"today": 48,
|
||||||
|
"today_mwh": 47831
|
||||||
|
},
|
||||||
|
"time_usage": {
|
||||||
|
"past30": 112,
|
||||||
|
"past7": 112,
|
||||||
|
"today": 54
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"get_dynamic_light_effect_rules": {
|
||||||
|
"enable": false,
|
||||||
|
"max_count": 2,
|
||||||
|
"rule_list": [
|
||||||
|
{
|
||||||
|
"change_mode": "direct",
|
||||||
|
"change_time": 1000,
|
||||||
|
"color_status_list": [
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
2700
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
321,
|
||||||
|
99,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
196,
|
||||||
|
99,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
6,
|
||||||
|
97,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
160,
|
||||||
|
100,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
274,
|
||||||
|
95,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
48,
|
||||||
|
100,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
242,
|
||||||
|
99,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"id": "L1",
|
||||||
|
"scene_name": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"change_mode": "bln",
|
||||||
|
"change_time": 2000,
|
||||||
|
"color_status_list": [
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
54,
|
||||||
|
6,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
19,
|
||||||
|
39,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
194,
|
||||||
|
52,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
324,
|
||||||
|
24,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
170,
|
||||||
|
34,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
276,
|
||||||
|
27,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
56,
|
||||||
|
46,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
[
|
||||||
|
100,
|
||||||
|
221,
|
||||||
|
36,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"id": "L2",
|
||||||
|
"scene_name": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"start_index": 0,
|
||||||
|
"sum": 2
|
||||||
|
},
|
||||||
|
"get_fw_download_state": {
|
||||||
|
"auto_upgrade": false,
|
||||||
|
"download_progress": 0,
|
||||||
|
"reboot_time": 5,
|
||||||
|
"status": 0,
|
||||||
|
"upgrade_time": 5
|
||||||
|
},
|
||||||
|
"get_inherit_info": {
|
||||||
|
"inherit_status": true
|
||||||
|
},
|
||||||
|
"get_latest_fw": {
|
||||||
|
"fw_size": 0,
|
||||||
|
"fw_ver": "1.4.2 Build 260113 Rel.172011",
|
||||||
|
"hw_id": "",
|
||||||
|
"need_to_upgrade": false,
|
||||||
|
"oem_id": "",
|
||||||
|
"release_date": "",
|
||||||
|
"release_note": "",
|
||||||
|
"type": 0
|
||||||
|
},
|
||||||
|
"get_next_event": {},
|
||||||
|
"get_on_off_gradually_info": {
|
||||||
|
"change_state": {
|
||||||
|
"enable": false
|
||||||
|
},
|
||||||
|
"off_state": {
|
||||||
|
"duration": 2,
|
||||||
|
"enable": false,
|
||||||
|
"max_duration": 60
|
||||||
|
},
|
||||||
|
"on_state": {
|
||||||
|
"duration": 2,
|
||||||
|
"enable": false,
|
||||||
|
"max_duration": 60
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"get_preset_rules": {
|
||||||
|
"start_index": 0,
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"brightness": 70,
|
||||||
|
"color_temp": 2700,
|
||||||
|
"hue": 0,
|
||||||
|
"saturation": 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"brightness": 70,
|
||||||
|
"color_temp": 2500,
|
||||||
|
"hue": 240,
|
||||||
|
"saturation": 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"brightness": 100,
|
||||||
|
"color_temp": 0,
|
||||||
|
"hue": 0,
|
||||||
|
"saturation": 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"brightness": 100,
|
||||||
|
"color_temp": 0,
|
||||||
|
"hue": 120,
|
||||||
|
"saturation": 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"brightness": 100,
|
||||||
|
"color_temp": 0,
|
||||||
|
"hue": 277,
|
||||||
|
"saturation": 86
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"brightness": 100,
|
||||||
|
"color_temp": 0,
|
||||||
|
"hue": 60,
|
||||||
|
"saturation": 100
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"brightness": 100,
|
||||||
|
"color_temp": 0,
|
||||||
|
"hue": 300,
|
||||||
|
"saturation": 100
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sum": 7
|
||||||
|
},
|
||||||
|
"get_schedule_rules": {
|
||||||
|
"enable": false,
|
||||||
|
"rule_list": [],
|
||||||
|
"schedule_rule_max_count": 32,
|
||||||
|
"start_index": 0,
|
||||||
|
"sum": 0
|
||||||
|
},
|
||||||
|
"get_wireless_scan_info": {
|
||||||
|
"ap_list": [
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 3,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 2,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 1,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 1,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 1,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 1,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa3_sae",
|
||||||
|
"signal_level": 1,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"bssid": "000000000000",
|
||||||
|
"channel": 0,
|
||||||
|
"cipher_type": 2,
|
||||||
|
"key_type": "wpa2_psk",
|
||||||
|
"signal_level": 1,
|
||||||
|
"ssid": "I01BU0tFRF9TU0lEIw=="
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"start_index": 0,
|
||||||
|
"sum": 8,
|
||||||
|
"wep_supported": false
|
||||||
|
},
|
||||||
|
"qs_component_nego": {
|
||||||
|
"component_list": [
|
||||||
|
{
|
||||||
|
"id": "quick_setup",
|
||||||
|
"ver_code": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "sunrise_sunset",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "inherit",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "iot_cloud",
|
||||||
|
"ver_code": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "firmware",
|
||||||
|
"ver_code": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"extra_info": {
|
||||||
|
"device_model": "L530EA",
|
||||||
|
"device_type": "SMART.TAPOBULB",
|
||||||
|
"is_klap": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user