Skip to content

Commit c515e30

Browse files
committed
Update readme and fix pipeline
1 parent 3e5c84d commit c515e30

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ESP32.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: ESP32
33
on:
44
workflow_dispatch:
55
push:
6+
branches:
7+
- '**'
68
paths:
79
- 'src/**'
810
- '.github/workflows/*.yml'

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![ESP32 Port](https://github.com/cnadler86/micropython-camera-API/actions/workflows/ESP32.yml/badge.svg)](https://github.com/cnadler86/micropython-camera-API/actions/workflows/ESP32.yml)
44

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.
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.
66
At the moment, this is a micropython user module, but it might get in the micropython repo in the future.
77
The API is stable, but it might change without previous announce.
88

@@ -21,9 +21,6 @@ The API is stable, but it might change without previous announce.
2121
- [Build your custom FW](#build-your-custom-fw)
2222
- [Setting up the build environment (DIY method)](#setting-up-the-build-environment-diy-method)
2323
- [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)
2724
- [Build the API](#build-the-api)
2825
- [Notes](#notes)
2926
- [Benchmark](#benchmark)
@@ -291,6 +288,7 @@ If you experience problems, visit [MicroPython external C modules](https://docs.
291288
- 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)).
292289
- The driver requires PSRAM to be installed and activated.
293290
- 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.
294292

295293
## Benchmark
296294

0 commit comments

Comments
 (0)