chore: snapshot before shared RS485 bus integration

This commit is contained in:
2026-07-22 15:36:04 +01:00
parent ef02e5c5f5
commit 2a803fcef1
167 changed files with 5749 additions and 1128 deletions

0
components/led/CMakeLists.txt Executable file → Normal file
View File

0
components/led/include/led.h Executable file → Normal file
View File

0
components/led/include/ledc_driver.h Executable file → Normal file
View File

4
components/led/src/led.c Executable file → Normal file
View File

@@ -234,7 +234,7 @@ static void led_apply_state_mode(evse_state_event_t state)
{
case EVSE_STATE_EVENT_IDLE:
// IDLE → verde fixo (claro e visível)
led_apply_pattern(LED_ID_BLUE, LED_PATTERN_ON);
led_apply_pattern(LED_ID_GREEN, LED_PATTERN_ON);
break;
case EVSE_STATE_EVENT_WAITING:
@@ -249,7 +249,7 @@ static void led_apply_state_mode(evse_state_event_t state)
case EVSE_STATE_EVENT_FAULT:
// FAULT → vermelho a piscar rápido
led_apply_pattern(LED_ID_BLUE, LED_PATTERN_BLINK_FAST);
led_apply_pattern(LED_ID_RED, LED_PATTERN_BLINK_FAST);
break;
default:

0
components/led/src/ledc_driver.c Executable file → Normal file
View File