Finished makefile and added .gitignore to avoid tracking arduino build folder.

This commit is contained in:
Ricardo
2018-01-24 23:34:36 +00:00
parent b8bebcb4c6
commit 1a1cdfc8ab
3 changed files with 12 additions and 120 deletions

View File

@@ -3,8 +3,8 @@
By Jony Silva
Wed 24 Jan 23:11:25 GMT 2018
*********************************************************************/
// Libraries to be included
@@ -124,6 +124,8 @@ void setup() { // BEGIN SETUP ------------------------------------
ISR(TIMER1_COMPA_vect) // Here we chose between the blinker sequence
{ // or to show the temperature on the LEDs
digitalWrite(led1, !digitalRead(led1));
if (!rUP && menuState == 1) {
menuState = 1;
@@ -312,3 +314,4 @@ void write_serial (void) {
display.display();
}