Deployed 38bcc2a with MkDocs version: 1.6.1

This commit is contained in:
github-actions[bot]
2025-03-15 21:10:46 +00:00
parent 6c63961f8a
commit a3ea0dae23
2 changed files with 24 additions and 26 deletions

View File

@@ -827,17 +827,15 @@
</ul>
<h2 id="collecting-images-of-your-device"><span class="enumerate-headings-plugin enumerate-heading-plugin">1.2</span> Collecting images of your device</h2>
<p>There are several ways to collect images from your device:
1. Use the <code>RawImagesLocation</code> parameter to store them directly onto your SD card, see <a href="Parameters/#parameter-rawimageslocation">Parameter <code>RawImagesLocation</code></a>
1. Use the Webhook to send the raw image on each round to a dedicated server, see <a href="Webhook">Webhook</a> resp. <a href="Parameters/#parameter-uploadimg">Parameter <code>UploadImg</code></a>.
1. Another option is to pull the images periodically from <code>http://&lt;IP&gt;/img_tmp/raw.jpg</code>. Eg. with an external service. Below is a (Linux)-Bash script to do it:</p>
<div class="language-text highlight"><pre><span></span><code> ```bash
1. Use the <code>RawImagesLocation</code> parameter to store them directly onto your SD card, see <a href="../Parameters/#parameter-rawimageslocation">Parameter <code>RawImagesLocation</code></a>
1. Use the Webhook to send the raw image on each round to a dedicated server, see <a href="../Webhook">Webhook</a> resp. <a href="Parameters/#parameter-uploadimg">../Parameter <code>UploadImg</code></a>.
1. Another option is to pull the images periodically from <code>http://&lt;IP&gt;/img_tmp/raw.jpg</code>. Eg. with an external service. Below is a (Linux)-Bash script to do it:
```bash
#!/bin/bash
while [[ true ]]; do
echo "fetching value..."
wget -q http://192.168.1.151/value -O value.txt
value=`cat value.txt`
wget -q http://192.168.1.151/value -O value.txt</p>
<div class="language-text highlight"><pre><span></span><code> value=`cat value.txt`
echo "Value: $value"
diff=`diff value.txt value_previous.txt`

File diff suppressed because one or more lines are too long