fix P1 limit pin in enum

This commit is contained in:
2025-08-08 18:42:56 +02:00
parent bbf604e1a8
commit a79c4f8ca7
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
#pragma once
enum RO // relay output channels
{

View File

@@ -16,7 +16,7 @@ namespace commands
{"P2", RO::P2},
{"P3", RO::P3},
{"P4", RO::P4},
{"UNLIMITED", RO::P1}};
{"UNLIMITED", RO::RO_MAX}};
static const std::map<const std::string, uint8_t> c_heatingValveMap = {{"pump", RO::PUMP_HT},
{"first", RO::FST_FLOOR},