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
const int LED=9; | |
const int BUTTON1=2; | |
const int BUTTON2=3; | |
const String CODE = "ABAB"; | |
String rec = ""; | |
String lastRec = ""; | |
boolean lastButton1 = LOW; | |
boolean currentButton1 = LOW; |