aboutsummaryrefslogtreecommitdiffstats
path: root/examples/exti-interrupt.cpp
diff options
context:
space:
mode:
authorAditya Gaddam <adityagaddam@gmail.com>2012-09-03 18:05:57 -0400
committerAditya Gaddam <adityagaddam@gmail.com>2012-09-03 18:05:57 -0400
commit3c0af902520b67ba2a8eb50f96a392d8070e3614 (patch)
tree4713126612d242aa6fdca0fa63674fc07671dd88 /examples/exti-interrupt.cpp
parentaec407773bbef80478941193f05fd67ce8ed49e0 (diff)
downloadlibrambutan-3c0af902520b67ba2a8eb50f96a392d8070e3614.tar.gz
librambutan-3c0af902520b67ba2a8eb50f96a392d8070e3614.zip
"Changed tabs to spaces. Changed some braces placement to match existing examples
Signed-off-by: Aditya Gaddam <adityagaddam@gmail.com>"
Diffstat (limited to 'examples/exti-interrupt.cpp')
-rw-r--r--examples/exti-interrupt.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/examples/exti-interrupt.cpp b/examples/exti-interrupt.cpp
index 06d6b6f..bc02f30 100644
--- a/examples/exti-interrupt.cpp
+++ b/examples/exti-interrupt.cpp
@@ -12,19 +12,18 @@
bool isLEDOn = false;
// Interrupt handler takes in nothing and returns nothing.
-void interruptHandler()
-{
- // Set LED
- isLEDOn = !isLEDOn;
- digitalWrite(BOARD_LED_PIN, isLEDOn);
-
- // Delay slightly for switch debouncing.
- delay(20);
+void interruptHandler() {
+ // Set LED
+ isLEDOn = !isLEDOn;
+ digitalWrite(BOARD_LED_PIN, isLEDOn);
+
+ // Delay slightly for switch debouncing.
+ delay(20);
}
// Setup pin modes and the interrupt handler
void setup() {
- pinMode(BOARD_BUTTON_PIN, INPUT);
+ pinMode(BOARD_BUTTON_PIN, INPUT);
pinMode(BOARD_LED_PIN, OUTPUT);
attachInterrupt(BOARD_BUTTON_PIN, interruptHandler, RISING);