This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * created by Rui Santos, http://randomnerdtutorials.com | |
| * Temperature Sensor Displayed on 4 Digit 7 segment common anode | |
| * 2013 | |
| */ | |
| const int digitPins[4] = { | |
| 4,5,6,7}; //4 common anode pins of the display | |
| const int clockPin = 11; //74HC595 Pin 11 | |
| const int latchPin = 12; //74HC595 Pin 12 | |
| const int dataPin = 13; //74HC595 Pin 14 |