Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Ameya Angadi
Published © GPL3+

Getting Started with Raspberry Pi Pico in Arduino IDE

Learn how to set up Raspberry Pi Pico/Pico W and program it using the Arduino IDE.

BeginnerFull instructions provided30 minutes534
Getting Started with Raspberry Pi Pico in Arduino IDE

Things used in this project

Hardware components

Raspberry Pi Pico
Raspberry Pi Pico
×1
Raspberry Pi Pico W
Raspberry Pi Pico W
×1
Micro-USB to USB Cable (Generic)
Micro-USB to USB Cable (Generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Blink

Arduino
Sample Code For Pico To Blink The On-Board LED.
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);
  delay(1000);
  digitalWrite(LED_BUILTIN, LOW);
  delay(1000);    
}

Credits

Ameya Angadi
7 projects • 4 followers
Contact

Comments

Please log in or sign up to comment.