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.paradoxalarm.internal.handlers;
15 import java.time.LocalDateTime;
18 * The {@link PanelConfiguration} Paradox Panel handler configuration.
20 * @author Konstantin Polihronov - Initial contribution
22 public class PanelConfiguration extends EntityConfiguration {
23 private double vdcVoltage;
24 private double dcVoltage;
25 private double batteryVoltage;
26 private LocalDateTime panelTime;
28 public double getVdcVoltage() {
32 public void setAcVoltage(double vdcVoltage) {
33 this.vdcVoltage = vdcVoltage;
36 public double getDcVoltage() {
40 public void setDcVoltage(double dcVoltage) {
41 this.dcVoltage = dcVoltage;
44 public double getBatteryVoltage() {
45 return batteryVoltage;
48 public void setBatteryVoltage(double batteryVoltage) {
49 this.batteryVoltage = batteryVoltage;
52 public LocalDateTime getPanelTime() {
56 public void setPanelTime(LocalDateTime panelTime) {
57 this.panelTime = panelTime;