General discussion • Re: Firefox Zero-Day
lucky it is already 131 on raspberryStatistics: Posted by kerry_s — Fri Oct 11, 2024 12:59 am
View ArticleHATs and other add-ons • Re: What connector is this?
grove comes in latched and unlatched.Looks like it might be JST PH, thenStatistics: Posted by scruss — Fri Oct 11, 2024 1:42 am
View ArticleMicroPython • Re: Ask about Three-wire Serial EEPROM in RP2040
Micropython and C SDK currently include code for Motorola format only (which is mode 0, the default value). You would probably have to access the control register directly to reconfigure it after the...
View ArticleBeginners • Re: How to copy Boot from External SSD to SDCard using terminal
Use image-backup to create an image file of your SSD. Then use write-image to write that image file to your SD card. Shutdown, disconnect the SSD, and boot the SD card.Statistics: Posted by RonR — Fri...
View ArticleBeginners • Re: Installing a BME688 on Pi Zero V1.2
I found this link https://pi3g.com/products/bme688-breakout-board/ which has links and documentation at the bottom.Statistics: Posted by DS256 — Fri Oct 11, 2024 11:13 pm
View ArticleNetworking and servers • Re: Pi5 eth0 receiving external (Read Wan IP)...
One other tip, you can push NM to renew the DHCP lease with the following (substitute your NM connection name). It doesn't seem to need to be taken down first, just doing "up" on an already up...
View ArticleAutomation, sensing and robotics • Re: SPI Pressure Sensor
Yes sorry the sensor is TE's LDE differential pressure sensor.https://www.te.com/en/product-CAT-BLPS0092.htmlStatistics: Posted by EatDemCashews — Fri Oct 11, 2024 11:36 pm
View ArticleCompute Module • Re: USB boot not working (BOOT_ORDER fails me)
@cleverca22, that's super helpful. I didn't even notice that the UUIDs were duplicated. That exact problem was indeed causing frustrating intermittent boot failures.It would be really great if...
View ArticleGeneral • Re: Run Project (USB) from Raspberry Pi Pico Project under VS Code
I only have: "RP2 Boot (Interface 1)"Statistics: Posted by chuck72352 — Sat Oct 12, 2024 12:27 am
View ArticleGeneral • Re: Best way to allow user to set up the device?
The problem is that without correct WPA credentials, there is no network connection even at Layer 2.For any wifi autocofig, it needs to be active and accessible (by the user) on the AP, far more...
View ArticleMicroPython • Re: Benchmark Pico 2
Then push it just a little bit further: viewtopic.php?t=375975Statistics: Posted by gmx — Sat Oct 12, 2024 1:21 am
View ArticleGeneral • Re: Pico2 (RP2350 B) running beyond 600 MHz, from flash, with...
Still alive and kicking. Measured current between 20-200 mA, the whole board, temperature max 50 C without heatsink.Statistics: Posted by gmx — Sat Oct 12, 2024 1:29 am
View ArticleGeneral discussion • Pi OS file manager difficulties compared to Nemo
I use Nemo on an Intel laptop and started moving terabytes from one disk to another. Five hours. I could use my Pi 5! Using the file manager in the Raspberry Pi OS is difficult. For some reason, when...
View ArticleGeneral discussion • Re: Pi OS file manager difficulties compared to Nemo
Code: sudo apt install nemojust a reminder, if your using a wayland desktop, you need a wayland compatible file manager.Statistics: Posted by kerry_s — Sat Oct 12, 2024 1:45 am
View ArticleBeginners • Output to .csv file in Chinese? Characters
I have a Python3 program that outputs data daily to a .csv file. This data is just numbers, usually between 10000 and 30000.I don't read the data very often but having tried to read it today, instead...
View ArticleSDK • Re: Less code compiles larger
This sounds reasonable. The compiler is doing things on your behalf. Small changes can have radical changes in the nature of the meaning. The type of instructions required for uint8_t vs uint16_t can...
View ArticleAdvanced users • Re: Replace the watchdog.service and wd_keepalive.service...
You need to hold open /dev/watchdog for it to work. If you don't like that then you'll need to set the nowayout option or recompile the kernel with CONFIG_WATCHDOG_NOWAYOUT enabled. If it is enabled...
View ArticleBeginners • Re: Output to .csv file in Chinese? Characters
How are you writing the file? It sounds like you may be writing binary data to the file, instead of text. Have you tried looking at it in a terminal window, e.g. "less myfilename.csv"?If possible,...
View ArticleGaming • Re: Racing Game Steering Wheel
I installed Bookworm on the Pi, atleast according to the Raspberry Pi Imager.Statistics: Posted by vaved — Sun Oct 13, 2024 12:06 am
View ArticleTroubleshooting • Re: XDG_RUNTIME_DIR error on .py boot
/run/user/1000, echo $XDG_RUNTIME_DIR doesn't exist until the user has logged in to the desktop..bashrc runs before that happens. it also runs every time you open a terminail and every time you login...
View Article