Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rfxcom] New sub types for undecoded messages #10834

Merged
merged 1 commit into from
Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bundles/org.openhab.binding.rfxcom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,10 @@ Any messages that RFXCOM can receive but not decode.
* RTS - RTS
* SELECT\_PLUS - Select Plus
* HOME\_CONFORT - Home Confort

* EDISIO - Edisio
* HONEYWELL - Honeywell
* FUNKBUS - Gira Funk-Bussystem
* BYRONSX - Byron SX

### uv - RFXCOM UV/Temperature Sensor

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ public enum SubType implements ByteEnumWrapper {
RTS(0x14),
SELECT_PLUS(0x15),
HOME_CONFORT(0x16),
EDISIO(0x17),
HONEYWELL(0x18),
FUNKBUS(0x19),
BYRONSX(0x1A),

UNKNOWN(0xFF);

Expand All @@ -85,7 +89,7 @@ public static SubType fromByte(int input) {
}

public SubType subType;
public byte[] rawPayload = new byte[0];
public byte[] rawPayload;

public RFXComUndecodedRFMessage() {
super(UNDECODED_RF_MESSAGE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@
<option value="RTS">RTS</option>
<option value="SELECT_PLUS">Select Plus</option>
<option value="HOME_CONFORT">Home Confort</option>
<option value="EDISIO">Edisio</option>
<option value="HONEYWELL">Honeywell</option>
<option value="FUNKBUS">Gira Funk-Bussystem</option>
<option value="BYRONSX">Byron SX</option>
</options>
</parameter>
</config-description>
Expand Down