Skip to content

Commit

Permalink
Update menu_a_la_carte.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdenkampe committed May 9, 2023
1 parent 382875a commit 64b5730
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions examples/menu_a_la_carte/menu_a_la_carte.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2963,15 +2963,15 @@ float getBatteryVoltage() {
// Arduino Setup Function
// ==========================================================================
void setup() {
/** Start [setup_wait] */
// Wait for USB connection to be established by PC
// NOTE: Only use this when debugging - if not connected to a PC, this
// could prevent the script from starting
#if defined SERIAL_PORT_USBVIRTUAL
while (!SERIAL_PORT_USBVIRTUAL && (millis() < 10000L)) {
// wait
}
#endif
/** Start [setup_wait] */
// Wait for USB connection to be established by PC
// NOTE: Only use this when debugging - if not connected to a PC, this
// could prevent the script from starting
#if defined SERIAL_PORT_USBVIRTUAL
while (!SERIAL_PORT_USBVIRTUAL && (millis() < 10000L)) {
// wait
}
#endif
/** End [setup_wait] */

/** Start [setup_prints] */
Expand All @@ -2990,7 +2990,7 @@ void setup() {
Serial.print(F("TinyGSM Library version "));
Serial.println(TINYGSM_VERSION);
Serial.println();
/** End [setup_prints] */
/** End [setup_prints] */

/** Start [setup_softserial] */
// Allow interrupts for software serial
Expand Down

2 comments on commit 64b5730

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All sensor and variable subclasses must be included in the Menu a la Carte example
missing_menu_docs

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All sensor and variable subclasses must be included in the Menu a la Carte example
missing_menu_docs

Please sign in to comment.