I flashed a new ESP32-CAM module with "AnnexCAM WiFi 1.41 beta 5"
I connected and put in the "slightly more complete example" of an HTML page with camera output from the Help file.
[code]
rate = 30 ' rate between each picture sample (msec)
pause 100
' set the max resolution in terms of memory
if camera.setup(10) = 0 then end
print camera.params("vflip", 1)
print camera.params("hmirror", 1)
'set at 800x600
print camera.params("framesize", 7)
pause 100
onHtmlReload setpage
gosub setpage
wait
setpage:
cls
a$ = ""
a$ = a$ + |<h2>AnnexCAM Demo mini</h2> |
a$ = a$ + |<img id='camera' src="picture" style=width:100%;height:auto;">|
html a$
jscall "set_pictimer(" + str$(rate) + ");"
return
[\code]
The following output is from the Serial Monitor:
save file: /src/showcam.bas 1
Number of program lines :22
Basic File Loaded: /src/showcam.bas
Program Running
E (582094) i2c: i2c driver install error
[E][camera.c:1049] camera_probe(): Detected camera not supported.
[E][camera.c:1249] esp_camera_init(): Camera probe failed with error 0x20004
Program Ended
Is there anything I can do to make this work?