initial commit for ecowitt binding

This commit is contained in:
Av3m
2022-01-08 21:26:34 +01:00
committed by Thomas Vogl
parent 5ae6572315
commit 13b4080e4a
11 changed files with 571 additions and 148 deletions

View File

@@ -0,0 +1,25 @@
/**
* Copyright (c) 2010-2021 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package interfaces;
import org.openhab.core.thing.Channel;
import org.openhab.core.thing.ChannelUID;
import org.openhab.core.types.State;
/**
* @author Av3m - Initial contribution
*/
public interface StateUpdater {
Channel getChannel(String channelName);
void updateState(ChannelUID uid, State state);
}