mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2026-04-21 08:33:50 +02:00
12 lines
289 B
C++
12 lines
289 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2022-2026 Thomas Basler and others
|
|
*/
|
|
#include "ParaSetCommand.h"
|
|
|
|
ParaSetCommand::ParaSetCommand(InverterAbstract* inv, const uint64_t router_address)
|
|
: CommandAbstract(inv, router_address)
|
|
{
|
|
_payload[0] = 0x52;
|
|
}
|