I've followed a few threads on the Pi forum and I have managed to get the standard gpio node to work (Tested output on Pin 11 and input on Pin 23 using a Pibrella add-on board)
So what I did was from a termiinal
sudo apt remove python3-rpi.gpio
to remove the old RPi.GPIO module
and then
pip3 install --break-system-packages rpi-lgpio
which is supposed to be a drop-in replacement for the old module I tried several methods to install rpi-lgpio and this was the one that worked for me
This works for GPIO out on/off. thank you very much, this solves a big part of the issues we encounter to control our lab. However, using GPIO in (to connect to my puls flow meters) doesn't work.
I wonder how cross platform (on Pi) this is... as-in would it also work on Ubuntu on Pi or Debian on Pi ?
Also is it only for bookworm onwards ? or would it work on "older" installs. I.E. if I make the script switch over to this/force install lpgio on anything with a BCM processor... ? Thoughts ?