Updated external content (Jenkins build 1671)
parent
eab1ea1c1a
commit
ce4ee2729b
|
@ -103,10 +103,10 @@ Sensor refresh commands are not yet supported by the Gardena smart system integr
|
|||
```java
|
||||
// smart Water Control
|
||||
String WC_Valve_Activity "Valve Activity" { channel="gardena:water_control:home:myWateringComputer:valve#activity" }
|
||||
Number WC_Valve_Duration "Last Watering Duration [%d min]" { channel="gardena:water_control:home:myWateringComputer:valve#duration" }
|
||||
Number:Time WC_Valve_Duration "Last Watering Duration [%d min]" { channel="gardena:water_control:home:myWateringComputer:valve#duration" }
|
||||
|
||||
Number WC_Valve_cmd_Duration "Command Duration [%d min]" { channel="gardena:water_control:home:myWateringComputer:valve_commands#commandDuration" }
|
||||
Switch WC_Valve_cmd_OpenWithDuration "Watering Timer [%d min]" { channel="gardena:water_control:home:myWateringComputer:valve_commands#start_seconds_to_override" }
|
||||
Number:Time WC_Valve_cmd_Duration "Command Duration [%d min]" { channel="gardena:water_control:home:myWateringComputer:valve_commands#commandDuration" }
|
||||
Switch WC_Valve_cmd_OpenWithDuration "Start Watering Timer" { channel="gardena:water_control:home:myWateringComputer:valve_commands#start_seconds_to_override" }
|
||||
Switch WC_Valve_cmd_CloseValve "Stop Switch" { channel="gardena:water_control:home:myWateringComputer:valve_commands#stop_until_next_task" }
|
||||
|
||||
openhab:status WC_Valve_Duration // returns the duration of the last watering request if still active, or 0
|
||||
|
@ -116,7 +116,7 @@ openhab:status WC_Valve_Activity // returns the current valve activity (CLOSED|
|
|||
All channels are read-only, except the command group and the lastUpdate timestamp
|
||||
|
||||
```shell
|
||||
openhab:send WC_Valve_cmd_Duration.sendCommand(10) // set the duration for the command to 10min
|
||||
openhab:send WC_Valve_cmd_Duration.sendCommand(600) // set the duration for the command to 10min
|
||||
openhab:send WC_Valve_cmd_OpenWithDuration.sendCommand(ON) // start watering
|
||||
openhab:send WC_Valve_cmd_CloseValve.sendCommand(ON) // stop any active watering
|
||||
```
|
||||
|
|
|
@ -592,22 +592,22 @@
|
|||
<channel-type id="duration">
|
||||
<item-type>Number:Time</item-type>
|
||||
<label>Duration</label>
|
||||
<description>Duration in minutes</description>
|
||||
<description>Duration</description>
|
||||
<state readOnly="true" pattern="%d min"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="soilHumidity">
|
||||
<item-type>Number:Dimensionless</item-type>
|
||||
<label>Soil Humidity</label>
|
||||
<description>Soil humidity in percent</description>
|
||||
<state readOnly="true" pattern="%d %unit%"/>
|
||||
<description>Soil humidity</description>
|
||||
<state readOnly="true" pattern="%d %%"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="lightIntensity">
|
||||
<item-type>Number:Illuminance</item-type>
|
||||
<label>Light Intensity</label>
|
||||
<description>Light intensity in Lux</description>
|
||||
<state readOnly="true" pattern="%d lux"/>
|
||||
<description>Light intensity</description>
|
||||
<state readOnly="true" pattern="%d %unit%"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="temperature">
|
||||
|
@ -621,7 +621,7 @@
|
|||
<item-type>Number:Time</item-type>
|
||||
<label>Operating Hours</label>
|
||||
<description>The operating hours</description>
|
||||
<state readOnly="true" pattern="%d %unit%"/>
|
||||
<state readOnly="true" pattern="%d h"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="batteryState">
|
||||
|
|
Loading…
Reference in New Issue