]> git.basschouten.com Git - openhab-addons.git/blob
995c1c05cf9c8de13f0d13a4a93fb6f3b616c073
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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-PRO3HD66M
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-PRO3HD66M (HD 6x6 hdbaset matrix)
54      */
55     public static final ThingTypeUID THING_TYPE_PRO3HD_66M = new ThingTypeUID(BINDING_ID, "pro3-hd66m");
56 }