This commit is contained in:
CaCO3
2025-03-15 22:28:53 +01:00
parent 8d5bdda7d2
commit 95cc4501ec
2 changed files with 18 additions and 17 deletions

View File

@@ -54,7 +54,7 @@ To test it locally:
1. Install the required tools (See also [.github/workflows/build-docs.yaml](.github/workflows/build-docs.yaml)):
```
pip install --upgrade pip
pip install mkdocs mkdocs-gen-files mkdocs-awesome-pages-plugin mkdocs-material pymdown-extensions mkdocs-enumerate-headings-plugin mkdocs-redirects-plugin
pip install mkdocs mkdocs-gen-files mkdocs-awesome-pages-plugin mkdocs-material pymdown-extensions mkdocs-enumerate-headings-plugin
```
1. In the main folder of the repo, call `mkdocs serve` (and keep it running).
This will locally generate the documentation.

View File

@@ -34,7 +34,7 @@ There are several ways to collect images from your device:
1. Use the Webhook to send the raw image on each round to a dedicated server, see [Webhook](../Webhook) resp. [../Parameter `UploadImg`](Parameters/#parameter-uploadimg).
1. Another option is to pull the images periodically from `http://<IP>/img_tmp/raw.jpg`. Eg. with an external service. Below is a (Linux)-Bash script to do it:
```bash
```Bash
#!/bin/bash
while [[ true ]]; do
echo "fetching value..."
@@ -62,8 +62,9 @@ There are several ways to collect images from your device:
sleep 60
done
```
## Use prepared images
See the selection below with prepared images.
Instead of recoding your own images, you can use one of the selections of prepared images below.
## How does it work
The Demo Mode tries to interfere as less as possible with the normal behavior. Whenever a Cam framebuffer gets taken (`esp_camera_fb_get()`), it replaces the framebuffer with the image from the SD card.