]> git.basschouten.com Git - openhab-addons.git/blob
bda46511edfa5ea7fa0689f80e02d79788e9dfad
[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.somneo.internal.model;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.core.library.types.QuantityType;
17 import org.openhab.core.library.unit.SIUnits;
18 import org.openhab.core.library.unit.Units;
19 import org.openhab.core.types.State;
20
21 import com.google.gson.annotations.SerializedName;
22
23 /**
24  * This class represents the sensor state from the API.
25  *
26  * @author Michael Myrcik - Initial contribution
27  */
28 @NonNullByDefault
29 public class SensorData {
30
31     @SerializedName("mslux")
32     private float currentIlluminance;
33
34     @SerializedName("mstmp")
35     private float currentTemperature;
36
37     @SerializedName("msrhu")
38     private float currentHumidity;
39
40     @SerializedName("mssnd")
41     private int currentNoise;
42
43     public State getCurrentIlluminance() {
44         return new QuantityType<>(currentIlluminance, Units.LUX);
45     }
46
47     public State getCurrentTemperature() {
48         return new QuantityType<>(currentTemperature, SIUnits.CELSIUS);
49     }
50
51     public State getCurrentHumidity() {
52         return new QuantityType<>(currentHumidity, Units.PERCENT);
53     }
54
55     public State getCurrentNoise() {
56         return new QuantityType<>(currentNoise, Units.DECIBEL);
57     }
58 }