Need detailed help on automatic activation of backup camera

hudiy
Site Admin
Posts: 515
Joined: Mon Jul 14, 2025 7:42 pm

Re: Need detailed help on automatic activation of backup camera

Post by hudiy »

Could you please post the output of sudo apt update command?
Hudiy Team
gwynethh
Posts: 41
Joined: Sat Aug 09, 2025 4:53 pm

Re: Need detailed help on automatic activation of backup camera

Post by gwynethh »

Soon
gwynethh
Posts: 41
Joined: Sat Aug 09, 2025 4:53 pm

Re: Need detailed help on automatic activation of backup camera

Post by gwynethh »

gwyneth@CarPi:~ $ sudo apt update
Hit:1 http://deb.debian.org/debian trixie InRelease
Hit:2 http://deb.debian.org/debian trixie-updates InRelease
Hit:3 http://deb.debian.org/debian-security trixie-security InRelease
Hit:4 http://archive.raspberrypi.com/debian trixie InRelease
1 package can be upgraded. Run 'apt list --upgradable' to see it.
gwyneth@CarPi:~ $
hudiy
Site Admin
Posts: 515
Joined: Mon Jul 14, 2025 7:42 pm

Re: Need detailed help on automatic activation of backup camera

Post by hudiy »

We just tested this on a fresh installation of Raspberry Pi OS Trixie 64-bit Desktop, and all packages install without any issues.

Have you made any modifications to the system (e.g., configuration files, especially the files in the /etc/apt/sources.list.d directory)?
Did the Raspberry Pi happen to reset earlier during a package installation or system update?
Is there enough free space on the drive? (you can check this using the df -h command).
Is it possible that the addresses http://archive.raspberrypi.com/debian/ and http://deb.debian.org/debian-security/ are being blocked by your ISP?

You can also try clearing the apt cache and then updating and installing the packages:

Code: Select all

sudo rm -rf /var/lib/apt/lists/*
sudo apt clean
sudo apt update
sudo apt install -y python3-gpiozero python3-protobuf python3-websocket
Hudiy Team
gwynethh
Posts: 41
Joined: Sat Aug 09, 2025 4:53 pm

Re: Need detailed help on automatic activation of backup camera

Post by gwynethh »

Those last instructions gave success for the websocket install. Thanx
gwynethh
Posts: 41
Joined: Sat Aug 09, 2025 4:53 pm

Re: Need detailed help on automatic activation of backup camera

Post by gwynethh »

New problem trying to clone into git.hub

sudo apt install git
cd
git clone git@github.com:wiboma/hudiy.git
python3 $HOME/hudiy/examples/gpio/ReverseCamera.py
git is already the newest version (1:2.47.3-0+deb13u1).
The following packages were automatically installed and are no longer required:
alacarte libmbim-proxy libqrtr-glib0 linux-image-6.12.47+rpt-rpi-v8
gir1.2-gmenu-3.0 libmbim-utils linux-headers-6.12.47+rpt-common-rpi linux-kbuild-6.12.47+rpt
gnome-menus libqmi-glib5 linux-headers-6.12.47+rpt-rpi-2712 python3-gi-cairo
libgnome-menu-3-0 libqmi-proxy linux-headers-6.12.47+rpt-rpi-v8 retry
libmbim-glib4 libqmi-utils linux-image-6.12.47+rpt-rpi-2712
Use 'sudo apt autoremove' to remove them.

Summary:
Upgrading: 0, Installing: 0, Removing: 0, Not Upgrading: 60
Cloning into 'hudiy'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
python3: can't open file '/home/gwyneth/hudiy/examples/gpio/ReverseCamera.py': [Errno 2] No such file or directory
hudiy
Site Admin
Posts: 515
Joined: Mon Jul 14, 2025 7:42 pm

Re: Need detailed help on automatic activation of backup camera

Post by hudiy »

You can try to clone using https method:

Code: Select all

git clone https://github.com/wiboma/hudiy.git
or just download the zip https://github.com/wiboma/hudiy/archive ... s/main.zip
Hudiy Team
gwynethh
Posts: 41
Joined: Sat Aug 09, 2025 4:53 pm

Re: Need detailed help on automatic activation of backup camera

Post by gwynethh »

Success with the git clone https. Now to update modify ReverseCamera.py to my planned GPIO pin. THANX!
Post Reply