mirror of https://github.com/ArduPilot/ardupilot
AP_Notify: fixed PixracerLED on NuttX
led_dim must be a positive number, and is not related to the led off value
This commit is contained in:
parent
ed71790945
commit
6489166996
|
@ -30,7 +30,7 @@
|
|||
extern const AP_HAL::HAL& hal;
|
||||
|
||||
PixRacerLED::PixRacerLED() :
|
||||
RGBLed(0, HAL_GPIO_LED_OFF, HAL_GPIO_LED_OFF, HAL_GPIO_LED_OFF)
|
||||
RGBLed(0, 1, 1, 1)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue