Hi there
this is for a school project. I have made a custom rp2040 PCB. The board is for a mouse.
When I try to upload the code with the Arduino IDE and the board from Earle Pillhower, there is just no COM Port showing up. I can see it as a drive and upload to that, but after, just nothing happens. The board disconnects and reconnects again.
What went wrong? Is there a mistake in the schematic?
I have literally no Idea what's going on, I just coppied the Schematic from the Pi Pico and added my components.
Code:
this is for a school project. I have made a custom rp2040 PCB. The board is for a mouse.
When I try to upload the code with the Arduino IDE and the board from Earle Pillhower, there is just no COM Port showing up. I can see it as a drive and upload to that, but after, just nothing happens. The board disconnects and reconnects again.
What went wrong? Is there a mistake in the schematic?
I have literally no Idea what's going on, I just coppied the Schematic from the Pi Pico and added my components.
Code:
Code:
// the setup function runs once when you press reset or power the boardvoid setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(25, OUTPUT);}// the loop function runs over and over again forevervoid loop() { digitalWrite(25, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(25, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second}
- Image may be NSFW.
Clik here to view.
- Image may be NSFW.
Clik here to view.
- Image may be NSFW.
Clik here to view.
Statistics: Posted by RyzerPhenix — Mon May 27, 2024 5:38 pm — Replies 0 — Views 18