xgarb
xgarb
Hi, Do you know how I can stop the speech recognition once I have what I need? I'm doing a multi-factor auth system including a spoken pass phrase. I need...
Maybe it's a problem elsewhere. With the code below the text on the LCD 'Before voice' is instant. The 'After voice' is slowly written across the screen. ``` #include #include...
I have a tutorial on my blog for this: https://robotzero.one/esp32-camera-module/ something there might help.
Face detection and recognition aren't working in 1.0.2 of the ESP32 board libraries. You might need to roll back to 1.0..1. Tutorial under **Adding or Updating the ESP32 Range in...
The ESP-EYE definitions can be found here: https://github.com/espressif/arduino-esp32/blob/master/libraries/ESP32/examples/Camera/CameraWebServer/camera_pins.h You also need this in void setup() #if defined(CAMERA_MODEL_ESP_EYE) pinMode(13, INPUT_PULLUP); pinMode(14, INPUT_PULLUP); #endif If you look at the differences in the...
Above // camera init same as here: https://github.com/espressif/arduino-esp32/blob/master/libraries/ESP32/examples/Camera/CameraWebServer/CameraWebServer.ino