mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +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
|
##### Channels
|
||||||
|
|
||||||
| Name | Channel Type | Item Type | Remarks |
|
| Name | Channel Type | Item Type | Remarks |
|
||||||
| --------------- | ----------------------------------- | ------------- | ---------------------------------------------------- |
|
| --------------- | ----------------------------------- | ------------- | ---------------------------------------------------------------- |
|
||||||
| command | [command](#channels) | Switch | |
|
| command | [command](#channels) | Switch | |
|
||||||
| commandString | [commandString](#channels) | String | Options: POWER, UP, DOWN, LIGHT, LEARN, RESET_FILTER |
|
| commandString | [commandString](#channels) | String | Options: POWER, UP, DOWN, LIGHT, LEARN, RESET_FILTER, MOOD_LIGHT |
|
||||||
| fanSpeedControl | [fanspeedcontrol](#channels) | RollerShutter | Options: UP / DOWN |
|
| fanSpeedControl | [fanspeedcontrol](#channels) | RollerShutter | Options: UP / DOWN |
|
||||||
| fanLight | [fanlight](#channels) | Switch | |
|
| fanLight | [fanlight](#channels) | Switch | |
|
||||||
| signalLevel | [system.signal-strength](#channels) | Number | |
|
| signalLevel | [system.signal-strength](#channels) | Number | |
|
||||||
|
|
||||||
##### Configuration Options
|
##### Configuration Options
|
||||||
|
|
||||||
|
@ -128,7 +128,8 @@ public class RFXComFanMessage extends RFXComDeviceMessageImpl<RFXComFanMessage.S
|
|||||||
NOVY_DOWN(3, NOVY),
|
NOVY_DOWN(3, NOVY),
|
||||||
NOVY_LIGHT(4, NOVY),
|
NOVY_LIGHT(4, NOVY),
|
||||||
NOVY_LEARN(5, 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 int command;
|
||||||
private final Integer speed;
|
private final Integer speed;
|
||||||
@ -405,6 +406,7 @@ public class RFXComFanMessage extends RFXComDeviceMessageImpl<RFXComFanMessage.S
|
|||||||
case "NATURAL_FLOW":
|
case "NATURAL_FLOW":
|
||||||
case "PAIR":
|
case "PAIR":
|
||||||
case "RESET_FILTER":
|
case "RESET_FILTER":
|
||||||
|
case "MOOD_LIGHT":
|
||||||
case "SPEED_1":
|
case "SPEED_1":
|
||||||
case "SPEED_2":
|
case "SPEED_2":
|
||||||
case "SPEED_3":
|
case "SPEED_3":
|
||||||
|
Loading…
Reference in New Issue
Block a user