-
|
Hello! I have been attempting to load BestDefaultProgram onto my board, and I have verified that my board is able to receive and run basic Arduino programs, but I have encountered some issues when compiling. I also attempted to change Wire1 to just "Wire", but then the following issues were caused. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
This error pops up most commonly when you're using the wrong board support package. There are multiple support packages for the Pico, but only one is supported by the Gizmo Arduino library. Can you confirm in the board manager that you have the Pi Pico board package form Earle Philhower installed? You can check this by opening the board manager, searching for "Earle", and making sure you see an entry like this with the option to remove it. (If you see "install" instead of "remove", you do not have the board package installed.) You will also need to make sure you have selected the correct board when you compile the sketch. You can set this by selecting it from these menus: Tools -> Board: ... -> Raspberry Pi Pico/RP2040 -> Raspberry Pi Pico |
Beta Was this translation helpful? Give feedback.
-
|
I had the Earle Philhower version installed, but I believe it was that very last instruction that caused the problem. The board did indeed take the code now and compile correctly, thank you very much! I am a little rusty with the modern Arduino IDE, so this helped very much. |
Beta Was this translation helpful? Give feedback.



This error pops up most commonly when you're using the wrong board support package. There are multiple support packages for the Pico, but only one is supported by the Gizmo Arduino library.
Can you confirm in the board manager that you have the Pi Pico board package form Earle Philhower installed? You can check this by opening the board manager, searching for "Earle", and making sure you see an entry like this with the option to remove it. (If you see "install" instead of "remove", you do not have the board package installed.)
You will also need to make sure you have selected the correct board when you compile the sketch. You can set this by selecting it from these menus:
Tools -> Board:…