Created
February 7, 2023 07:11
-
-
Save reefwing/5a2f14a8570f9023b918fb594fa64aea to your computer and use it in GitHub Desktop.
Print out the Arduino BOARD_NAME constant
This file contains hidden or 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
void setup() { | |
// Start Serial and wait for connection | |
Serial.begin(115200); | |
while (!Serial); | |
Serial.println(BOARD_NAME); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment