Skip to main content
formatted code for readability
Source Link
sa_leinad
  • 3.2k
  • 2
  • 24
  • 53

You want something like this using the serial monitor: if((homeMenuActivated) == true) { Serial.println ("Program Number 1"); } I

if((homeMenuActivated) == true)
{
  Serial.println ("Program Number 1");
}

I am kind of glad you asked this, as I am working on a similar program with arduinos that can do the same thing you want.

You want something like this using the serial monitor: if((homeMenuActivated) == true) { Serial.println ("Program Number 1"); } I am kind of glad you asked this, as I am working on a similar program with arduinos that can do the same thing you want.

You want something like this using the serial monitor:

if((homeMenuActivated) == true)
{
  Serial.println ("Program Number 1");
}

I am kind of glad you asked this, as I am working on a similar program with arduinos that can do the same thing you want.

Source Link
Vex
  • 13
  • 3

You want something like this using the serial monitor: if((homeMenuActivated) == true) { Serial.println ("Program Number 1"); } I am kind of glad you asked this, as I am working on a similar program with arduinos that can do the same thing you want.