mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 07:02:02 +01:00
Added MOOD_LIGHT for NOVY Fan (#14298)
Signed-off-by: fcvuilbak <42965756+fcvuilbak@users.noreply.github.com>
This commit is contained in:
parent
a8267bc4fb
commit
8197721685
@ -522,13 +522,13 @@ A Novy extractor fan.
|
||||
|
||||
##### Channels
|
||||
|
||||
| Name | Channel Type | Item Type | Remarks |
|
||||
| --------------- | ----------------------------------- | ------------- | ---------------------------------------------------- |
|
||||
| command | [command](#channels) | Switch | |
|
||||
| commandString | [commandString](#channels) | String | Options: POWER, UP, DOWN, LIGHT, LEARN, RESET_FILTER |
|
||||
| fanSpeedControl | [fanspeedcontrol](#channels) | RollerShutter | Options: UP / DOWN |
|
||||
| fanLight | [fanlight](#channels) | Switch | |
|
||||
| signalLevel | [system.signal-strength](#channels) | Number | |
|
||||
| Name | Channel Type | Item Type | Remarks |
|
||||
| --------------- | ----------------------------------- | ------------- | ---------------------------------------------------------------- |
|
||||
| command | [command](#channels) | Switch | |
|
||||
| commandString | [commandString](#channels) | String | Options: POWER, UP, DOWN, LIGHT, LEARN, RESET_FILTER, MOOD_LIGHT |
|
||||
| fanSpeedControl | [fanspeedcontrol](#channels) | RollerShutter | Options: UP / DOWN |
|
||||
| fanLight | [fanlight](#channels) | Switch | |
|
||||
| signalLevel | [system.signal-strength](#channels) | Number | |
|
||||
|
||||
##### Configuration Options
|
||||
|
||||
|
@ -128,7 +128,8 @@ public class RFXComFanMessage extends RFXComDeviceMessageImpl<RFXComFanMessage.S
|
||||
NOVY_DOWN(3, NOVY),
|
||||
NOVY_LIGHT(4, NOVY),
|
||||
NOVY_LEARN(5, NOVY),
|
||||
NOVY_RESET_FILTER(6, NOVY);
|
||||
NOVY_RESET_FILTER(6, NOVY),
|
||||
NOVY_MOOD_LIGHT(7, NOVY);
|
||||
|
||||
private final int command;
|
||||
private final Integer speed;
|
||||
@ -405,6 +406,7 @@ public class RFXComFanMessage extends RFXComDeviceMessageImpl<RFXComFanMessage.S
|
||||
case "NATURAL_FLOW":
|
||||
case "PAIR":
|
||||
case "RESET_FILTER":
|
||||
case "MOOD_LIGHT":
|
||||
case "SPEED_1":
|
||||
case "SPEED_2":
|
||||
case "SPEED_3":
|
||||
|
Loading…
Reference in New Issue
Block a user