Skip to content
Open
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
12 changes: 12 additions & 0 deletions SUPPORTED_PROFILES.md
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,18 @@ All profiles (should) correspond to the official [EEP](http://www.enocean-allian



##### RORG 0xA5 - FUNC 0x14 - TYPE 0x09 - Window/Door-Sensor with States Open/Closed/Tilt, Supply voltage monitor

|shortcut|description |type |values |
|--------|--------------------------------------------------|--------|---- |
|SVC |Supply voltage / super cap. (linear) |value |0.0-250.0 ↔ 0.0-5.0 V |
|CT |Contact |enum |0b00 - closed |
| | | |0b01 - tilt |
| | | |0b10 - reserved |
| | | |0b11 - open |



##### RORG 0xA5 - FUNC 0x20 - TYPE 0x01 - Battery Powered Actuator (BI-DIR)

###### direction: 1
Expand Down
20 changes: 20 additions & 0 deletions enocean/protocol/EEP.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1282,6 +1282,26 @@
</enum>
</data>
</profile>
<profile type="0x09" description="Window/Door-Sensor with States Open/Closed/Tilt, Supply voltage monitor">
<data>
<value description="Supply voltage / super cap. (linear)" shortcut="SVC" offset="0" size="8" unit="V">
<range>
<min>0</min>
<max>250</max>
</range>
<scale>
<min>0</min>
<max>5.0</max>
</scale>
</value>
<enum description="Contact" shortcut="CT" offset="29" size="2">
<item description="closed" value="0" />
<item description="tilt" value="1" />
<item description="reserved" value="2" />
<item description="open" value="3" />
</enum>
</data>
</profile>
</profiles>
<profiles func="0x20" description="HVAC Components">
<profile type="0x01" description="Battery Powered Actuator (BI-DIR)">
Expand Down