Quantcast
Channel: Raspberry Pi Forums

Python • Re: DIY touchpad with RPi.GPIO and gpiozero

If you are using the TTP223 then it is an open-drain output. You need to turn the pull-up on for the input to the Pi.In addition, if your sensor is connected to GPIO25 and GPIO25 is also connected to...

View Article


Python • Re: Kivy (again sorry) on pi trixie without DeskTop Environment ?

Its been a while since I was enthusiastically putting the latest python release onto a rpi, but when I did there was nothing to stop me having several python versions running on top of the version...

View Article


Python • Re: ModuleNotFoundError: No module named 'adafruit_dht' >>>

Removing the pullup resistor only changed the level when there are no pulse frpm around 2V to 1V. Now I see the LED solid.The pulses seen on the data pin should be either close to 3.3V or close to...

View Article

Python • Using Multiple Bluetooth devices with RPi 5 and python

I have a Raspberry Pi 5 project where I'm trying to use two Bluetooth devices simultaneously in a python script. The devices are a PS4 game controller and DW-CT14++ Bluetooth audio amplifier. The...

View Article

Python • Re: Using Multiple Bluetooth devices with RPi 5 and python

A problem could be that subprocess.run is waiting till speach is spoken. From the docs "Run the command described by args. Wait for command to complete ..."While the speak method is running, the event...

View Article


Python • Module "keyboard" not found for Trixie

Is there a replacement for Trixie version?Statistics: Posted by Msiipola — Fri Feb 27, 2026 5:38 pm

View Article

Python • Re: Module "keyboard" not found for Trixie

Are you using python in a virtual environment?This worked for me in a venvCode: (env) pi@pi4new:~/myenv $ pip install keyboardLooking in indexes: https://pypi.org/simple,...

View Article