Procházet zdrojové kódy

Update QRCodeReader.ino

Erwin Ried před 2 roky
rodič
revize
b32a609b78
1 změnil soubory, kde provedl 6 přidání a 6 odebrání
  1. 6 6
      esp32cam_marauder/QRCodeReader.ino

+ 6 - 6
esp32cam_marauder/QRCodeReader.ino

@@ -63,8 +63,8 @@ void qr_reader_setup() {
   sensor_t * s = esp_camera_sensor_get();
   s->set_framesize(s, FRAMESIZE_QVGA);
   
-  Serial.println("Configure and initialize the camera successfully.");
-  Serial.println();
+  //Serial.println("Configure and initialize the camera successfully.");
+  //Serial.println();
   /* ---------------------------------------- */
 
   /* ---------------------------------------- create "QRCodeReader_Task" using the xTaskCreatePinnedToCore() function */
@@ -85,10 +85,10 @@ void qr_reader_loop() {
 
 void QRCodeReader( void * pvParameters ){
   /* ---------------------------------------- */
-  Serial.println("QRCodeReader is ready.");
-  Serial.print("QRCodeReader running on core ");
-  Serial.println(xPortGetCoreID());
-  Serial.println();
+  Serial.println("Waiting for QR code");
+  //Serial.print("QRCodeReader running on core ");
+  //Serial.println(xPortGetCoreID());
+  //Serial.println();
   /* ---------------------------------------- */
 
   /* ---------------------------------------- Loop to read QR Code in real time. */