rusefi/firmware/config/boards/hellen/hellen_leds_144.cpp

15 lines
202 B
C++
Raw Normal View History

2023-12-02 10:59:57 -08:00
#include "pch.h"
#include "hellen_meta.h"
2023-06-06 18:15:43 -07:00
Gpio getCommsLedPin() {
2023-09-21 08:53:32 -07:00
return H144_LED3_BLUE;
2023-06-05 00:01:37 -07:00
}
Gpio getRunningLedPin() {
2023-09-21 08:53:32 -07:00
return H144_LED2_GREEN;
2023-06-05 00:01:37 -07:00
}
Gpio getWarningLedPin() {
2023-09-21 08:53:32 -07:00
return H144_LED4_YELLOW;
2023-06-05 00:01:37 -07:00
}