HATs and other add-ons • Re: Unable to boot Bullseye with HAT+
Assuming a Pi 5 due to your using the NVMe HAT+.Is this a known issue?Yes.Bullseye and earlier were released prior to the launch of the Pi 5, have not, and AIUI, will not be updated to run on the Pi5....
View ArticleBeginners • Re: Connecting UPS to Battery Monitor
With NUT installed, you should be able to retrieve UPS info:Code: #!/bin/bashSERVER=w.x.y.zUPSINFO=$(upsc pbx@${SERVER} 2> /dev/null)if [ ${#UPSINFO} -eq 0 ]; then echo "" echo "Unable to retrieve...
View ArticleCamera board • Raspberry Pi 5 not finding cameras (same disk image finds them...
I would be grateful for any tips.Situation:- a microSD image is used interchangeably on Pi versions Zero, Zero 2, 3B+ and 5- on all other platforms, it finds the camera, on Pi 5 it cannot- it happens,...
View ArticleCamera board • Re: Raspberry Pi 5 not finding cameras (same disk image finds...
P.S. I should note that on a "healthy" system (where the camera works) issuing "dmesg | grep sensor" gives no output. I currently don't understand why.Statistics: Posted by diastrikos — Mon Jun 10,...
View ArticleBeginners • Re: Help I accidentally formatted the SD card that came with the...
Thanks for answers.I kindly ask you to indicate the exact link where the software I need is located.Thank you in advanceIgorvr1974, You made this forum post asking for information where the RaspiOS...
View ArticleAdvanced users • Re: Preventing reading from OTP
Thank you all for your comments. I am using secure boot indeed, so that is not a problem.Sorry for having assumed that secure boot was a given.Still, with secure boot, if anyone gets root permission...
View ArticleC/C++ • Re: Initializing a GPIO bitmask for use with the SDK functions
A more readable way of creating the bitmask:Code: // You can also use the shifts directly if you prefer.#define BIT(n) (1u<<(n))uint32_t gpio_bitmask = BIT(22) | BIT(21) | BIT(16) | BIT(15) |...
View ArticleCamera board • Re: Recording 4k with raspberry pi5 and HQ Camera
Yes, I can see the differences in "--list-cameras" messages w/ and w/o 4lane option.Thank you very much.By creating cam_helper_imx258.cpp from cam_helper_imx219.cpp, I can operate IMX258 module on...
View ArticleRaspberry Pi OS • Re: BUG: mod_ssl was compiled against a newer library
What does "apt policy libssl3" show?$ apt policy libssl3libssl3: Installed: 3.0.11-1~deb12u2+rpt1 Candidate: 3.0.11-1~deb12u2+rpt1 Version table: *** 3.0.11-1~deb12u2+rpt1 500 500...
View ArticleGeneral discussion • Zero 2 W HDMI question
I'm planning to use a screen in the front of my case that is 14" 1920+1080 FHD, will the Zero 2 W be powerful enough to play video files smoothly on the screen?It's a WIP but the screen is going to go...
View ArticleOther projects • Re: Pi 5 16GB SDRAM test
I have the datasheet but can't post it here due confidentially clauses, but this family of Micron ram chips are LPDDR4x with a backward compatibility setting to operate in LPDDR4 specifications.I...
View ArticleRaspberry Pi OS • BUG: "unbound-control load_cache" hangs on...
When I run the command "unbound-control load_cache < zero_length_file" it hangs.I put this command in a script that runs when I (re)start unbound, and sometimes the saved cache file is 0 length...
View ArticleOther projects • Re: HP CP1025nw printer via USB port
Thanks for the reply. I went through the Preferences-Print Settings dialog in the Pi Desktop, and I was able to select my printer from the (long) list of HP options. However that was trying to set it...
View ArticleUbuntu • Re: Rpi5 running rpi4 USB m.2 ssd and also rpi5 nvme ssd
Oh that's a great temporary setup you have there. Yes you should be able to setup the rpi4 m.2 adapter with your new upcoming build. Nice photo!!Oh and welcome to our dead forum.Statistics: Posted by...
View ArticleSDK • Multi function button
Hello Everyone,I'm working on a few projects and I'm trying get some extra functionality from a single button.I've written my code so that pressing and releasing the button fires an interrupt. When...
View ArticleOther projects • Re: Drone with Raspberry Pi Pico W
HiI have checked again : the propellers are ok and the direction of the motors is ok.CheersI don't claim any expertise on this topic but in the page of your first link I read:"soldered the motors in...
View ArticleDevice Tree • Re: DHT11
As a test, I used a pi4 running Bookworm 64-bit and this python DHT11 tutorial https://pimylifeup.com/raspberry-pi-dht11-sensor/Edit the scritp to use GPIO17 not 4. Wiring (my module has a pull-up...
View ArticleTroubleshooting • Re: No sound on Raspberry PI 3 B+
try paplay, desktop uses pulse audioyou should set it up like your going to use it, don't sound like you need a desktop, so you can save resources.there's only 1gb ram so your losing a lot for parts...
View ArticleGeneral discussion • Re: Control app on Raspberry from PC
Hello,I'm going to start a new project and I'm thinking about the architecture and tools.I'm wondering if it is possible to do a thing I have in mind and would like to ask your opinion.I would like to...
View ArticleBeginners • How to install Anydesk on a Pi 5
Forgive me for a topic that has been cussed and discussed. However, in my research, I have not been able to find straight forward instructions on how to properly install Anydesk on a Pi 5. I would...
View Article