Skip to content

Instantly share code, notes, and snippets.

@guglielmino
Created October 14, 2017 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guglielmino/5bbcd8a29085fb4aa5b703621e0ac8d5 to your computer and use it in GitHub Desktop.
Save guglielmino/5bbcd8a29085fb4aa5b703621e0ac8d5 to your computer and use it in GitHub Desktop.
void int_func()
{
Serial.write("Button pressed");
}
void setup() {
Serial.begin(115200);
pinMode(0, INPUT_PULLUP);
attachInterrupt(0, int_func, FALLING);
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment