void setup() { Serial.begin(115200); } byte counter = 0; void loop() { Serial.write(counter++); delay(100); }