When using code
void setup()
{
Serial.begin(9600);
Serial.print("Value = ");
Serial.println(1234);
}
void loop()
{
}
The results in Serial Monitor are shown below. It immediately prints V the after a moment Value

When using code
void setup()
{
Serial.begin(9600);
Serial.print("Value = ");
Serial.println(1234);
}
void loop()
{
}
The results in Serial Monitor are shown below. It immediately prints V the after a moment Value
