mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-11 09:20:34 +01:00
13 lines
356 B
C++
13 lines
356 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include "HM_Abstract.h"
|
|
|
|
class HM_4CH : public HM_Abstract {
|
|
public:
|
|
explicit HM_4CH(HoymilesRadio* radio, const uint64_t serial);
|
|
static bool isValidSerial(const uint64_t serial);
|
|
String typeName();
|
|
const byteAssign_t* getByteAssignment();
|
|
uint8_t getByteAssignmentSize();
|
|
}; |