73 lines
2.1 KiB
Python
73 lines
2.1 KiB
Python
|
"""Constants for the TP-Link component tests."""
|
||
|
|
||
|
SMARTPLUGSWITCH_DATA = {
|
||
|
"sysinfo": {
|
||
|
"sw_ver": "1.0.4 Build 191111 Rel.143500",
|
||
|
"hw_ver": "4.0",
|
||
|
"model": "HS110(EU)",
|
||
|
"deviceId": "4C56447B395BB7A2FAC68C9DFEE2E84163222581",
|
||
|
"oemId": "40F54B43071E9436B6395611E9D91CEA",
|
||
|
"hwId": "A6C77E4FDD238B53D824AC8DA361F043",
|
||
|
"rssi": -24,
|
||
|
"longitude_i": 130793,
|
||
|
"latitude_i": 480582,
|
||
|
"alias": "SmartPlug",
|
||
|
"status": "new",
|
||
|
"mic_type": "IOT.SMARTPLUGSWITCH",
|
||
|
"feature": "TIM:ENE",
|
||
|
"mac": "69:F2:3C:8E:E3:47",
|
||
|
"updating": 0,
|
||
|
"led_off": 0,
|
||
|
"relay_state": 0,
|
||
|
"on_time": 0,
|
||
|
"active_mode": "none",
|
||
|
"icon_hash": "",
|
||
|
"dev_name": "Smart Wi-Fi Plug With Energy Monitoring",
|
||
|
"next_action": {"type": -1},
|
||
|
"err_code": 0,
|
||
|
},
|
||
|
"realtime": {
|
||
|
"voltage_mv": 233957,
|
||
|
"current_ma": 21,
|
||
|
"power_mw": 0,
|
||
|
"total_wh": 1793,
|
||
|
"err_code": 0,
|
||
|
},
|
||
|
}
|
||
|
SMARTSTRIPWITCH_DATA = {
|
||
|
"sysinfo": {
|
||
|
"sw_ver": "1.0.4 Build 191111 Rel.143500",
|
||
|
"hw_ver": "4.0",
|
||
|
"model": "HS110(EU)",
|
||
|
"deviceId": "4C56447B395BB7A2FAC68C9DFEE2E84163222581",
|
||
|
"oemId": "40F54B43071E9436B6395611E9D91CEA",
|
||
|
"hwId": "A6C77E4FDD238B53D824AC8DA361F043",
|
||
|
"rssi": -24,
|
||
|
"longitude_i": 130793,
|
||
|
"latitude_i": 480582,
|
||
|
"alias": "SmartPlug",
|
||
|
"status": "new",
|
||
|
"mic_type": "IOT.SMARTPLUGSWITCH",
|
||
|
"feature": "TIM",
|
||
|
"mac": "69:F2:3C:8E:E3:47",
|
||
|
"updating": 0,
|
||
|
"led_off": 0,
|
||
|
"relay_state": 0,
|
||
|
"on_time": 0,
|
||
|
"active_mode": "none",
|
||
|
"icon_hash": "",
|
||
|
"dev_name": "Smart Wi-Fi Plug With Energy Monitoring",
|
||
|
"next_action": {"type": -1},
|
||
|
"children": [{"id": "1", "state": 1, "alias": "SmartPlug#1"}],
|
||
|
"err_code": 0,
|
||
|
},
|
||
|
"realtime": {
|
||
|
"voltage_mv": 233957,
|
||
|
"current_ma": 21,
|
||
|
"power_mw": 0,
|
||
|
"total_wh": 1793,
|
||
|
"err_code": 0,
|
||
|
},
|
||
|
"context": "1",
|
||
|
}
|