int ledPin = 2;
int buttonPin = 3;
//global variables
int toggleState;
int lastButtonState;
long unsigned int lastPress;
int debounceTime = 10;
void setup() {
// put your setup code here, to run once:
pinMode(ledPin, OUTPUT);
pinMode(buttonPin, IN)
}
void loop() {
// put your main code here, to run repeatedly:
}