Quantcast
Channel: Raspberry Pi Forums

Python • Re: Raspberry pi Bluetooth

try this... sudo pip3 install bluezeroStatistics: Posted by pfharlock — Sat Mar 29, 2025 1:55 pm

View Article


Python • Re: How to install dht22 (am2302) digital temperature humidity...

On Bookworm it s now preferred to use a Python venv if you are going to use pip to install any libraries.The link in the text you quoted gives some information about how to do itFor more information...

View Article


Python • Pi5 - Unable to open USB port with Pyserial

I'm using Pyserial to manage serial communication over USB (FTDI drivers) to a Dynamixel U2D2 controller. Using the bookworm 64-bit OS on a Pi4B works perfectly, but on a Pi5, the serial.Serial(port,...

View Article

Python • SK6812RGBW or WS2812 support for RPi5?

Hi there,has anyone played around with PIOLib, like in the example fromhttps://www.raspberrypi.com/news/piolib ... o-control/?The thing is, that I would like to "easily" turn on LEDs on my...

View Article

Python • Re: SK6812RGBW or WS2812 support for RPi5?

I used the PIOlib example a bit, then moved over to Pico which was a better fit for my use case (low power).I didn't have any problems using PIOlib on my Pi 5.Statistics: Posted by rpdom — Thu Apr 03,...

View Article


Python • Re: Pi5 - Unable to open USB port with Pyserial

Which device are you using on the Pi5 - /dev/serial0 or /dev/ttyAMA0 etc.?Statistics: Posted by neilgl — Thu Apr 03, 2025 6:48 pm

View Article

Python • Re: picamera2 not working in venv

When you created your venv did you do so with the --system-site-packages command line argument?No I used the venv/bin/activateStatistics: Posted by Manasrpi5 — Thu Apr 03, 2025 8:59 pm

View Article

Python • PWM output problem after upgrade OS.

Test on Raspberry Pi 5B, I use this code works fine:Code: from rpi_hardware_pwm import HardwarePWMpwm0 = HardwarePWM(pwm_channel = 0, hz = 1000, chip = 2)after run:Code: sudo apt upgraderise exception...

View Article