General • Re: Raspberry Pi and Pi Pico as i2c slave
It seems that it was my fault - I have picked wrong pins that didn't have assigned sda/scl functions on them. Weird thing is that all worked when shorted pins on the pi-pico itself. Now I picked...
View ArticleMicroPython • Re: Pico W WIFI AP mode not working with Thread
There are bugs with threading under MicroPython so don't be surprised if anything using it doesn't work.And don't be surprised if ChatGPT doesn't give you anything useful either.Statistics: Posted by...
View ArticleTroubleshooting • Re: sudo pip3 installation on python virtual environment...
On a Pi5 4GB, I created a venv (with system packages) and activated it. The packages then installed OK with:Code: pip install rpi_ws281xpip install adafruit-circuitpython-neopixelpip install...
View ArticleTroubleshooting • RPI5 not booting
Hi,I have some RPI 4 that work properly in the current setup* power from a meanwell 5V 60W power supply over a shield I made* video cable works* keyboard works* mouse worksI recently bought an RPI5,...
View ArticleRaspberry Pi OS • labwc window switcher
Labwc is a great addition to Raspberry Pi OS, but I haven't been able to modify the window switcher. I tried the steps here https://wiki.archlinux.org/title/Labwc#Configuration , but it didn't do...
View ArticleGeneral discussion • Re: No 'New Posts' ?
Still doesn’t seem to work like before the update.+1I think everyone is agreed on that. But it looks to me like we are stuck with that change unless 'phpBB' decides to revert to what they had, then...
View ArticleGeneral discussion • Re: RPi 5 gpio libraries
Will gpiozero do what you want?https://gpiozero.readthedocs.io/en/stable/Statistics: Posted by jamesh — Mon Jul 15, 2024 1:48 pm
View ArticleInterfacing (DSI, CSI, I2C, etc.) • Re: I2C connection on Pi 5 not working
Yep, it doesn't show any devices and the sda output voltage is indeed 5V. there goes another pi, is there any solution or is this it?It's stupid that tutorials online just straight up dont care if...
View ArticleTroubleshooting • Re: Login issue
Can you write Rapberry Pi OS to a spare microSD card using Raspberry Pi Imager and boot from that?If that works, download he "CrowPi Series OS Image" and try that (on the spare microSD...
View ArticleTroubleshooting • Re: Brand new RPi 4B freezes
Thanks Dom and Andrum99 - looks like I should have done a bit more research before buying the RPi4. I only need to run the browser headless, to scrape data off a device running on my home network, so...
View ArticleMicroPython • Re: uasyncio error
As said, I'm not familiar with 'asyncio', so I decided to try and implement a Pico W Web Server using that, taking your code as an example, using the original code as it appears to have been.I tried...
View ArticleGeneral • Re: Can you add / change files on a pico w over WiFi?
Just checking if this problem has been solved?As far as I know things are the same as they were back in January when this thread was started; that there are a number of ways of doing it. The only...
View ArticleBeginners • Re: 256G SSD - creating image on 32G USB
And then create an image of the USB? It's the first time I have used the SD copier and it's made two partitions on my USB drive - one doesn't mount in Windows and the other is only 512 MB (bootfs).Not...
View ArticleBeginners • Re: PI RAM amount
The OP last visited Sun Jul 14, 2024 3:02 pm, so straight after they posted.If they wish to resume the discussion when they next visit then they can report this post and ask for it to be reopened, but...
View ArticleGeneral • Re: Using oscillator of different frequency with RP2040?
I am merely trying to save cost by using 1 less crystal in my designI would imagine it's going to cost far more in effort and development time than using an additional crystal.As to getting a...
View ArticleTroubleshooting • Re: Unable to obtain driver for chrome.
Here's the error by the way:Code: Traceback (most recent call last): File "/home/pi/Test-Env/lib/python3.11/site-packages/selenium/webdriver/common/driver_finder.py", line 67, in _binary_paths output...
View ArticleMicroPython • Re: SPI just Plain not working
Hi SHadewalker3652,How do you know that is not working?Are you using an oscilloscope to check the output?What do you have on the mosi(GP19) to connect to?Statistics: Posted by danjperron — Tue Jul 16,...
View ArticleGeneral • Re: why does core 1 pause while core 0 writes flash?
If your core1 program is merely pausing while the flash is programmed, then you aren't executing from the XIP at the time (that would cause it to crash totally).However, if you haven't done anything...
View ArticleRaspberry Pi OS • Re: Raspberry Pi Zero W hangs and becomes unreachable after...
Just got the official Rpi micro USB charger but the issue persists. I noticed that the power LED turns completely off when this happens. Now the question is whether it is a SD Card issue or a board...
View ArticleSDK • Re: Defining C defines at the "cmake .." stage
Add the following to your CMakeLists.txt file:Code: target_compile_definitions(${PROJECT_NAME} PUBLIC NODENAME=${NODENAME})Thanks! That seems to work! That just removed a big project issue for me!...
View Article