Beginners • Re: RPI 27w power pack spcs
In the general case I'm certain you're correct. But this thread is specifically about the official 27W PSU and that has a captive cable which I presume is suitably rated. Or it wouldn't be on sale.It...
View ArticleHATs and other add-ons • Re: HW RAID
My gut feeling at this time is that, as already syggested, OP is being cheap, has seen a few buzz words (EXSi, hardware RAID), seen a couple of "funky" products, but hasn't done their own (basic)...
View ArticleGeneral • Re: Official RP235xB boards?
May not be an issue for most but be aware that neither of the Pimoroni boards will overclock above about 320MHz. The Pico2 is no issue up to 400MHz.The issue is not the PSRAM as even with that removed...
View ArticleTroubleshooting • Re: Pi 5 not accessible by other Pi’s Mount
Hi Folks!Found a solution of a GUI access (the yellow file folders icon – pcmanfm) to my shared files so posting for others. May not be THE correct way but works.The files were not available via the...
View ArticleTroubleshooting • Re: Cannot properly scan system for error: fsck at reboot...
TryCode: sudo tune2fs -c 1 /dev/mmcblk0p2The one "1" means check every boot.Reboot to check the drive. ThenCode: sudo tune2fs -c 0 /dev/mmcblk0p2to stop checking every boot.Statistics: Posted by AndyD...
View ArticlePython • What is the official Raspberry Pi library for accessing GPIO ports ?
So far I succesfully used RPi.GPIO library to work with the GPIO ports of a Raspberry Pi 4. But after getting the latest Raspberry OS updates, RPi.GPIO is not working anymore. I get `Failed to add...
View ArticleBeginners • Re: IRF520 MOSFET Module control via PI
I connected the pwm channel from the fan to the irf520 sig channel that I fed with 12v, actually only 01.7v was able to run this module.The Raspberry Pi GPIO current is low and only provides the PWM...
View ArticleGeneral • Re: Blink Ex in VSCODE
I see now, version 0.16.1 is for the raspberry pi extension. I updated it and went back through the process and everything worked perfectly.Thank you for your help.ChuckStatistics: Posted by...
View ArticleBeginners • Minimize all windows/show desktop in Bookworm?
Kind of embarassing to ask such a basic question but I've tried searching and even more recent results just say Ctrl-Alt-D, which does not work. One guide to keyboard shortcuts pointed to a menu...
View ArticleOther projects • Re: Custom Key pad
Well everyone, because I am continually disappointed whenever I read a thread online which doesn't reach any conclusion (relevant xkcd here: https://xkcd.com/979) I am posting a conclusion, although...
View ArticleGeneral discussion • Re: STICKY: PINN - An enhanced version of NOOBS.
Hope this is the right place to ask (but if not please accept my apologies and move this to the right place).PINN 3.9.3Raspberry Pi 4BI am using PINN top boot 3 different OSes. This all works fine.I...
View ArticleRaspberry Pi OS • Re: I can't watch youtube or imdb videos on chromium browser
firefox can not set full window mode.Statistics: Posted by cjan — Sat Sep 14, 2024 11:35 pm
View ArticleGeneral discussion • Re: AndroidBuddy: control any smartphone from Linux...
People reading this: please respond back here once you test AndroidBuddy. Feedback requested, and so far there still has been none.Statistics: Posted by Botspot — Sat Sep 14, 2024 11:44 pm
View ArticleGeneral • Re: SD card codes and microSD card module altogether working with
Thank you for replies ^^ It helped me a lot. I am now working with carlk3's work and its applications retrieved from github.It would be working nicely soon, so is my project will be...
View ArticleBeginners • Re: Minimize all windows/show desktop in Bookworm?
keyboard in wayfire is very minimal, basic at best.Statistics: Posted by kerry_s — Sun Sep 15, 2024 12:36 am
View ArticleTroubleshooting • Re: Help Rpm Counter inputs
Thx , Tried your script, got an error, have I not installed something??import gpiodimport timefrom gpiod.line import Direction, ValueLINE = 27with...
View ArticlePython • Re: What is the official Raspberry Pi library for accessing GPIO...
GPIO Zero is the recommendation in the official OS documentation: Use GPIO from Python.It should be installed by default with RPi OS 12/Bookworm. N.B. The hardware implementation of GPIO changed with...
View ArticleNetworking and servers • Re: Assistance with script to change Static IP
For bookworm, on my home network, I have simply copied something like this:Code: allow-hotplug eth0iface eth0 inet staticaddress 192.168.0.XXX/24netmask 255.255.255.0gateway 192.168.0.1to...
View ArticleBare metal, Assembly language • Re: Pi400 and USB
Having read back my previous post I didn't make myself very clear.The sample code works writing to a USB drive when the code is booting from the SD card.I'm trying to write to the USB drive with the...
View ArticleGraphics programming • Re: DRM_IOCTL_MODE_ATOMIC randomly returns EBUSY
Good info on DRM_IOCTL_MODE_RMFB. My app preallocates framebuffers and nothing freed until app shutdown. Hardware h265 requires DRM_IOCTL_PRIME_FD_TO_HANDLE once per unique buffer, but that was not...
View Article