Created
August 20, 2024 21:23
-
-
Save futureshocked/8f07413d051283792d350330bf186717 to your computer and use it in GitHub Desktop.
An array of bool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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