]> git.basschouten.com Git - openhab-addons.git/blob
1e8a88d57c488c2b8f2424825ca2051a39480eed
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.openthermgateway.internal;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link GatewayCommandCode} provides a set of supported OpenTherm Gateway commands.
19  * 
20  * @author Arjen Korevaar - Initial contribution
21  */
22 @NonNullByDefault
23 public class GatewayCommandCode {
24     public static final String TEMPERATURETEMPORARY = "TT";
25     public static final String TEMPERATURECONSTANT = "TC";
26     public static final String TEMPERATUREOUTSIDE = "OT";
27     public static final String SETCLOCK = "ST";
28     public static final String HOTWATER = "HW";
29     public static final String PRINTREPORT = "PR";
30     public static final String PRINTSUMMARY = "PS";
31     public static final String GATEWAY = "GW";
32     public static final String LEDA = "LA";
33     public static final String LEDB = "LB";
34     public static final String LEDC = "LC";
35     public static final String LEDD = "LD";
36     public static final String LEDE = "LE";
37     public static final String LEDF = "LF";
38     public static final String GPIOA = "GA";
39     public static final String GPIOB = "GB";
40     public static final String SETBACK = "SB";
41     public static final String TEMPERATURESENSOR = "TS";
42     public static final String ADDALTERNATIVE = "AA";
43     public static final String DELETEALTERNATIVE = "DA";
44     public static final String UNKNOWNID = "UI";
45     public static final String KNOWNID = "KI";
46     public static final String PRIORITYMESSAGE = "PM";
47     public static final String SETRESPONSE = "SR";
48     public static final String CLEARRESPONSE = "CR";
49     public static final String SETPOINTHEATING = "SH";
50     public static final String SETPOINTWATER = "SW";
51     public static final String MAXIMUMMODULATION = "MM";
52     public static final String CONTROLSETPOINT = "CS";
53     public static final String CONTROLSETPOINT2 = "C2";
54     public static final String CENTRALHEATING = "CH";
55     public static final String CENTRALHEATING2 = "H2";
56     public static final String VENTILATIONSETPOINT = "VS";
57     public static final String RESET = "RS";
58     public static final String IGNORETRANSITION = "IT";
59     public static final String OVERRIDEHIGHBYTE = "OH";
60     public static final String FORCETHERMOSTAT = "FT";
61     public static final String VOLTAGEREFERENCE = "VR";
62     public static final String DEBUGPOINTER = "DP";
63 }