mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
Added a fixture file for KS220M (#273)
* Added motion and light sensor for KS220M * Added fixture file for ks220m * Remove dump_devinfo and add the extra queries to devtools/dump_devinfo * Test KS220M as a dimmer * Add empty modules to baseproto to make the tests pass Co-authored-by: mrbetta <bettale@gmail.com> Co-authored-by: Teemu Rytilahti <tpr@iki.fi>
This commit is contained in:
parent
6a31de5381
commit
5bf6fda7ee
@ -76,6 +76,8 @@ def cli(host, debug):
|
||||
Call(
|
||||
module="smartlife.iot.smartbulb.lightingservice", method="get_light_state"
|
||||
),
|
||||
Call(module="smartlife.iot.LAS", method="get_config"),
|
||||
Call(module="smartlife.iot.PIR", method="get_config"),
|
||||
]
|
||||
|
||||
successes = []
|
||||
|
@ -53,7 +53,7 @@ PLUGS = {
|
||||
"KP401",
|
||||
}
|
||||
STRIPS = {"HS107", "HS300", "KP303", "KP400", "EP40"}
|
||||
DIMMERS = {"HS220"}
|
||||
DIMMERS = {"HS220", "KS220M"}
|
||||
|
||||
DIMMABLE = {*BULBS, *DIMMERS}
|
||||
WITH_EMETER = {"HS110", "HS300", "KP115", *BULBS}
|
||||
|
126
kasa/tests/fixtures/KS220M(US)_1.0_1.0.4.json
vendored
Normal file
126
kasa/tests/fixtures/KS220M(US)_1.0_1.0.4.json
vendored
Normal file
@ -0,0 +1,126 @@
|
||||
{
|
||||
"smartlife.iot.LAS": {
|
||||
"get_config": {
|
||||
"devs": [
|
||||
{
|
||||
"dark_index": 0,
|
||||
"enable": 1,
|
||||
"hw_id": 0,
|
||||
"level_array": [
|
||||
{
|
||||
"adc": 490,
|
||||
"name": "cloudy",
|
||||
"value": 20
|
||||
},
|
||||
{
|
||||
"adc": 294,
|
||||
"name": "overcast",
|
||||
"value": 12
|
||||
},
|
||||
{
|
||||
"adc": 222,
|
||||
"name": "dawn",
|
||||
"value": 9
|
||||
},
|
||||
{
|
||||
"adc": 222,
|
||||
"name": "twilight",
|
||||
"value": 9
|
||||
},
|
||||
{
|
||||
"adc": 111,
|
||||
"name": "total darkness",
|
||||
"value": 4
|
||||
},
|
||||
{
|
||||
"adc": 2400,
|
||||
"name": "custom",
|
||||
"value": 97
|
||||
}
|
||||
],
|
||||
"max_adc": 2450,
|
||||
"min_adc": 0
|
||||
}
|
||||
],
|
||||
"err_code": 0,
|
||||
"ver": "1.0"
|
||||
}
|
||||
},
|
||||
"smartlife.iot.PIR": {
|
||||
"get_config": {
|
||||
"array": [
|
||||
80,
|
||||
50,
|
||||
20,
|
||||
61
|
||||
],
|
||||
"cold_time": 60000,
|
||||
"enable": 1,
|
||||
"err_code": 0,
|
||||
"max_adc": 4095,
|
||||
"min_adc": 0,
|
||||
"trigger_index": 2,
|
||||
"version": "1.0"
|
||||
}
|
||||
},
|
||||
"smartlife.iot.dimmer": {
|
||||
"get_dimmer_parameters": {
|
||||
"bulb_type": 1,
|
||||
"err_code": 0,
|
||||
"fadeOffTime": 0,
|
||||
"fadeOnTime": 0,
|
||||
"gentleOffTime": 10000,
|
||||
"gentleOnTime": 3000,
|
||||
"minThreshold": 1,
|
||||
"rampRate": 30
|
||||
}
|
||||
},
|
||||
"system": {
|
||||
"get_sysinfo": {
|
||||
"active_mode": "none",
|
||||
"alias": "Garage Entryway Lights",
|
||||
"brightness": 100,
|
||||
"dev_name": "Wi-Fi Smart Dimmer with sensor",
|
||||
"deviceId": "0000000000000000000000000000000000000000",
|
||||
"err_code": 0,
|
||||
"feature": "TIM",
|
||||
"hwId": "00000000000000000000000000000000",
|
||||
"hw_ver": "1.0",
|
||||
"icon_hash": "",
|
||||
"latitude_i": 0,
|
||||
"led_off": 0,
|
||||
"longitude_i": 0,
|
||||
"mac": "00:00:00:00:00:00",
|
||||
"mic_type": "IOT.SMARTPLUGSWITCH",
|
||||
"model": "KS220M(US)",
|
||||
"next_action": {
|
||||
"type": -1
|
||||
},
|
||||
"oemId": "00000000000000000000000000000000",
|
||||
"on_time": 0,
|
||||
"preferred_state": [
|
||||
{
|
||||
"brightness": 100,
|
||||
"index": 0
|
||||
},
|
||||
{
|
||||
"brightness": 75,
|
||||
"index": 1
|
||||
},
|
||||
{
|
||||
"brightness": 50,
|
||||
"index": 2
|
||||
},
|
||||
{
|
||||
"brightness": 25,
|
||||
"index": 3
|
||||
}
|
||||
],
|
||||
"relay_state": 0,
|
||||
"rssi": -42,
|
||||
"status": "new",
|
||||
"sw_ver": "1.0.4 Build 210616 Rel.193517",
|
||||
"updating": 0
|
||||
}
|
||||
}
|
||||
}
|
@ -437,6 +437,8 @@ class FakeTransportProtocol(TPLinkSmartHomeProtocol):
|
||||
"set_brightness": set_hs220_brightness,
|
||||
"set_dimmer_transition": set_hs220_dimmer_transition,
|
||||
},
|
||||
"smartlife.iot.LAS": {},
|
||||
"smartlife.iot.PIR": {},
|
||||
}
|
||||
|
||||
async def query(self, request, port=9999):
|
||||
|
Loading…
Reference in New Issue
Block a user