I couldn't get the script from p123ad to work on my Pi Zero W 2 with Camera Module 3 (all kinds of ffmpeg errors). There are several built-in tools for working with the camera now, so I tried to figure out if I could use one of those instead.
Behold this version, which uses the built-in libcamera-still
tool to actually interact with the camera and save a JPEG. That image is then uploaded to Prusa Connect, same as the original script.
- Go to the Cameras section at https://connect.prusa3d.com
- Add a new camera by clicking "Add new other camera"
- Copy the generated Token
- Set up your Pi Zero W 2 with Raspian OS Lite (32-bit) (this may work with other combinations of Pi and OS but I haven't tested)
- Log into your Pi and create a shell script with
sudo nano /usr/local/bin/prusaconnect_upload_cam.sh
and swap outconnect-token-here
in the script example with the Token you copied in step 3 - Change ownership of the script to the user you log into your pi with, for example if your user is
pi
then run:sudo chown pi:pi /usr/local/bin/prusaconnect_upload_cam.sh
- Make the script executable:
chmod +x /usr/local/bin/prusaconnect_upload_cam.sh
- Start the script with
/usr/local/bin/prusaconnect_upload_cam.sh
If it works you should see no error messages, and a new image appearing in Prusa Connect every 10 seconds.
To run the script in the background and have it start automatically when your Pi starts:
- Create the service file with
sudo nano /etc/systemd/system/prusaconnect_upload_cam.service
, paste the content from below and save. - Start the service:
sudo systemctl start prusaconnect_upload_cam.service
. - Check if the service is running with
sudo systemctl status prusaconnect_upload_cam.service
. - Enable the service to run at startup:
sudo systemctl enable prusaconnect_upload_cam.service
.
Am I the only one who gets regurarly status_code:204 error messages? It's totally random, usually I have to restart the service every day. Sometimes it works for 10 hours, sometimes for 40 hours. Do you have any idea how can I fix this?
sudo systemctl status prusaconnect_upload_cam.service
● prusaconnect_upload_cam.service - Raspi Cam to Prusa Connect
Loaded: loaded (/etc/systemd/system/prusaconnect_upload_cam.service; enabled; preset: enabled)
Active: active (running) since Fri 2025-02-07 19:03:31 CET; 2 days ago
Main PID: 27648 (prusaconnect_up)
Tasks: 2 (limit: 1568)
CPU: 2h 3min 53.964s
CGroup: /system.slice/prusaconnect_upload_cam.service
├─27648 /bin/bash /usr/local/bin/prusaconnect_upload_cam.sh
└─29610 curl -k -X PUT https://connect.prusa3d.com/c/snapshot -H "accept: /" -H "content-type: image/jpg>
Feb 09 18:53:19 raspberrypi prusaconnect_upload_cam.sh[29485]: {"status_code":204}
Feb 09 18:53:42 raspberrypi prusaconnect_upload_cam.sh[29496]: {"status_code":204}
Feb 09 18:54:20 raspberrypi prusaconnect_upload_cam.sh[29507]: {"status_code":204}
Feb 09 18:55:11 raspberrypi prusaconnect_upload_cam.sh[29518]: {"status_code":204}
Feb 09 18:55:44 raspberrypi prusaconnect_upload_cam.sh[29531]: {"status_code":204}
Feb 09 18:56:52 raspberrypi prusaconnect_upload_cam.sh[29542]: {"status_code":204}
Feb 09 18:57:28 raspberrypi prusaconnect_upload_cam.sh[29553]: {"status_code":204}
Feb 09 18:58:23 raspberrypi prusaconnect_upload_cam.sh[29564]: {"status_code":204}
Feb 09 18:58:50 raspberrypi prusaconnect_upload_cam.sh[29576]: {"status_code":204}
Feb 09 18:59:19 raspberrypi prusaconnect_upload_cam.sh[29587]: {"status_code":204}