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

Improve description of hysteresis bounds #4149

Merged
merged 3 commits into from
Apr 7, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<config-description uri="profile:system:hysteresis">
<parameter name="lower" type="text" required="true">
<label>Lower Bound</label>
<description>Maps to OFF if value is below lower bound (plain number or number with unit).</description>
<description>Maps to OFF if value is less than or equal to lower bound (plain number or number with unit).</description>
</parameter>
<parameter name="upper" type="text">
<label>Upper Bound</label>
<description>Maps to ON if value is above upper bound (plain number or number with unit).</description>
<description>Maps to ON if value is greater than or equal to upper bound (plain number or number with unit).</description>
</parameter>
<parameter name="inverted" type="boolean">
<label>Inverted</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ profile.config.system.offset.offset.label = Offset
profile.config.system.offset.offset.description = Offset (plain number or number with unit) to be applied on the state towards the item. The negative offset will be applied in the reverse direction.
profile-type.system.hysteresis.label = Hysteresis
profile.config.system.hysteresis.lower.label = Lower Bound
profile.config.system.hysteresis.lower.description = Maps to OFF if value is below lower bound (plain number or number with unit).
profile.config.system.hysteresis.lower.description = Maps to OFF if value is less than or equal to lower bound (plain number or number with unit).
profile.config.system.hysteresis.upper.label = Upper Bound
profile.config.system.hysteresis.upper.description = Maps to ON if value is above upper bound (plain number or number with unit).
profile.config.system.hysteresis.upper.description = Maps to ON if value is greater than or equal to upper bound (plain number or number with unit).
profile.config.system.hysteresis.inverted.label = Inverted
profile.config.system.hysteresis.inverted.description = Inverts resulting mapping of ON / OFF, if true.
profile-type.system.range.label = Range
Expand Down