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.lghombot.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link LGHomBotConfiguration} class contains fields mapping thing configuration parameters.
20 * @author Fredrik Ahlström - Initial contribution
23 public class LGHomBotConfiguration {
26 * Constant field used in {@link org.openhab.binding.lghombot.internal.discovery.LGHomBotDiscovery} to set the
27 * configuration property during discovery. Value of
28 * this field needs to match {@link #ipAddress}
30 public static final String IP_ADDRESS = "ipAddress";
33 * IP Address (or host name) of HomBot
35 public String ipAddress = "";
38 * Port used by the HomBot
40 public int port = LGHomBotBindingConstants.DEFAULT_HOMBOT_PORT;
43 * Polling time (in seconds) to refresh state from the HomBot itself.
45 public int pollingPeriod = 3;