Troubleshooting • Re: Power not capable supplying 5A w/Sound Level sensor?
might be old, but:https://learn.adafruit.com/scanning-i2c ... spberry-piStatistics: Posted by terribleted — Mon Dec 16, 2024 2:43 pm
View ArticleMicroPython • Re: Problem with a plant watering project
This is the best documentation I've found Probably those jumpers bypass the optocoupler, eventually connecting 5V to 3.3V as a bonus, or whatever it comes first, I guess that relay should be powered...
View ArticleTroubleshooting • Re: USB gadget on a Zero W, what I'm missing
Hey,Ok, I was not aware that there was a new version of rpi-imager because apt update says I've the last :Lecture des listes de paquets... FaitConstruction de l'arbre des dépendances... FaitLecture...
View ArticleBeginners • Re: Pi4 Pi5 power supply interchangeability
I rarely/never attach any USB devices to the Pi4/5 that need >600mAStatistics: Posted by neilgl — Tue Dec 17, 2024 2:12 pm
View ArticleRaspberry Pi OS • Re: is there a backup utility for Raspbian Bullseye?
RonR's image-utils are the obvious solution for a complete image that can be restored from the img file or can be mounted to access individual files viewtopic.php?t=332000However if its known files in...
View ArticlePython • Re: Pigpio alternatives?
The core hardware is different.But for the Pi5 I made a class to deal with the PWM.https://github.com/danjperron/Pi5PWM_HARDWAREStatistics: Posted by danjperron — Tue Dec 17, 2024 2:25 pm
View ArticleBeginners • Re: Remote Operation Pi5
You could use sdm to fully configure the 32-bit Pi system, including the hotspot and VNC (TigerVNC or TightVNC) using X11 instead of Wayland/labwc.Using a couple of NetworkManager connections, you...
View ArticleMedia centres • Re: Peppy player
Thank you, please share any code which you have for that display.Statistics: Posted by peppy.player — Tue Dec 17, 2024 2:39 pm
View ArticleGeneral discussion • Re: New Raspberry Pi Products
For the monitors, I plan to start with some closed cell foam. Probably either 1/8" or 1/4" then transport them in pairs, screen toe screen.They're actually designed to be stacked like this, so you can...
View ArticleBeginners • Re: My cheap and easy LAN setup for a headless zero with on/off...
That's quite an awesome project! And if you would want to add LAN connection to every cluster node you could certainly use this UGREEN cable. But I'm a bit puzzled why you would want that.The purpose...
View ArticleTroubleshooting • Re: PipeWire CLI tools not working
Odd, on my Bookworm 64-bit Pi5, with all updates, the pw-cli seems to work ok Code: pi@pi5-8GB:~ $ pw-cli info all id: 0 permissions: r-xm- type: PipeWire:Interface:Core/4 cookie: 3172445876...
View ArticleCompute Module • Re: CM5: What's the status of audio on GPIO 12~13?
This breaks compatibility with the ClockworkPi mainboard. I thought the CM5 was supposed to be more or less a drop-in replacement for the CM4? ..why should RPT care about that? There is no need to...
View ArticleOfficial Display • Re: Digitizer on the Touch Display 2 is wonky after system...
After the recent update rotating the screen from the wayland gui no longer also rotates the touch inputs as well. This is probably a bug.Prior to the update (under wayfire) just rotating the screen to...
View ArticleTroubleshooting • Re: Network mount not surviving reboot
But, yeah, it might be worth a try though I'd probably remove or comment out the existing fstab entry when trying it.Using a systemd *.mount file means you MUST remove the /etc/fstab line.Thanks for...
View ArticleRaspberry Pi OS • Re: Installing new software directly to an image in a...
Using this script:Code: #!/bin/bash## $1: name of IMG to mount and systemd-nspawn into# $2: mount point (/mnt/$2)#function cleanup() { if [[ "$mpt" != "" ]] && [[ "$loopdev" != "" ]] then if [...
View ArticleOther projects • Re: BBC Emulator as an O/S for Pi
Very good. Just played all three.Nuclear explosions when you die in Bugvaders are fun!I like Mayday best. I wrote loads of programs on my BBC B+ but never a game.Statistics: Posted by rpiMike — Wed...
View ArticleRaspberry Pi OS • Re: systemd-tmpefiles is removing my ssh agent files
(Do you think that you are the first person to want an ssh-agent, or for that matter the Unix-domain socket for an X11 server, to keep working?)Well, the implicit assumption I make is that most people...
View ArticleTroubleshooting • Re: Raspberry 5: Process irq/161-mmc0 causing heavy cpu load
Weird. With no card inserted, there shouldn't be any MMC0 interrupts at all. What does Code: sudo find /sys/kernel/debug/mmc0 -type f -print -exec cat {} \; produce?Statistics: Posted by jdb — Wed Dec...
View ArticleRaspberry Pi OS • Re: Bookworm DPMS without window manager (X11/Wayland)
I understand that only with Qt we can control DRM properties because it is the master and DRM can accepts only one master. But I don't need to implement any other drm interface, but I have to use...
View ArticlePython • except KeyboardInterrupt error
Hi,I'm having issues with "except KeyboardInterrupt" in the following codeIt brings up an error when run as shown in the second code block. Ant help would be great. Thanks MCode: import socketimport...
View Article