]> git.basschouten.com Git - openhab-addons.git/blob
0a8beb504c09f3c73acd299b3135d1de5a6e3671
[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.atlona.internal;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.core.thing.ThingTypeUID;
17
18 /**
19  * The {@link AtlonaBinding} class defines common constants, which are used across the whole binding.
20  *
21  * @author Tim Roberts - Initial contribution
22  * @author Michael Lobstein - Add support for AT-PRO3HD 44/66 M
23  */
24 @NonNullByDefault
25 public class AtlonaBindingConstants {
26
27     /**
28      * The binding identifier for atlona
29      */
30     public static final String BINDING_ID = "atlona";
31
32     /**
33      * Thing ID for the AT-UHD-PRO3-44m (4x4 hdbaset matrix)
34      */
35     public static final ThingTypeUID THING_TYPE_PRO3_44M = new ThingTypeUID(BINDING_ID, "pro3-44m");
36
37     /**
38      * Thing ID for the AT-UHD-PRO3-66m (6x6 hdbaset matrix)
39      */
40     public static final ThingTypeUID THING_TYPE_PRO3_66M = new ThingTypeUID(BINDING_ID, "pro3-66m");
41
42     /**
43      * Thing ID for the AT-UHD-PRO3-88m (8x8 hdbaset matrix)
44      */
45     public static final ThingTypeUID THING_TYPE_PRO3_88M = new ThingTypeUID(BINDING_ID, "pro3-88m");
46
47     /**
48      * Thing ID for the AT-UHD-PRO3-1616m (16x16 hdbaset matrix)
49      */
50     public static final ThingTypeUID THING_TYPE_PRO3_1616M = new ThingTypeUID(BINDING_ID, "pro3-1616m");
51
52     /**
53      * Thing ID for the AT-PRO3HD44M (HD 4x4 hdbaset matrix)
54      */
55     public static final ThingTypeUID THING_TYPE_PRO3HD_44M = new ThingTypeUID(BINDING_ID, "pro3-hd44m");
56
57     /**
58      * Thing ID for the AT-PRO3HD66M (HD 6x6 hdbaset matrix)
59      */
60     public static final ThingTypeUID THING_TYPE_PRO3HD_66M = new ThingTypeUID(BINDING_ID, "pro3-hd66m");
61 }