10 lines
330 B
C++
10 lines
330 B
C++
#pragma once
|
|
|
|
#include "MultiDataCommand.h"
|
|
|
|
class DevInfoSampleCommand : public MultiDataCommand {
|
|
public:
|
|
explicit DevInfoSampleCommand(uint64_t target_address = 0, uint64_t router_address = 0, time_t time = 0);
|
|
|
|
virtual bool handleResponse(InverterAbstract* inverter, fragment_t fragment[], uint8_t max_fragment_id);
|
|
}; |