mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-14 19:01:12 +01:00
9 lines
268 B
C++
9 lines
268 B
C++
|
|
#include "RealTimeRunDataCommand.h"
|
||
|
|
|
||
|
|
RealTimeRunDataCommand::RealTimeRunDataCommand(uint64_t target_address, uint64_t router_address, time_t time)
|
||
|
|
: MultiDataCommand(target_address, router_address)
|
||
|
|
{
|
||
|
|
setTime(time);
|
||
|
|
setDataType(0x0b);
|
||
|
|
setTimeout(200);
|
||
|
|
}
|