I have designed a simple circuit with buttons and leds to be used with a raspberry Pico board.
Can someone advice me if this is correct so that I can order a PCB?
Thank you
I have designed a simple circuit with buttons and leds to be used with a raspberry Pico board.
Can someone advice me if this is correct so that I can order a PCB?
Thank you
Without the code, we can not tell if the right connections are used.
In the code the inputs and outputs must be declared.
Also what should happen with the leds and switches is in the code.
Pull-up or Pull-down resistors for the buttons are missing anyway. You can use internal pull-ups or pull-downs on the processor, but you need to declare the use of these in software, see here (with the button connected to 3V3, pull-down is what you will need).
Also you may want to or need to debounce the buttons. This example is for the raspberry Pi 4 but the principle is the same for the pico.