2 * Copyright (c) 2010-2020 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
24 public class AtlonaBindingConstants {
27 * The binding identifier for atlona
29 public static final String BINDING_ID = "atlona";
32 * Thing ID for the AT-UHD-PRO3-44m (4x4 hdbaset matrix)
34 public static final ThingTypeUID THING_TYPE_PRO3_44M = new ThingTypeUID(BINDING_ID, "pro3-44m");
37 * Thing ID for the AT-UHD-PRO3-66m (6x6 hdbaset matrix)
39 public static final ThingTypeUID THING_TYPE_PRO3_66M = new ThingTypeUID(BINDING_ID, "pro3-66m");
42 * Thing ID for the AT-UHD-PRO3-88m (8x8 hdbaset matrix)
44 public static final ThingTypeUID THING_TYPE_PRO3_88M = new ThingTypeUID(BINDING_ID, "pro3-88m");
47 * Thing ID for the AT-UHD-PRO3-1616m (16x16 hdbaset matrix)
49 public static final ThingTypeUID THING_TYPE_PRO3_1616M = new ThingTypeUID(BINDING_ID, "pro3-1616m");