add output of opener states via gpio

This commit is contained in:
technyon
2023-04-07 17:01:17 +02:00
parent 0ae0fb6265
commit 10c662fb5f
4 changed files with 44 additions and 1 deletions

View File

@@ -157,6 +157,12 @@ String Gpio::getRoleDescription(PinRole role) const
return "Output: High when unlocked";
case PinRole::OutputHighMotorBlocked:
return "Output: High when motor blocked";
case PinRole::OutputHighRtoActive:
return "Output: High when RTO active";
case PinRole::OutputHighCmActive:
return "Output: High when CM active";
case PinRole::OutputHighRtoOrCmActive:
return "Output: High when RTO or CM active";
default:
return "Unknown";
}