We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18dc8a9 commit a7d46efCopy full SHA for a7d46ef
examples/ScienceJournal/ScienceJournal.ino
@@ -49,8 +49,12 @@ void setup(){
49
String address = BLE.address();
50
51
address.toUpperCase();
52
-
53
- name = "ScienceKit - ";
+ #ifdef ARDUINO_NANO_RP2040_CONNECT
+ name = "ScienceKit R3 - ";
54
+ #endif
55
+ #ifdef ESP32
56
+ name = "ScienceKit - ";
57
58
name += address[address.length() - 5];
59
name += address[address.length() - 4];
60
name += address[address.length() - 2];
0 commit comments