-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add specific code for RWL021 when on zigpy mode * Finish Legrand Sleep Wakeup device integration (#1289) * Add LegrandSleepWakeupSelector * Move LegrandSleepWakeupSelector to LvlControl * fix decoding of fc00 frame when coming from zigpy. Add a RWL021_Dimmer_step parameter to define the progressing step of the Level * fixing issue when calling get_max_cfg_rpt_attribute_value * refactor how to handle philips remote hue, from zigate * remove double space (codefactor) Co-authored-by: Sylvain PERON <[email protected]>
- Loading branch information
1 parent
490c8fa
commit 4b7a066
Showing
8 changed files
with
182 additions
and
269 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
{ | ||
"_comment": "Philips Hue Remote", | ||
"_version": "1.0", | ||
"Ep":{ | ||
"02":{ | ||
"0000":"", | ||
"0001":"", | ||
"0003":"", | ||
"000f":"", | ||
"fc00":"", | ||
"Type":"LvlControl" | ||
} | ||
}, | ||
"Type":"", | ||
"NickName":"Hue_Remote", | ||
"ClusterToBind": [ "fc00", "0001", "000f" ], | ||
"ConfigureReporting": { | ||
"0001": {"Attributes": { "0021": {"DataType": "20", "MinInterval":"012C", "MaxInterval":"012C", "TimeOut":"0FFF","Change":"00"}}} | ||
}, | ||
"ReadAttributes": { | ||
"0000": [ "0000", "0001", "0002", "0003", "0004", "0005", "0006" ] , | ||
"0001": [ "0020" ] , | ||
"000f": [ ], | ||
"fc00": [ "0000" ] | ||
}, | ||
"BatteryDevice": 1, | ||
"BatteryPercentageConverter": 2 | ||
"_comment": "Philips Hue Remote", | ||
"_version": "1.0", | ||
"Ep":{ | ||
"02":{ | ||
"0000":"", | ||
"0001":"", | ||
"0003":"", | ||
"000f":"", | ||
"fc00":"", | ||
"Type":"LvlControl" | ||
} | ||
}, | ||
"Type":"", | ||
"NickName":"Hue_Remote", | ||
"ClusterToBind": [ "fc00", "0001", "000f" ], | ||
"ConfigureReporting": { | ||
"0001": {"Attributes": { "0021": {"DataType": "20", "MinInterval":"012C", "MaxInterval":"012C", "TimeOut":"0FFF","Change":"00"}}} | ||
}, | ||
"ReadAttributes": { | ||
"0000": [ "0000", "0001", "0002", "0003", "0004", "0005", "0006" ] , | ||
"0001": [ "0020" ] , | ||
"000f": [ ], | ||
"fc00": [ "0000" ] | ||
}, | ||
"BatteryDevice": 1, | ||
"BatteryPercentageConverter": 2, | ||
"Param": { | ||
"RWL021_Dimmer_step": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.