Skip to content

Commit 11b5191

Browse files
Fixed compiler issue on 8266 because of String usage instead of C string
1 parent 9e07451 commit 11b5191

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Software/Arduino code/OpenAstroTracker/b_setup.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ void setup() {
8787
Serial.begin(57600);
8888
//BT.begin(9600);
8989

90-
LOGV2(DEBUG_ANY, "Hello, universe, this is OAT %s!", version);
90+
LOGV2(DEBUG_ANY, "Hello, universe, this is OAT %s!", version.c_str());
9191

9292
/////////////////////////////////
9393
// ESP32

0 commit comments

Comments
 (0)