Beginners • Re: What is the dangerous temperature for RPi5?
When the core temperature is between 80°C and 85°C, the ARM cores will be throttled back. If the temperature exceeds 85°C, the ARM cores and the GPU will be throttled back.It shouldn't be dangerous,...
View ArticleBeginners • Re: Specific number of nanosecond pulses generation
The best way to generate fast accurate pulses is to use Secondary Memory Interface (SMI) and Direct Memory Access (DMA), see https://iosoft.blog/raspberry-pi-smi/I'm afraid the code is in C, not...
View ArticleAutomation, sensing and robotics • Re: IP65+ Sealed Cased for RP 5?
This will be a diy project. There are cases which are IP65 or better. Your problem will be cooling. If you don't want to much trouble and try outs with dead RP5's you could do best to choose for...
View ArticleMicroPython • Using a keypad to get user input
I want to use a keypad to control a Robot Arm. I found code for how to program a keypad. I am able to read what key is pressed. However, when I use the input function, it apparently doesn't read the...
View ArticleGeneral • Re: 15 inputs that output 15 outputs using a Pico and seral to...
I now have my Pico connected to a breadboard and have run 15 switches to inputs GP0 to GP15.Is there someway to scan and read all 15 input switches, maybe define a 15 bit binary word/value that's the...
View ArticleTroubleshooting • Re: How to set RGB full (0-255) on Pi 5? (Edit: wrong...
Thanks for the detailed answer.I was able to check, that my color needs are not related to the RGB range setting of the pi. I realized that I can set my monitor manually to different input range...
View ArticleNetworking and servers • Re: Raspberry as local website
Yes a zero2W can do that. You could run a simple python webserver using flask that can read and display the values.(You could install a webserver onto the zero2, such as Apache2, nginx, lighttpd...
View ArticleGeneral • Re: debugprobe_on_pico (i.e. not the retail debug probe)
Maybe some connection/wiring/power issue? I just uploaded https://github.com/raspberrypi/debugpro ... gprobe.uf2 to my Pico, connected GND and SWD CLK and IO as per picture (GND,GP2,GP3) to my nrf52...
View ArticleSDK • Re: picotool 2.0.0 is installed, cmake says it can't find it...
I guess that you are using Bookworm, whereas slimhazard and I are both using Bullseye. I suspect that the issue is caused by an older version of cmake on Bullseye.I'm currently using Bookworm but it...
View ArticleGeneral • Re: Pico2 and SWO
We do have an ITM for each processor. See section 3.5.7 (Processor Subsystem -> Debug -> Trace) for an overview of the trace hardware.There is a common issue with the 3.7.2 feature listing which...
View ArticlePython • Re: Getting more out of the CPU when running python project
Python threads do not run in parallel. To get more stuff to run in parallel you'll need to run stuff in different processes. That way you can get 1 process running per core and if need be, you can...
View ArticleGraphics, sound and multimedia • Connecting external plugs to DAC Pro
Hi,After some testing of different sound boards, I managed to get the official DAC PRO to run as exptected, in a bare metal MiniDexed project. Compared to the previously owned RASPIAUDIO Audio DAC...
View ArticleGeneral • RP2040 / RP2350 Secondary USB HID (guest, not host)
I am trying to figure out if it's at all possible to have the RP2040/RP2350 hooked up to two computers in the following way:- Connected to computer A via the standard USB interface, in USB Serial...
View ArticleGeneral • Re: Problems with battery driven Pico
Is the program correctly shutting down in the morning or is the battery going flat before that happens?Statistics: Posted by pidd — Thu Aug 22, 2024 8:18 pm
View ArticleOther programming languages • Re: JavaScript graph library, for embedding and...
Long time no update on planar_graph_playground repo.Recently I worked on planar graph 6-coloring again, will create a Boost C++ graph library pull request:viewtopic.php?p=2246134#p2246134Then I...
View ArticleTroubleshooting • Trouble getting Transmission configured on fresh Bookworm...
Hi all --I just did a clean install of Bookworm on my RPi 4.0 and am having trouble getting Transmission to read the customized settings. Instead, it keeps reading in the default settings.Made sure I...
View ArticleTroubleshooting • Re: Running Bullseye, did a update and now VLC has problems.
Guys,I would very much like to say "Thank you" - with these fixes I was just able (on a 4B on Bullseye) to decode 2160p/x265 content to a 1080p screen - with the 4B not doing so much as frown.This is...
View ArticleGeneral discussion • Re: Raspberry Pi 5 discussion thread
Recent phones I have bought (tbh, not that recent, I do not update my phone for the fun of it) have not come with power supplies, just a USB cable. So I actually use Pi power supplies to charge both...
View ArticleTroubleshooting • Pi 4B can't read USB partition as FAT (unable to boot)
I have a SATA SSD via a USB adapter. The adapter isn't powered, but I have tried a powered adapter with the same result. The SSD has an installation of openSUSE Leap on it. More specifically, there's...
View ArticlePython • Re: Running PyAudio Script On Startup Issue
I got it to work! I read your famous boot.pdf and it helped a lot! I created a .desktop file with the following lines:Code: [Desktop Application]Type=ApplicationDescription=run scriptExec=python3...
View Article