You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project aims to support various cameras (e.g. OV2640, OV5640) on different MicroPython ports, starting with the ESP32 port. The project implements a general API, has precompiled FW images and supports a lot of cameras out of the box.
5
+
This project aims to support various cameras (e.g. OV2640, OV5640) on different MicroPython ports, starting with the ESP32 port. The project implements a general API, has precompiled FW images and supports a lot of cameras out of the box. Defaults are set to work with the OV2640.
6
6
At the moment, this is a micropython user module, but it might get in the micropython repo in the future.
7
7
The API is stable, but it might change without previous announce.
8
8
@@ -21,9 +21,6 @@ The API is stable, but it might change without previous announce.
21
21
-[Build your custom FW](#build-your-custom-fw)
22
22
-[Setting up the build environment (DIY method)](#setting-up-the-build-environment-diy-method)
23
23
-[Add camera configurations to your board (optional, but recommended)](#add-camera-configurations-to-your-board-optional-but-recommended)
24
-
-[Supported camera models](#supported-camera-models)
25
-
-[For unsupported camera models](#for-unsupported-camera-models)
26
-
-[Customize additional camera settings](#customize-additional-camera-settings)
27
24
-[Build the API](#build-the-api)
28
25
-[Notes](#notes)
29
26
-[Benchmark](#benchmark)
@@ -291,6 +288,7 @@ If you experience problems, visit [MicroPython external C modules](https://docs.
291
288
- If your target board is a ESP32, I recommend using IDF >= 5.2, since older versions may lead to IRAM overflow during build. Alternatively you can modify your sdkconfig-file (see [issue #1](https://github.com/cnadler86/micropython-camera-API/issues/1)).
292
289
- The driver requires PSRAM to be installed and activated.
293
290
- Most of the precompiled firmware images are untested, but the only difference between them are the target architecture and pin definitions, so they should work out of the box. If not, please raise an issue.
291
+
- Every sensor has its own ranges and settings, please consult the respective specifications.
0 commit comments