浏览代码

digital write syntax fix

Steve Borenstein 3 年之前
父节点
当前提交
7e9bed3f42
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      RemoteIDModule/RemoteIDModule.ino

+ 1 - 1
RemoteIDModule/RemoteIDModule.ino

@@ -259,7 +259,7 @@ void set_output_led(uint32_t _now) {
     }
 #else
     // Default LED Behavior
-    digitalWrite(arm_check_ok?!STATUS_LED_ON:STATUS_LED_ON);
+    digitalWrite(PIN_STATUS_LED,arm_check_ok?!STATUS_LED_ON:STATUS_LED_ON);
 #endif // LED_MODE_FLASH
 #endif // PIN_STATUS_LED
 }