소스 검색

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
 }