Serial.print(sine_1);
Serial.print("\t"); // a tab '\t' or space ' ' character is printed between the two values.
Serial.print(sine_2);
Serial.print("\t"); // a tab '\t' or space ' ' character is printed between the two values.
Serial.println(sine_3); // the last value is terminated by a carriage return and a newline characters.
delay(100);
}
}
Tried the above code with arduino uno and was able to plot the same in the serial plotter. But for ESP32 S3 Dev kit the same code is not working. It is getting uploaded but the serial plot and monitor does not seem to work.
Baud rate/ COM Port/ Board name everything is chosen correctly.