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.onewire.internal.device;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.onewire.internal.OwException;
17 import org.openhab.binding.onewire.internal.SensorId;
18 import org.openhab.binding.onewire.internal.handler.OwBaseThingHandler;
19 import org.openhab.binding.onewire.internal.handler.OwserverBridgeHandler;
22 * The {@link DS2401} class defines a DS2401 (iButton) device
24 * @author Jan N. Klug - Initial contribution
27 public class DS2401 extends AbstractOwDevice {
28 public DS2401(SensorId sensorId, OwBaseThingHandler callback) {
29 super(sensorId, callback);
34 public void configureChannels() throws OwException {
38 public void refresh(OwserverBridgeHandler bridgeHandler, Boolean forcedRefresh) throws OwException {