Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save futureshocked/8f07413d051283792d350330bf186717 to your computer and use it in GitHub Desktop.
Save futureshocked/8f07413d051283792d350330bf186717 to your computer and use it in GitHub Desktop.
An array of bool
boolean dip_switch[4];
dip_switch[0] = digitalRead(3);
dip_switch[1] = digitalRead(4);
dip_switch[2] = digitalRead(5);
dip_switch[3] = digitalRead(6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment