/*
 * LAB Name: Raspberry Pi Pico Arduino IDE (Project Template)
 * Author: Khaled Magdy
 * For More Info Visit: www.DeepBlueMbedded.com
*/
 
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
}
 
void loop() {
  // Toggle onBoard LED
  digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN));
  delay(100);
}
$abcdeabcde151015202530354045505560fghijfghij