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