Hi,
i am new to arduino and have no experience in programming. I hope you can help me.
I´m using the ShieldBuddyTC275 from Hitex and I tested a few programms (different LEDs, buttons and a Programm for 37D Metal Gearmotor from Pololu). Everything is working exept of the serial monitor.
I tried this code to test, if the serial monitor is working:
void setup() {
// put your setup code for core 0 here, to run once:
Serial.begin(9600);
Serial.println("Hello World");
}
void loop() {
// put your main code for core 0 here, to run repeatedly:
}
I choosed 9600 Baud in the serial monitor, but the serial monitor is always empty.
What am I doing wrong?