Обновление платы на V2

This commit is contained in:
cfif 2026-05-14 12:08:33 +03:00
parent 5107950ce0
commit fa700ee9ec
1 changed files with 2 additions and 2 deletions

View File

@ -81,9 +81,9 @@ static void setActivePercent(tPwmFlagchip *env, uint8_t percent) {
// Ограничения
if (percent > 90)
percent = 90;
percent = 95;
if (percent < 10)
percent = 10;
percent = 5;
// Для active LOW (bActiveHigh = false) нужна инверсия
// 10% → 90%, 20% → 80% и т.д.