]> git.basschouten.com Git - openhab-addons.git/blob
69ed677d1945632fbb679364be7027e7e4f6f7d5
[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.sensorcommunity.internal.utils;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link Constants} Constants used in this binding
19  *
20  * @author Bernd Weymann - Initial contribution
21  */
22 @NonNullByDefault
23 public class Constants {
24     public static final String EMPTY = "";
25     public static final String P1 = "P1";
26     public static final String P2 = "P2";
27
28     public static final String TEMPERATURE = "temperature";
29     public static final String HUMIDITY = "humidity";
30     public static final String PRESSURE = "pressure";
31     public static final String PRESSURE_SEALEVEL = "pressure_at_sealevel";
32
33     public static final String NOISE_EQ = "noise_LAeq";
34     public static final String NOISE_MIN = "noise_LA_min";
35     public static final String NOISE_MAX = "noise_LA_max";
36     public static final int UNDEF = -1;
37 }