]> git.basschouten.com Git - openhab-addons.git/blob
df46c5f2c2959d1b5df15c0cfeb48a35891c0409
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.nibeheatpump.internal.protocol;
14
15 import java.nio.ByteBuffer;
16
17 /**
18  * The {@link NibeHeatPumpProtocolContext} define interface for Nibe communication protocol context.
19  *
20  *
21  * @author Pauli Anttila - Initial contribution
22  */
23 public interface NibeHeatPumpProtocolContext {
24     ByteBuffer buffer();
25
26     ByteBuffer msg();
27
28     NibeHeatPumpProtocolStates state();
29
30     void state(NibeHeatPumpProtocolStates state);
31
32     void sendAck();
33
34     void sendNak();
35
36     void sendWriteMsg();
37
38     void sendReadMsg();
39
40     void msgReceived(byte[] data);
41 }