]> git.basschouten.com Git - openhab-addons.git/blob
83234e8c25daa5af4ec96c5ebb3609242a429653
[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.digitalstrom.internal.lib;
14
15 /**
16  * The {@link GeneralLibConstance} contains all relevant library constants.
17  *
18  * @author Michael Ochel - Initial contribution
19  * @author Matthias Siegele - Initial contribution
20  */
21 public class GeneralLibConstance {
22
23     /**
24      * digitalSTROMs broadcast zone id.
25      */
26     public static final int BROADCAST_ZONE_GROUP_ID = 0;
27
28     /**
29      * digitalSTROMs broadcast zone string by query response.
30      */
31     public static final String QUERY_BROADCAST_ZONE_STRING = "zone0";
32
33     /**
34      * Scene-Array index for the scene value.
35      */
36     public static final int SCENE_ARRAY_INDEX_VALUE = 0;
37     /**
38      * Scene-Array index for the scene value.
39      */
40     public static final int SCENE_ARRAY_INDEX_ANGLE = 1;
41
42     /**
43      * The highest read out priority for
44      * {@link org.openhab.binding.digitalstrom.internal.lib.sensorjobexecutor.sensorjob.SensorJob}s.
45      */
46     public static final int HIGHEST_READ_OUT_PRIORITY = 0;
47 }