Breadboard for "LED - Digital Clock, HT16K33"
Fritzing diagram: led-digits-clock-HT16K33.fzz
Run this example from the command line with:
node eg/led-digits-clock-HT16K33.js
const moment = require("moment");
const { Board, Led } = require("johnny-five");
var board = new Board();
board.on("ready", () => {
const digits = new Led.Digits({
controller: "HT16K33",
});
let toggle = 0;
setInterval(() => {
// Toggle the colon part: on for a second, off for a second.
digits.print(time(toggle ^= 1));
}, 1000);
});
function time(showColon) {
var display = " " + moment().format(
showColon ? "h:mm" : "h mm"
);
return display.slice(-5);
}
Additional Notes
Learn More: