2 * Copyright (c) 2010-2023 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.digitalstrom.internal.lib;
16 * The {@link GeneralLibConstance} contains all relevant library constants.
18 * @author Michael Ochel - Initial contribution
19 * @author Matthias Siegele - Initial contribution
21 public class GeneralLibConstance {
24 * digitalSTROMs broadcast zone id.
26 public static final int BROADCAST_ZONE_GROUP_ID = 0;
29 * digitalSTROMs broadcast zone string by query response.
31 public static final String QUERY_BROADCAST_ZONE_STRING = "zone0";
34 * Scene-Array index for the scene value.
36 public static final int SCENE_ARRAY_INDEX_VALUE = 0;
38 * Scene-Array index for the scene value.
40 public static final int SCENE_ARRAY_INDEX_ANGLE = 1;
43 * The highest read out priority for
44 * {@link org.openhab.binding.digitalstrom.internal.lib.sensorjobexecutor.sensorjob.SensorJob}s.
46 public static final int HIGHEST_READ_OUT_PRIORITY = 0;