Skip to content

Commit f534dfd

Browse files
committed
Some tweaks
1 parent bb84db0 commit f534dfd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/UnitUnified/PlotToSerial/main/PlotToSerial.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ void setup()
6060
M5_LOGI("M5UnitUnified has been begun");
6161
M5_LOGI("%s", Units.debugInfo().c_str());
6262
#if defined(USING_UNIT_CARDKB)
63-
M5_LOGI("Hardware:%02X Firmware:%02X", unit.hardwareType(), unit.firmwareVersion());
63+
M5.Log.printf("Hardware:%02X Firmware:%02X\n", unit.hardwareType(), unit.firmwareVersion());
6464
#endif
6565
#if defined(USING_UNIT_FACES_QWERTY)
66-
M5_LOGI("FacesType:%02X Firmware:%02X", unit.facesType(), unit.firmwareVersion());
66+
M5.Log.printf("FacesType:%02X Firmware:%02X\n", unit.facesType(), unit.firmwareVersion());
6767
#endif
6868
lcd.fillScreen(TFT_DARKGREEN);
6969

examples/UnitUnified/SimpleDisplay/main/SimpleDisplay.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ void setup()
7070
M5_LOGI("M5UnitUnified has been begun");
7171
M5_LOGI("%s", Units.debugInfo().c_str());
7272
#if defined(USING_UNIT_CARDKB)
73-
M5_LOGI("Hardware:%02X Firmware:%02X", unit.hardwareType(), unit.firmwareVersion());
73+
M5.Log.printf("Hardware:%02X Firmware:%02X\n", unit.hardwareType(), unit.firmwareVersion());
7474
#endif
7575
#if defined(USING_UNIT_FACES_QWERTY)
76-
M5_LOGI("FacesType:%02X Firmware:%02X", unit.facesType(), unit.firmwareVersion());
76+
M5.Log.printf("FacesType:%02X Firmware:%02X\n", unit.facesType(), unit.firmwareVersion());
7777
#endif
7878

7979
lcd.setFont(&fonts::AsciiFont8x16);

0 commit comments

Comments
 (0)