-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: no matching function for call to 'OV2640Streamer::OV2640Streamer(OV2640&)' #26
Comments
Sounds a bit like a problem I had with Arduino IDE, when I copied the sketch the source catalog was not copied so the #include src/"OV2640Streamer.h" or similar failed. Does your build have OV2640Streamer.h mapped or in the path? |
Same problem here while trying to compile with Arduino ide. |
Just had this same error with |
I found the answer by placing the example folder into the root folder so the src sits in the same place where all the .h files live. I had to install some dependencies and then |
I'm using pio in VS Code here and the resolved dependency has a two params constructor which is out of sync with this repo.... Example
.pio\libdeps\esp32cam\Micro-RTSP\src\OV2640Streamer.h
|
You should not use example in this repo with the library installed by plataformio. |
I got this error by mixing files from different Micro-RTSP, by different I mean from several githubs. It was solved by deleting all the files and using just the files from this very git. |
Micro-RTSP/examples/ESP32-devcam.ino
Line 184 in 43dd876
While trying to build this example using pio, I get the following error: error: no matching function for call to 'OV2640Streamer::OV2640Streamer(OV2640&)'
platformio.ini file contents I used:
[env:esp32cam]
platform = espressif32
board = esp32cam
framework = arduino
lib_deps = Micro-RTSP, ESP8266_SSD1306
It looks like there is no constructor defined that takes only one argument - the cam object.
Please advise on how to best get past this error.
The text was updated successfully, but these errors were encountered: