You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[enocean] Fix discovery of D2-50 devices (openhab#10577)
This change accepts a new message type which is sent by some air ventilation devices durin teach in. This is required for the search feature to detect these devices correctly.
Signed-off-by: David Schumann <[email protected]>
Copy file name to clipboardExpand all lines: bundles/org.openhab.binding.enocean/src/main/java/org/openhab/binding/enocean/internal/eep/D2_50/D2_50.java
+4
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ public class D2_50 extends _VLDMessage {
44
44
protectedstaticfinalbyteMT_CONTROL = 0x20;
45
45
protectedstaticfinalbyteMT_BASIC_STATUS = 0x40;
46
46
protectedstaticfinalbyteMT_EXTENDED_STATUS = 0x60; // not yet implemented
47
+
protectedstaticfinalbyteMT_UNKNOWN_STATUS = (byte) 0x80; // Sent by some systems during teach in
0 commit comments