From 73ad670eb012ef87c52fb6086ecef8325bc6bde0 Mon Sep 17 00:00:00 2001 From: LittleMouse Date: Wed, 11 Jun 2025 10:31:46 +0800 Subject: [PATCH] fix some print bug --- examples/{YOLO => YOLO_CoreS3}/YOLO_CoreS3.ino | 1 - examples/{YOLO => YOLO_UVC}/YOLO_UVC.ino | 0 2 files changed, 1 deletion(-) rename examples/{YOLO => YOLO_CoreS3}/YOLO_CoreS3.ino (99%) rename examples/{YOLO => YOLO_UVC}/YOLO_UVC.ino (100%) diff --git a/examples/YOLO/YOLO_CoreS3.ino b/examples/YOLO_CoreS3/YOLO_CoreS3.ino similarity index 99% rename from examples/YOLO/YOLO_CoreS3.ino rename to examples/YOLO_CoreS3/YOLO_CoreS3.ino index 7214353..0e28abc 100644 --- a/examples/YOLO/YOLO_CoreS3.ino +++ b/examples/YOLO_CoreS3/YOLO_CoreS3.ino @@ -74,7 +74,6 @@ DetectionResult parseDetection(String& jsonStr) JsonDocument doc; deserializeJson(doc, jsonStr); JsonObject obj = doc.as(); - USBSerial.println(jsonStr); if (obj["bbox"].is() && obj["class"].is() && obj["confidence"].is()) { detection.class_name = obj["class"].as(); detection.confidence = atof(obj["confidence"].as()); diff --git a/examples/YOLO/YOLO_UVC.ino b/examples/YOLO_UVC/YOLO_UVC.ino similarity index 100% rename from examples/YOLO/YOLO_UVC.ino rename to examples/YOLO_UVC/YOLO_UVC.ino