Table of Contents

debugStop()

debugStop() stops debug output.

debugStop command operation flow

void debugStop()

Commands

Command Arguments Return Value Operation
debugStop() None void Stops debug output.

Example

void setup() {
  debugStart(115200);  // Set the port and baud rate for debug output.
}
 
void loop() {
  debugln("before stop");  // Output the debug value followed by a newline.
  debugStop();  // Stop debug output.
  debugln("ignored");  // Output the debug value followed by a newline.
}

Precautions

Built-in Commands in the Same Category

← Built-in Command List