]> git.basschouten.com Git - openhab-addons.git/blob
ba773c3cc3394cf7aa6dd782eecd285437f545f1
[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.heliosventilation.internal;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link HeliosVentilationConfiguration} class contains fields mapping thing configuration parameters.
19  *
20  * @author Raphael Mack - Initial contribution
21  */
22 @NonNullByDefault
23 public class HeliosVentilationConfiguration {
24
25     /**
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.
28      */
29     public String serialPort = "";
30
31     /**
32      * The Panel Poll Period. Default is 60 sec. = 1 minute;
33      */
34     public int pollPeriod = 60;
35 }