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

[somfytahoma] fix the smoke sensor's documentation #13919

Merged
merged 1 commit into from
Dec 11, 2022
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
3 changes: 1 addition & 2 deletions bundles/org.openhab.binding.somfytahoma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ Please see the example below.
| smoke sensor, occupancy sensor, contact sensor & water sensor | sensor_defect | indicates the health of the sensor (dead, lowBatter, maintenanceRequired, noDefect) |
| smoke sensor | radio_battery | maintenance radio part battery state (low, normal) |
| smoke sensor | sensor_battery | maintenance sensor part battery state (absence, low, normal) |
| smoke sensor | short_check | triggering the smoke sensor's short check |
| smoke sensor | long_check | triggering the smoke sensor's long check |
| smoke sensor | alarm_check | triggers the smoke sensor's beep check (short, long) |
| light sensor | luminance | light luminance value in luxes |
| electricity sensor | energy_consumption | energy consumption value in watts |
| humidity sensor | humidity | current relative humidity |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ thing-type.config.somfytahoma.gateway.id.description = The identifier of this So
channel-type.somfytahoma.active_zones_state.label = Active Zones State
channel-type.somfytahoma.active_zones_state.description = Active Zones State
channel-type.somfytahoma.alarm_check.label = Alarm Check Trigger
channel-type.somfytahoma.alarm_check.description = A channel for triggering the smoke sensor's check
channel-type.somfytahoma.alarm_check.command.option.SHORT = Short check
channel-type.somfytahoma.alarm_check.command.option.LONG = Long check
channel-type.somfytahoma.alarm_check.description = A channel for triggering the smoke sensor's beep check
channel-type.somfytahoma.alarm_check.command.option.short = Short check
channel-type.somfytahoma.alarm_check.command.option.long = Long check
channel-type.somfytahoma.alarm_command.label = Command
channel-type.somfytahoma.alarm_command.description = A channel used for sending commands to Somfy Alarm device
channel-type.somfytahoma.alarm_command.state.option.on = ARM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,11 +279,11 @@
<channel-type id="alarm_check">
<item-type>String</item-type>
<label>Alarm Check Trigger</label>
<description>A channel for triggering the smoke sensor's check</description>
<description>A channel for triggering the smoke sensor's beep check</description>
<command>
<options>
<option value="SHORT">Short check</option>
<option value="LONG">Long check</option>
<option value="short">Short check</option>
<option value="long">Long check</option>
</options>
</command>
</channel-type>
Expand Down