Skip to content

Latest commit

 

History

History
78 lines (43 loc) · 1.32 KB

led-digits-clock-HT16K33.md

File metadata and controls

78 lines (43 loc) · 1.32 KB

LED - Digital Clock, HT16K33

Breadboard for "LED - Digital Clock, HT16K33"

docs/breadboard/led-digits-clock-HT16K33.png

Fritzing diagram: docs/breadboard/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:

 

License

Copyright (c) 2012-2014 Rick Waldron [email protected] Licensed under the MIT license. Copyright (c) 2015-2023 The Johnny-Five Contributors Licensed under the MIT license.