Interfacing (DSI, CSI, I2C, etc.) • Re: AD7606 SPI 6.1 Probe Failed With...
Thanks a million. I fixed up my DTS and moved the reset pin to GPIO 22, which resolved the EBUSY problem. The system is now falling into the connection timeout error (-110) when trying to read raw...
View ArticleTroubleshooting • Re: Raspberry Pi 5 4G running abnormally hot while...
it throttles at 80 so your going to be running slowthe rpi5 at minimal needs at least heatsinks and have some kind of airflownormal running temps with cooling is around 60Statistics: Posted by kerry_s...
View ArticleBeginners • Re: Raspberry Pi Fan turns off after a few seconds of use.
it turns on at certain tempsalways on at bootsounds like it's running normalStatistics: Posted by kerry_s — Sun Nov 10, 2024 6:26 am
View ArticleRaspberry Pi OS • Re: debsecan and RPi specific packages
basically the same with pi specific fixes/modesStatistics: Posted by kerry_s — Sun Nov 10, 2024 6:31 am
View ArticleCompute Module • Re: Dead CM4, possible cause of death?
Sorry, CM4 2gig, WiFi, no emmcwhat about my other question?Statistics: Posted by aBUGSworstnightmare — Sun Nov 10, 2024 6:48 am
View ArticleRaspberry Pi OS • Re: Stuck at update-initramfs: Generating...
I did further tests, and after also switching to a more powerful Micro-USB power supply, this time all went thru after ages So are all my previous statements pure imagination? maybe... maybe not......
View ArticleTroubleshooting • Re: USB ports not working after reinstall to newest Bookworm
One way we can test it is using a stock Bookworm image (with updates) on the Pi3+, no other software installed, then run the sketch and check with stty and catI'm basically doing all this on a clean...
View ArticleMicroPython • Re: Benchmark Pico 2
Try to change this function from earthworm modeCode: def Fibonacci(n): if n <= 1 : return n else : return Fibonacci(n-1) + Fibonacci(n-2)To a native snakeCode: @micropython.nativedef Fibonacci(n):...
View ArticleBeginners • Re: PI OS Upgrade: Buster to Bookworm
Another Mystery UnfoldsI had pretty much given up on this effort, but when logwatch resurrected itself and sent another email, I found myself with recharged enthusiasm. So, I decided to set up and...
View ArticleOfficial Display • Re: the spacer that comes with pihat M2 server?
I was waiting for that question to come from the day when Touch panel 2 was released!It provides 5V to the HAT+ DC/DC which then outputs 3.3V@3A to the M.2 card.With the FPC only your M.2 is limited...
View ArticleTroubleshooting • xdg-open warning messages
I would like to suppress the warning messages I am getting when using xdg-open to open a jpg file taken with a raspberry pi 3 and a raspberry pi noir camera version 2.1.Any assistance would be greatly...
View ArticleBeginners • Re: Running a program at startup
Assuming that you have your Pi set for automatic login you might want to try one of the options on this page.Statistics: Posted by RosettaStone — Mon Nov 11, 2024 6:05 am
View ArticleGeneral • Re: MQTT on Pico W - HowTO needed
pico W and C and MQTT then use LWIP MQTT.LWIP is provided by the C SDK. There are samples available, see e.g. https://github.com/cniles/picow-iot amd possibly a lot more.Have LWIP MQTT running on one...
View ArticleAutomation, sensing and robotics • Re: Relays for ethernet connections
Yes. It's just a bunch of wires.Or connect the Ethernet to a network switch and control the power to the switch.Or you might just be able to disable and re-enable the Ethernet port in...
View ArticleGeneral • Re: Want to learn C++ on a RP Pico
See https://www.raspberrypi.com/documentati ... c_sdk.htmlStatistics: Posted by ghp — Mon Nov 11, 2024 6:18 am
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: Raspberry Pi 4 model B external I2S...
DTS file of the audio codec MAX98090.Code: /dts-v1/;/plugin/;/ { compatible = "brcm,bcm2835"; fragment@0 { target = <&i2c_arm>; __overlay__ { #address-cells = <1>; #size-cells =...
View ArticleAdvanced users • Re: Any Raspberry Pi 5 RP1 / PIO updates?
Word has it that a kernel driver is nearly ready.@jdb Do you have any updates on the PIO driver or second core support? I promoted this to my boss, and they were impressed with my demo using the...
View ArticlePython • Re: Video feed not connecting / refreshing to WiFi Mesh
I would check if it is the “tornado” software by using a known working example.Try the picamera2 example script mjpeg_server_2.pyhttps://github.com/raspberrypi/picamera ... erver_2.pyThis works for me...
View ArticleMicroPython • Re: Traffic_Lights.py example error
Force of habit from house-style of names not starting with uppercase needing to be quoted.Like 'hippy'.Statistics: Posted by ame — Tue Nov 12, 2024 3:40 am
View ArticleBeginners • Re: LED works when running from IDE, but not cronjob
Why are you importing time if you're not using it?We don't know if your code is, in fact, running. It looks simple enough but you never know...Try changing your crontab entry to the following, let it...
View Article