MicroPython • Re: Pico W Reliability
See this ticket:rp2: Accept not responding on Pico W after 5 mins #15833 https://github.com/micropython/micropython/issues/15833Ehh, that one was down to the user having a duff router. See resolution...
View ArticleTroubleshooting • Re: Samsung ML-1860 printer on PI 5 and Cups 2.4.2
OpenPrinting's database is down, unfortunately, so I can't check.What driver did you try?Looks like this printer requires HP's ULD driver. Maybe tryCode: sudo apt install printer-driver-splixPeople...
View ArticleGeneral • Modifying Pico Examples for additional source files
I am trying to understand how to structure a Pi Pico project to use more than one source file. I am using VS Code. I have installed the Pico extension. I am using the hello_uart example, adding some...
View ArticleTroubleshooting • Re: Pi 5 no longer has functioning wifi after latest update
I'm not seeing that on a Pi5 with all updates as of just now - WiFi is fine stillWhat happens if you reboot the router?Maybe connect an ethernet cable to the Pi5 temporarily?Statistics: Posted by...
View ArticlePython • Re: How does a u-shaping coder work
Here's the images I promised can someone help me set up Python code to check for the pins that are used or Arduino code?Statistics: Posted by bob5731 — Thu Dec 26, 2024 9:31 pm
View ArticleGeneral • Re: The Raspberry Pi Pico W is not showing up on computers
Could it be your USB cable or your choice of USB port? I have found the Picos totally reliable when used with USB. Thonny never fails to establish a link, this on Raspberry Pi OS or Mac OS.The onboard...
View ArticleCompute Module • Replacing USB Type A 3.0 with USB Type C
I am designing a carrier board and I am replacing the USB Type A 3.0 with USB Type C. I was going to front end the USB-C port with TI HD3SS3212 2:1 MUX to deal with having only a single super speed...
View ArticleGraphics programming • Re: drmModeAtomicCommit leaves terminated process...
Some additional detail-- the parent process is a UI layer using WPEWebKit rendering via EGL+drmModeAtomicCommit. For media playback, it fork+execs a child process and passes its open libdrm file...
View ArticleRaspberry Pi OS • Re: Some interesting questions about Linux (RpiOS) NTFS...
This raises two questions:1) What is the default? It sounds like the default is "none", so this begs the question: How do I change it?I've not tried it but I'd expect in the same way as you would any...
View ArticleRaspberry Pi 400 and 500 • Re: Pi 500; questions and setup
Wireless printing and the midi/USB adapter worked without a hitch. Didn't even have to do anything for the printer. It auto detected it. Just worked. Still tweaking the midi/USB settings since I don't...
View ArticleDevice Tree • Re: mmc0: ADMA error: 0x02000000 when booting kernel with...
Saving the fdt address in uboot for later use by the kernel kind of seems to work, not sure if by accident, or something might have changed in the meantime, because, contrary to what the uboot...
View ArticleCamera board • Re: Can't Connect 5MP OV5647 Camera to Raspberry Pi 4B
i set a link for the camera, i don't think that it is a pi official camera.i'm confused about the modifications in the config.txt filei'm still waiting for someone to help usStatistics: Posted by...
View ArticleGeneral • Is there a minimum list of files to archive a project?
I recently upgraded to version 2.1 of the SDK and the Visual Code builder for Windows. I used to be able to delete the build directory and just keep the CMakeLists.txt, my source and the .vscode...
View ArticleAutomation, sensing and robotics • Re: bme280 sensor not being picked up
Wiring looks wrong Note: physical pin numbers used.Code: 1 - VCC : OK 3V35 - SCL : OK SCL GPIO317 - CS : ?? should be not connected "NC"21- ADDR: ?? GPIO9 SPI MISO (high addr is 0x77, low addr is 0x76...
View ArticleSDK • Re: Bluetooth: which example should i look for?
I see. There are only rfcomm examples. It might be worth asking on the blue kitchen btstack forumStatistics: Posted by peterharperuk — Fri Dec 27, 2024 9:40 pm
View ArticleBeginners • Re: How is your experience on RPi Lite, Ubuntu Server and Ubuntu...
Raspberry Pi OS +1Rock stable and has the benefit of Raspi-config.Is closest to Debian. I see no reason to use Debian-derivate Ubuntu.Statistics: Posted by WouterO — Fri Dec 27, 2024 9:48 pm
View ArticleTroubleshooting • Re: SegFaulting and Inode errors on Raspi 3A
Believe it or not: I added another raspi, same problem, not accesible after 24-36 h.Subsequently I added a wifi radio streaming a radio station from the internet 24/7, now all raspis are accesible...
View ArticleBeginners • Re: How to process from sensor and send notification peridically?
When PIR senses movement, it will send an input. How is the PIR sensor sending the data?Am connecting the PIR to one of the GPIO pins. When it senses the motion, it calls a function or my code is...
View ArticleBeginners • Re: How do I run VASM?
It's supplied as source, so you have to build it.Make sure you have the build system installed:Code: sudo apt install build-essentialYou likely want vasm 2.0 from here: vasm portable and retargetable...
View ArticleMicroPython • Re: Raspberry Pico W program not working after updating to...
Issue solved. I changed the host of socket s2 from ' ' to '0.0.0.0'.So this is the thing.Code: s2.bind(('0.0.0.0', 5005))Statistics: Posted by visogonzalez — Fri Dec 27, 2024 10:10 pm
View Article