[rfxcom] New sub types for undecoded messages (#10834)

New subtypes have been added to the firmware, these are taken from the
RFXtrx SDK documentation.

Signed-off-by: James Hewitt <james.hewitt@uk.ibm.com>
This commit is contained in:
James Hewitt 2021-06-10 13:28:57 +01:00 committed by GitHub
parent 4db68379c9
commit c49166a069
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 2 deletions

View File

@ -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

View File

@ -59,6 +59,10 @@ public class RFXComUndecodedRFMessage extends RFXComDeviceMessageImpl<RFXComUnde
RTS(0x14),
SELECT_PLUS(0x15),
HOME_CONFORT(0x16),
EDISIO(0x17),
HONEYWELL(0x18),
FUNKBUS(0x19),
BYRONSX(0x1A),
UNKNOWN(0xFF);
@ -85,7 +89,7 @@ public class RFXComUndecodedRFMessage extends RFXComDeviceMessageImpl<RFXComUnde
}
public SubType subType;
public byte[] rawPayload = new byte[0];
public byte[] rawPayload;
public RFXComUndecodedRFMessage() {
super(UNDECODED_RF_MESSAGE);

View File

@ -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>