Screenshot Designed for macOS 26. Requires macOS 14.6 or later.

Usage

How to use SerialPlotter:
1

Start with an Arduino Project

Create an Arduino project.
2

Initialize the Serial

void setup() {
  Serial.begin()
}
3

Print your Logs

Use this format: SomeKey: 6969 | AnotherKey: 4242Example:
Serial.print("Charging Rate: ");
Serial.print(currentChargingRate);
Serial.print(" | New Charge: ");
Serial.print(newCharge);
Serial.print(" | Battery: ");
Serial.print(batteryChargePercentage);
Serial.print(" | Charging: ");
Serial.print(charging);
Serial.print(" | Light: ");
Serial.print(String(lightOn ? "On" : "Off"));
Serial.print(" | Dimmer: ");
Serial.println(String(dimmerPercentage));
4

Run your Code and SerialPlotter

  • Connect your Arduino to your computer
  • Upload the code to it
  • Open SerialPlotter and click ▶︎ on the top right
  • Enjoy!