]> git.basschouten.com Git - openhab-addons.git/blob
194517dad0aadf7b02b38367fe8cfd5e29d281e2
[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.discovery.project;
14
15 /**
16  * Type of output device in a Lutron system.
17  *
18  * @author Allan Tong - Initial contribution
19  * @author Bob Adair - Added additional output types
20  */
21 public enum OutputType {
22     AUTO_DETECT,
23     CCO_MAINTAINED,
24     CCO_PULSED,
25     CEILING_FAN_TYPE,
26     DALI,
27     ECO_SYSTEM_FLUORESCENT,
28     ELV,
29     FLUORESCENT_DB,
30     INC,
31     MLV,
32     MOTOR,
33     NON_DIM,
34     NON_DIM_ELV,
35     NON_DIM_INC,
36     RELAY_LIGHTING,
37     SHEER_BLIND,
38     SYSTEM_SHADE,
39     VENETIAN_BLIND,
40     ZERO_TO_TEN,
41 }