Skip to content

Commit 8cf241d

Browse files
authored
Merge pull request #25 from Abandon-ht/dev
Dev
2 parents d47efb1 + 7d8a8ef commit 8cf241d

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

examples/YOLO/YOLO_CoreS3.ino renamed to examples/YOLO_CoreS3/YOLO_CoreS3.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ DetectionResult parseDetection(String& jsonStr)
7474
JsonDocument doc;
7575
deserializeJson(doc, jsonStr);
7676
JsonObject obj = doc.as<JsonObject>();
77-
USBSerial.println(jsonStr);
7877
if (obj["bbox"].is<JsonArray>() && obj["class"].is<const char*>() && obj["confidence"].is<const char*>()) {
7978
detection.class_name = obj["class"].as<const char*>();
8079
detection.confidence = atof(obj["confidence"].as<const char*>());

examples/YOLO/YOLO_UVC.ino renamed to examples/YOLO_UVC/YOLO_UVC.ino

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ void setup()
2828
M5.Display.setTextScroll(true);
2929

3030
/* Init module serial port */
31-
// int rxd = 16, txd = 17; // Basic
32-
// int rxd = 13, txd = 14; // Core2
33-
// int rxd = 18, txd = 17; // CoreS3
3431
int rxd = M5.getPin(m5::pin_name_t::port_c_rxd);
3532
int txd = M5.getPin(m5::pin_name_t::port_c_txd);
3633
Serial2.begin(115200, SERIAL_8N1, rxd, txd);
@@ -123,6 +120,4 @@ void loop()
123120
/* Clear handled messages */
124121
module_llm.msg.clearMsg("yolo_setup");
125122
module_llm.msg.responseMsgList.clear();
126-
127-
// usleep(500000);
128123
}

0 commit comments

Comments
 (0)