]> git.basschouten.com Git - openhab-addons.git/blob
898dc8d47b6b0f81a1c41c4af0b9f93484bebbd4
[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.lutron.internal.hw;
14
15 import static org.openhab.binding.lutron.internal.LutronBindingConstants.BINDING_ID;
16
17 import org.openhab.core.thing.ThingTypeUID;
18
19 /**
20  * Defines common constants, which are used across the whole binding.
21  *
22  * @author Andrew Shilliday - Initial contribution
23  */
24 public class HwConstants {
25     public static final ThingTypeUID THING_TYPE_HWSERIALBRIDGE = new ThingTypeUID(BINDING_ID, "hwserialbridge");
26     public static final ThingTypeUID THING_TYPE_HWDIMMER = new ThingTypeUID(BINDING_ID, "hwdimmer");
27 }