Skip to content

Commit 89b1e1f

Browse files
committed
mod: added variant
1 parent 11f1877 commit 89b1e1f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

examples/ScienceJournal/ScienceJournal.ino

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,12 @@ void setup(){
4949
String address = BLE.address();
5050

5151
address.toUpperCase();
52-
53-
name = "ScienceKit - ";
52+
#ifdef ARDUINO_NANO_RP2040_CONNECT
53+
name = "ScienceKit R3 - ";
54+
#endif
55+
#ifdef ESP32
56+
name = "ScienceKit - ";
57+
#endif
5458
name += address[address.length() - 5];
5559
name += address[address.length() - 4];
5660
name += address[address.length() - 2];

0 commit comments

Comments
 (0)