Increase command timeouts to support inverters with 6 channels and more phases

This commit is contained in:
Thomas Basler 2023-03-30 23:35:05 +02:00
parent 1614b2ad2d
commit 6ea34b331d
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ AlarmDataCommand::AlarmDataCommand(uint64_t target_address, uint64_t router_addr
{ {
setTime(time); setTime(time);
setDataType(0x11); setDataType(0x11);
setTimeout(600); setTimeout(750);
} }
String AlarmDataCommand::getCommandName() String AlarmDataCommand::getCommandName()

View File

@ -10,7 +10,7 @@ RealTimeRunDataCommand::RealTimeRunDataCommand(uint64_t target_address, uint64_t
{ {
setTime(time); setTime(time);
setDataType(0x0b); setDataType(0x0b);
setTimeout(200); setTimeout(500);
} }
String RealTimeRunDataCommand::getCommandName() String RealTimeRunDataCommand::getCommandName()