Hello, I'm new to electronics and programming. I have a lifetime of experience with computers but in completely different directions. Because I am retired due to illness and I have a lot of free time, I decided not to sit around for nothing. So, having a Rasperry Py 4 model B and a Pi Pico at...
Hi,
I'm using CircuitPython at Raspberry Pi Pico W.
I want to turn off the RF module before it enters Deep Sleep mode, I wrote the code as follows:
rfen = digitalio.DigitalInOut(board.GP23)
rfen.direction = digitalio.Direction.OUTPUT
As a result, the following error occurred:
AttributeError...