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.amazondashbutton.internal.config;
16 * The configuration of the Amazon Dash Button
18 * @author Oliver Libutzki - Initial contribution
21 public class AmazonDashButtonConfig {
24 * The MAC address of the Amazon Dash Button
26 public String macAddress;
29 * The network interface which receives the packets of the Amazon Dash Button
31 public String pcapNetworkInterfaceName;
34 * Often a single button press is recognized multiple times. You can specify how long any further detected button
35 * pressed should be ignored after one click is handled (in ms).
37 public Integer packetInterval;