#include <Arduino.h>
// put function declarations here:
int myFunction(int, int);
void setup() {
// put your setup code here, to run once:
Serial1.begin(115200);
// This line is essential for Pi Pico but optional for Uno
while (!Serial1) {
delay(10);
}
Serial1.println("Pico is now talking to the terminal!");
}
void loop() {
// put your main code here, to run repeatedly:
Serial1.println("Picooooo!");
}
// put function definitions here:
int myFunction(int x, int y) {
return x + y;
}
// lets hope