Camera not initialised Error - Object detection with ESP32 32 s3 sense xiao

I am working on a bb-8 project.

error:
ERR: Camera is not initialized
Failed to capture image

my esp32 s2 sense is connected with the camera, even the webserver code works fine so the camera is fine

tutorial I followed:

Hi @Piyush1234

Are you using a different board? Espressif ESP-EYE | Documentation

  • Pin Configuration: Double-check that the camera’s pins are correctly configured in your code. The ESP32 series can have varying pin layouts depending on the specific camera module you’re using. Verify that the pin assignments match your hardware setup.
  • Camera Initialization: Ensure that the camera initialization code is being called before you attempt to capture an image. This typically involves a function that initializes the camera, such as esp_camera_init(), which should return a success status if everything is configured properly.

Best

Eoin