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.dscalarm.internal.config;
16 * Configuration class for the DSC IT100 RS232 Serial interface bridge, used to connect to the DSC Alarm system.
18 * @author Russell Stephens - Initial contribution
21 public class IT100BridgeConfiguration {
23 // IT-100 Bridge Thing constants
24 public static final String SERIAL_PORT = "serialPort";
25 public static final String BAUD = "baud";
26 public static final String POLL_PERIOD = "pollPeriod";
29 * DSC IT100 port name for a serial connection. Valid values are e.g. COM1 for Windows and /dev/ttyS0 or
30 * /dev/ttyUSB0 for Linux.
32 public String serialPort;
35 * DSC IT100 baud rate for serial connections. Valid values are 9600 (default), 19200, 38400, 57600, and 115200.
40 * The Panel Poll Period. Can be set in range 1-15 minutes. Default is 1 minute;
42 public Integer pollPeriod;