/* I am practising code that I have found
* on youtube
* Arduino IDE 2.0 - Testing Release Candidate 3
*
* Video Time 20:10
* This is intended to be used with the 2.0 IDE to
* show how the plotter works.
* ALSO note bottom right hand corner that there
* is a WokWi plotter icon and it works perfectly ;-)
*
* My favorite discord channel is
* Engineering Artists
*/
int random_variable;
int static_variable = 500;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
random_variable = random(0, 1000);
Serial.print("Variable 1: ");
Serial.print(random_variable);
Serial.print(", ");
Serial.print("Variable 2: ");
Serial.println(static_variable);
}