General • Re: Simple BLE-based Wi-Fi Provisioning for Pico W
Have you tried other methods of provisioning Wi-Fi on Pico W that worked well?Putting the Pico W into Wi-Fi Access Point mode then configuring via a web browser worked well for me. That should also...
View ArticleOther programming languages • Re: Basic on Raspberry
I think the idea of Basic is that it's for beginners.For beginners, yes, (that's what the B in BASIC stands for) but not only for beginners! Modern BASICs are almost all intended for the full range of...
View ArticleOther projects • Pico W - Garden Solar lighting
What I'm trying to build is a Pico W with web frontend that controls my garden lights or any other battery powered device. There's two parts to the project.Pico W with frontend to access and configure...
View ArticleMicroPython • Re: Buttons for LCD1602 Menu
Here is the current status of my project.you can test ist here:https://wokwi.com/projects/426752741932539905 The menu is working finally. there is a main menu with actions and submenus. It looks like...
View ArticleOther projects • Re: Raspberry Pi Pico and Centrifugal Pump
I would add a switch in the power line (red wire say) to power off the pump.Statistics: Posted by neilgl — Sat Mar 29, 2025 10:36 am
View ArticleOther RP2040 boards • Re: Flashing issue for custom RP2040 Board
- Checking all signals on the scope - all of them look normal during read and write. A constant clock signal on SCLK and bursts of data on other pins. This doesn't sound right. If you were unable to...
View ArticleMicroPython • Re: Kitronik Compact Robotics Board I/O Breakout Ports
In Micropython documentation you can find how to read the state of a GPIO https://docs.micropython.org/en/latest/ ... s-and-gpioYou can then use the returned value in a while loop to wait for the push...
View ArticleTroubleshooting • Re: Connect via SSH to Pi Zero 2W in Gadget Mode
Is SSH enabled in raspi-config?Statistics: Posted by kheylen25 — Sun Mar 30, 2025 7:34 am
View ArticleGeneral • Re: Location of created file
Once you click the Run button in Thonny, your code is passed over to the Pico and the Pico runs autonomously. The shell (REPL) shows print() output but all the processing, communications channels...
View ArticleTroubleshooting • Re: Raspberry Pi 5 - No POST, No Screen, No Terminal
which power supply? what changed when this began occuring?Statistics: Posted by cleverca22 — Sun Mar 30, 2025 8:21 am
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: /sys/class/pwm/pwmchip2 doesn't exist...
Never used these overlays. Might fail because of the max PWM frequency beeing lower on Pi5.PWM on the Pi5 is from RP1-> made some overlays when the device hit the market to demo...
View ArticleTroubleshooting • Re: Unable to access new NVME drive
Would like to hear an official RPT comment why these BiWin NVME's were using Samsung firmware. looks like I will have to spend some 35bucks on one of them to seemyself.Statistics: Posted by...
View ArticleOther programming languages • Re: Introduction to BBC BASIC
I think "heap pointers" are indexes into the heap rather than hardware memory addresses.Of course, what else could it mean ("in 64-bit editions ... heap pointers are 32 bits")?32-bit heap pointers in...
View ArticleTroubleshooting • Re: Network Manager fails to start at Boot on Pi5
That sounds to me like a faulty SD card corrupting the files.You could try reinstalling the packages those files belong to - use "dpkg -S filename" to find the package names, then "sudo apt reinstall...
View ArticlePython • Re: problem with flask app.py
Hi, i'm very pleased for your help at this point i started to use Gunicorn as said previously and it seems to work, the problem is still app.py but you @LimeUp gave me a big help saying i have to use...
View ArticleBare metal, Assembly language • Re: Unified free RAM detection method
the proper method is to use device-treeit gives you a list of addr+size pairs, telling you exactly which ram is available for use by the arm coresStatistics: Posted by cleverca22 — Sun Mar 30, 2025...
View ArticleBeginners • Re: Nextcloud. Pi:ip.address:9000
With the assumption it is just installing software, and not a disk image, you can find the IP using IFCONFIG. In the following example my IPV4 address is through WIFI and is 192.168.1.12. Code: $...
View ArticleBeginners • Re: How to send a single file to an ftp server
...I mean sending one .wav file with a frequency of every 8 minutes.It would be best if it happened automatically.I know that cron can be used for this.See viewtopic.php?t=314455I just don't know what...
View ArticleGeneral discussion • Re: Serving up files from a flash drive to display on a...
Quickest way is:Code: cd /media/pi/2.0\ GB\ Volumepython -m http.serverWon't have all the features of apache but it will work.Statistics: Posted by thagrol — Mon Mar 31, 2025 10:12 am
View ArticleC/C++ • Re: Access PTP clock synchronization in C
Look at "man clock_gettime" which has more detail. For your project, look at the section "Dynamic clocks" where the example is PTP ...Code: #define CLOCKFD 3#define FD_TO_CLOCKID(fd) ((~(clockid_t)...
View Article