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.heliosventilation.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link HeliosVentilationConfiguration} class contains fields mapping thing configuration parameters.
20 * @author Raphael Mack - Initial contribution
23 public class HeliosVentilationConfiguration {
26 * Port name for a serial connection to RS485 bus. Valid values are e.g. COM1 for Windows and /dev/ttyS0 or
27 * /dev/ttyUSB0 for Linux.
29 public String serialPort = "";
32 * The Panel Poll Period. Default is 60 sec. = 1 minute;
34 public int pollPeriod = 60;