blob: 8978be729d5a903823b7f736eece32f9c983e646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#define LEDPIN 13
#define BUTTONPIN 2
#define DEBOUNCE 1
ISR(INT0_vect) {
static bool state = 0;
// Toggle LEDPIN
digitalWrite(LEDPIN, state);
state = !state;
/*
for(long i = 0; i < 1000; i++) {
Serial.print("Hej ");
Serial.println(i);
}
*/
}
void setup() {
// We need to talk
Serial.begin(9600);
// Setup pinmodes
pinMode(LEDPIN, OUTPUT);
pinMode(BUTTONPIN, INPUT_PULLUP);
// Attach a interrupt on the button
//attachInterrupt(digitalPinToInterrupt(BUTTONPIN), testy, RISING);
// Enable interrupt 0
EIMSK |= 1 << INT0;
// Eable on rising edge
EICRA |= (1 << ISC01) | (1 << ISC00);
}
void loop() {
static int i = 0;
//Serial.print("Cool stuff happening now ");
//Serial.println(i++);
}
|