]> git.basschouten.com Git - openhab-addons.git/blob
0018681d7a18a499267d95609ada2bcb2a1d7f45
[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.satel.internal.types;
14
15 /**
16  * Available object types:
17  * <ul>
18  * <li>ZONE - various kinds of devices connected to inputs, like reed switches, PIRs, etc</li>
19  * <li>PARTITION - group of zones and outputs</li>
20  * <li>OUTPUT - outputs to various devices like sirens, relays, etc.</li>
21  * <li>DOORS - inputs connected to reed switches mounted on doors</li>
22  * <li>TROUBLE - indication of a particular trouble</li>
23  * <li>TROUBLE_MEMORY - particular trouble state latched</li>
24  * </ul>
25  *
26  * @author Krzysztof Goworek - Initial contribution
27  */
28 public enum ObjectType {
29     ZONE,
30     PARTITION,
31     OUTPUT,
32     DOOR,
33     TROUBLE,
34     TROUBLE_MEMORY
35 }