Where is Serial.begin() Serial.println("hi") supposed to output to?

93 Views Asked by At

I have a teensy in midi mode, and I thought Serial.begin(9600) and Serial.println("hello world") ; would show something in the console. It doesn't show anything. Where is Serial.println() supposed to output to? I would like to see feedback from my potentiometer.

2

There are 2 best solutions below

0
On

It outputs to the device which you are connected to via Serial. For example, if you are connected to your PC, you can access it with the Serial monitor embedded in Arduino IDE, or other applications such as Putty by choosing the right port COM number and baud rate.

0
On

Found it , it is under Arduino -> Tools -> Serial Monitor.