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.bluetooth.daikinmadoka.internal.model.commands;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * Command responses that the listener must implement
20 * @author Benjamin Lafois - Initial contribution
24 public interface ResponseListener {
26 public void receivedResponse(byte[] bytes);
28 public void receivedResponse(GetVersionCommand command);
30 public void receivedResponse(GetFanspeedCommand command);
32 public void receivedResponse(GetOperationmodeCommand command);
34 public void receivedResponse(GetPowerstateCommand command);
36 public void receivedResponse(GetSetpointCommand command);
38 public void receivedResponse(GetIndoorOutoorTemperatures command);
40 public void receivedResponse(SetPowerstateCommand command);
42 public void receivedResponse(SetSetpointCommand command);
44 public void receivedResponse(SetOperationmodeCommand command);
46 public void receivedResponse(SetFanspeedCommand command);
48 public void receivedResponse(GetOperationHoursCommand command);
50 public void receivedResponse(GetEyeBrightnessCommand command);
52 public void receivedResponse(SetEyeBrightnessCommand command);
54 public void receivedResponse(GetCleanFilterIndicatorCommand command);