#include ShiftDisplay display(COMMON_CATHODE, 4); void setup() { for (int i = 5; i > 0; i--) { display.show(i, 400, ALIGN_RIGHT); // store number and show it for 400ms display.setDot(1, true); // add dot to stored number display.show(400); // show number with dot for 400ms } display.set("GO88"); // store "GO" } void loop() { display.show(); // show stored "GO" while in loop }