You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following lines in arduinoledonoffble.ino are not used from what I can see:
Line 11:
#define INPUT_PIN A0
Lines 28-29:
// Writing to an analog input pin sets baseline for later input.
digitalWrite(INPUT_PIN, HIGH);
We should consider the LED to be off when the app sketch loads. Then the user gets a good experience when the LED goes on when using the example app. To do this we would remove these lines 43-44:
// Turn on LED.
digitalWrite(LED_PIN, HIGH);
The text was updated successfully, but these errors were encountered:
Or explicitly set it to LOW and comment saying so..// Aaron Sent from my BlackBerry 10 smartphone. From: Mikael KindborgSent: Monday, March 9, 2015 18:00To: evothings/evothings-examplesReply To: evothings/evothings-examplesSubject: [evothings-examples] Remove usused code from arduinoledonoffble.ino (#122)The following lines in arduinoledonoffble.ino are not used from what I can see:
Line 11:
#define INPUT_PIN A0
Lines 28-29:
// Writing to an analog input pin sets baseline for later input.
digitalWrite(INPUT_PIN, HIGH);
We should consider the LED to be off when the app sketch loads. Then the user gets a good experience when the LED goes on when using the example app. To do this we would remove these lines 43-44:
// Turn on LED.
digitalWrite(LED_PIN, HIGH);
—Reply to this email directly or view it on GitHub.
The following lines in arduinoledonoffble.ino are not used from what I can see:
Line 11:
Lines 28-29:
We should consider the LED to be off when the app sketch loads. Then the user gets a good experience when the LED goes on when using the example app. To do this we would remove these lines 43-44:
The text was updated successfully, but these errors were encountered: