By doing so, it's possible to send all packets via the sendEsbPacket method. A lot of stuff could be removed which is no more used.
11 lines
249 B
C++
11 lines
249 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include "HM_Abstract.h"
|
|
|
|
class HMT_Abstract : public HM_Abstract {
|
|
public:
|
|
explicit HMT_Abstract(HoymilesRadio* radio, uint64_t serial);
|
|
|
|
virtual bool sendChangeChannelRequest();
|
|
}; |