]> git.basschouten.com Git - openhab-addons.git/blob
ae25f3b94cf898d6ac7a9c0f0dbe226072f7c590
[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.paradoxalarm.internal.handlers;
14
15 import java.time.LocalDateTime;
16
17 /**
18  * The {@link PanelConfiguration} Paradox Panel handler configuration.
19  *
20  * @author Konstantin Polihronov - Initial contribution
21  */
22 public class PanelConfiguration extends EntityConfiguration {
23     private double vdcVoltage;
24     private double dcVoltage;
25     private double batteryVoltage;
26     private LocalDateTime panelTime;
27
28     public double getVdcVoltage() {
29         return vdcVoltage;
30     }
31
32     public void setAcVoltage(double vdcVoltage) {
33         this.vdcVoltage = vdcVoltage;
34     }
35
36     public double getDcVoltage() {
37         return dcVoltage;
38     }
39
40     public void setDcVoltage(double dcVoltage) {
41         this.dcVoltage = dcVoltage;
42     }
43
44     public double getBatteryVoltage() {
45         return batteryVoltage;
46     }
47
48     public void setBatteryVoltage(double batteryVoltage) {
49         this.batteryVoltage = batteryVoltage;
50     }
51
52     public LocalDateTime getPanelTime() {
53         return panelTime;
54     }
55
56     public void setPanelTime(LocalDateTime panelTime) {
57         this.panelTime = panelTime;
58     }
59 }