1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-13 11:29:56 +03:00

implemented LED Pin PWM programming function

This commit is contained in:
Roman Lut 2023-07-29 02:10:55 +02:00
parent a55bea82b8
commit 6cfaa227cb
2 changed files with 14 additions and 1 deletions

View file

@ -55,6 +55,7 @@
#include "io/vtx.h"
#include "drivers/vtx_common.h"
#include "drivers/light_ws2811strip.h"
PG_REGISTER_ARRAY_WITH_RESET_FN(logicCondition_t, MAX_LOGIC_CONDITIONS, logicConditions, PG_LOGIC_CONDITIONS, 4);
@ -472,6 +473,17 @@ static int logicConditionCompute(
return false;
}
break;
#ifdef LED_PIN
case LOGIC_CONDITION_LED_PIN_PWM:
if (operandA >=0 && operandA <= 100) {
ledPinStartPWM((uint8_t)operandA);
} else {
ledPinStopPWM();
}
return operandA;
break;
#endif
default:
return false;