From abbe1bbdaa086bd9b181da52a2e21346e6881f1e Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 20 Dec 2020 10:49:10 -0500 Subject: [PATCH] fixed Pro Micro but with LED staying on --- arduino/Payload_BME280_MPU6050_XS.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino/Payload_BME280_MPU6050_XS.ino b/arduino/Payload_BME280_MPU6050_XS.ino index fca1fd64..342150ed 100644 --- a/arduino/Payload_BME280_MPU6050_XS.ino +++ b/arduino/Payload_BME280_MPU6050_XS.ino @@ -261,6 +261,6 @@ void blink(int length) #if defined __AVR_ATmega32U4__ digitalWrite(RXLED, HIGH); // set the RX LED OFF - TXLED1; //TX LED macro to turn LED ON + TXLED0; //TX LED is not tied to a normally controlled pin so a macro is needed, turn LED OFF #endif }