Blinks Service Port - Quick Start Guide

In the Quick Start Guide, please add:

  1. The serial port is at a fixed 500k baud rate.
  2. To write to the Serial port from a sketch,
    Add “#include Serial.h” and instantiate a ServicePortSerial class. Call the begin method within setup().

E.g.
#include “Serial.h”
ServicePortSerial sp;

void setup() {
sp.begin();
}

void loop() {
sp.println(“Hello world”);
}

1 Like

Great steps. Now added to the quick start guide. Perhaps we can add some screenshots in as well to make each of the settings extra clear.

1 Like