Daniel van der Liet
Published

Terminus Console — Firmware-Driven Serial UI for Embedded De

A Windows serial console that lets embedded firmware drive UI elements like progress, status, variables, and popups using serial tags

BeginnerProtip1 hour4
Terminus Console — Firmware-Driven Serial UI for Embedded De

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1

Software apps and online services

Windows 10
Microsoft Windows 10

Hand tools and fabrication machines

USB Cable

Story

Read more

Code

Code Example

Arduino
Arduino code example
void loop() {
  Serial.println("<w1>Booting...");
  Serial.println("<progress>30</progress>");

  Serial.println("<var1lbl>Temperature</var1lbl>");
  Serial.println("<var1>42</var1>");

  Serial.println("<bool1 success>Connected");

  delay(1000);

  Serial.println("<pop warning>Overcurrent detected</pop>");
}

Credits

Daniel van der Liet
1 project • 0 followers
Embedded developer building hardware prototypes and firmware tools for Arduino and ESP32, focused on debugging, diagnostics, and testing.

Comments