Skip to content

Commit

Permalink
[rfxcom] Added Cherubini blinds support (openhab#7418)
Browse files Browse the repository at this point in the history
* Update RFXComBlinds1Message.java

Added Cherubini blinds for the Blinds1 (support for Cherubini was added in RFXCom in Version 5.68 - 26/02/2020 ).
I have Cherubini blinds and this very simple addon to the enum does the trick.

The deviceId can be found in RFXMgr when sending a command
   id1-3         = 103000 decimal:1060864
it's the decimal part to which you add .0

Thing blinds1 Salon "Volet Salon" [ deviceId="1060864.0", subType="18" ]

Please note that there is also T14, T15, T16, T17, maybe support for them is also as easy as completing the enum ... since I cannot test, I didn't add them.
* Update RFXComBlinds1Message.java

Fixes openhab#7417

Signed-off-by: Fabien Le Bars <[email protected]>
  • Loading branch information
Bleizig authored and LoungeFlyZ committed Jun 8, 2020
1 parent 38a0e26 commit 0169d00
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
*
* @author Peter Janson / Pål Edman - Initial contribution
* @author Pauli Anttila - Migration to OH2
* @author Fabien Le Bars - Added support for Cherubini blinds
*/
public class RFXComBlinds1Message extends RFXComBatteryDeviceMessage<RFXComBlinds1Message.SubType> {

Expand All @@ -47,8 +48,9 @@ public enum SubType implements ByteEnumWrapper {
T10(10), // Dolat DLM-1, Topstar
T11(11), // ASP
T12(12), // Confexx CNF24-2435
T13(13); // Screenline

T13(13), // Screenline
T18(18); //Cherubini

private final int subType;

SubType(int subType) {
Expand Down

0 comments on commit 0169d00

Please sign in to comment.