DiddyWeb buttons only
Forums:
Hi, what Would I need to delete in order to have the Diddyweb ui working without the video stream.
And would it be possible to run this with a video feed through the composite jack.
I feel I could get better /faster video transmitted over a RC video transmitter but still have remote control via the web UI buttons.
Thaks
piborg
Tue, 02/09/2021 - 21:20
Permalink
Web UI without the camera view
There is a copy of the diddyWeb.py script with the camera code commented out in this thread: DiddyBorg Web UI
The script is old, there are some updates described further down the thread that may be needed.
You should be able to output the camera video directly to the monitor output using the
raspistill
command in preview mode with a very large timeout: https://www.raspberrypi.org/documentation/raspbian/applications/camera.mdYou can edit
/boot/config.txt
to get the Raspberry Pi to output on the composite connector instead of the HDMI: https://mlagerberg.gitbooks.io/raspberry-pi/content/3.5-analog-video-out...clankerr02
Mon, 02/15/2021 - 12:17
Permalink
Thank you
Thanks, I've got both working. To get both running on start up would it be better to have separate files and add each to crontab or could I add the camera preview script to the top Web UI and run this as one ?
Thanks again.
piborg
Mon, 02/15/2021 - 20:56
Permalink
Startup
Either would work fine, but I would personally start them separately from crontab.
clankerr02
Tue, 02/16/2021 - 21:56
Permalink
Can you explain?
I copied a script from Picamera Read the Docs which creates an overlay on the preview.
https://picamera.readthedocs.io/en/release-1.13/recipes1.html#overlaying...
Everything works great until it times out and an error message is generated. Could you explain why its being generated and how to resolve it. I've attached my script a the error message.
Many thanks
piborg
Tue, 02/16/2021 - 23:38
Permalink
Slight typo
This should be easy to fix, it looks like a typo :)
The line which is failing is:
Instead of
0
it should be give the value returned by thecamera.add_overlay
command, which is stored ino
. This means the line should be:clankerr02
Mon, 03/01/2021 - 10:37
Permalink
Thank you
Thank you all sorted.