I have a Question regarding Arduino IDE:
Many old Arduino setup examples states that the Serial.begin() function always should begin with :
Serial.begin(9600); // (or 115200)
while (!Serial)
{
; // Wait for serial to connect
}
Now I have read a lot of comments saying that this "Wait-function" is no longer necessary ??
Is this an old routine, that's no longer necessary, or is it still important ???