2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.atlona.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.core.thing.ThingTypeUID;
19 * The {@link AtlonaBinding} class defines common constants, which are used across the whole binding.
21 * @author Tim Roberts - Initial contribution
22 * @author Michael Lobstein - Add support for AT-PRO3HD 44/66 M
25 public class AtlonaBindingConstants {
28 * The binding identifier for atlona
30 public static final String BINDING_ID = "atlona";
33 * Thing ID for the AT-UHD-PRO3-44m (4x4 hdbaset matrix)
35 public static final ThingTypeUID THING_TYPE_PRO3_44M = new ThingTypeUID(BINDING_ID, "pro3-44m");
38 * Thing ID for the AT-UHD-PRO3-66m (6x6 hdbaset matrix)
40 public static final ThingTypeUID THING_TYPE_PRO3_66M = new ThingTypeUID(BINDING_ID, "pro3-66m");
43 * Thing ID for the AT-UHD-PRO3-88m (8x8 hdbaset matrix)
45 public static final ThingTypeUID THING_TYPE_PRO3_88M = new ThingTypeUID(BINDING_ID, "pro3-88m");
48 * Thing ID for the AT-UHD-PRO3-1616m (16x16 hdbaset matrix)
50 public static final ThingTypeUID THING_TYPE_PRO3_1616M = new ThingTypeUID(BINDING_ID, "pro3-1616m");
53 * Thing ID for the AT-PRO3HD44M (HD 4x4 hdbaset matrix)
55 public static final ThingTypeUID THING_TYPE_PRO3HD_44M = new ThingTypeUID(BINDING_ID, "pro3-hd44m");
58 * Thing ID for the AT-PRO3HD66M (HD 6x6 hdbaset matrix)
60 public static final ThingTypeUID THING_TYPE_PRO3HD_66M = new ThingTypeUID(BINDING_ID, "pro3-hd66m");