Skip to content
Snippets Groups Projects
Commit 00d540bf authored by rmackay9's avatar rmackay9
Browse files

ArduCopter - leds.pde - changed refrences to "motor_armed" to "motors.armed()"

parent ffd77f58
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ static void update_GPS_light(void)
static void update_motor_light(void)
{
if(motor_armed == false){
if(motors.armed() == false){
motor_light = !motor_light;
// blink
......@@ -100,7 +100,7 @@ static void clear_leds()
#if MOTOR_LEDS == 1
static void update_motor_leds(void)
{
if (motor_armed == true){
if (motors.armed()){
if (low_batt == true){
// blink rear
static bool blink = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment