We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47bbfbb commit cd545e2Copy full SHA for cd545e2
io.sloeber.tests/src/templates/CreateAndCompileTest/sketch.cpp
@@ -1,5 +1,16 @@
1
#include "Arduino.h"
2
3
+#ifdef ARDUINO_BOARD
4
+char mychar1[] = ARDUINO_BOARD;
5
+#endif
6
+
7
+#ifdef USB_MANUFACTURER
8
+char mychar2[] = USB_MANUFACTURER;
9
10
+#ifdef USB_PRODUCT
11
+char mychar3[] = USB_PRODUCT;
12
13
14
15
16
//The setup function is with spaces between the curly braces
0 commit comments