]> git.basschouten.com Git - openhab-addons.git/blob
810ab3596081a5ea784b149644ab6af87db09a58
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.gardena.internal;
14
15 /**
16  * A names of all GardenaSmart commands.
17  *
18  * @author Gerhard Riegler - Initial contribution
19  */
20 public enum GardenaSmartCommandName {
21     // mower
22     PARK_UNTIL_FURTHER_NOTICE,
23     PARK_UNTIL_NEXT_TIMER,
24     START_OVERRIDE_TIMER,
25     START_RESUME_SCHEDULE,
26     DURATION_PROPERTY,
27
28     // sensor
29     MEASURE_AMBIENT_TEMPERATURE,
30     MEASURE_LIGHT,
31     MEASURE_SOIL_HUMIDITY,
32     MEASURE_SOIL_TEMPERATURE,
33
34     // outlet
35     OUTLET_MANUAL_OVERRIDE_TIME,
36     OUTLET_VALVE,
37
38     // power
39     POWER_TIMER,
40
41     // irrigation control
42     WATERING_TIMER_VALVE_1,
43     WATERING_TIMER_VALVE_2,
44     WATERING_TIMER_VALVE_3,
45     WATERING_TIMER_VALVE_4,
46     WATERING_TIMER_VALVE_5,
47     WATERING_TIMER_VALVE_6,
48
49     // pump
50     PUMP_MANUAL_WATERING_TIMER
51 }