初始化提交
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* This example shows how set GPIO interrupts on a seesaw.
|
||||
*/
|
||||
|
||||
#include "Adafruit_seesaw.h"
|
||||
|
||||
//connect the interrupt pin on the seesaw (pin 8 on samd09 breakout) to this pin on your arduino
|
||||
#define INT_PIN 3
|
||||
|
||||
//the interrupt will fire when this pin on the seesaw changes state
|
||||
#define SCAN_PIN 9
|
||||
|
||||
Adafruit_seesaw ss;
|
||||
|
||||
uint32_t mask = ((uint32_t)0b1 << SCAN_PIN);
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
|
||||
if(!ss.begin()){
|
||||
Serial.println("ERROR!");
|
||||
while(1);
|
||||
}
|
||||
else Serial.println("seesaw started");
|
||||
|
||||
ss.pinModeBulk(mask, INPUT_PULLUP);
|
||||
ss.setGPIOInterrupts(mask, 1);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if(!digitalRead(INT_PIN)){
|
||||
Serial.print("interrupt fired! pin state: ");
|
||||
Serial.println(ss.digitalRead(SCAN_PIN));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user