Giter Site home page Giter Site logo

async-hd44780's Introduction

async-hd44780

An asynchronous javascript library to control a LCD based on the Hitachi HD44780 controller.

The Hitachi HD44780 is an alphanumeric dot matrix LCD controller developed by Hitachi that was (and still) commonly used in various alphanumeric displays like the following:

This project is based on the Python code from the Adafruit_Python_CharLCD. It is ported to node.js and uses the James Barrel's rpi-gpio library for low-level GPIO access.

The code is entirely asynchronous and best suited for JS project where you cannot block the main event loop. It extensively make use of the Async library to ensure the correct sequence of operations.

Getting Started

npm install async-hd44780

Usage

Example:

var async = require('async');
var lcd = require('async-hd44780');

// Install signal handler to do a clean shutdown
process.on('SIGINT', () => {
    setImmediate(() => {
        // Invokes finalizer after pending I/O operations complete
        lcd.finalize( () => { process.exit(0) });
    }
});

async.series([
    (next) => { lcd.initialize(undefined, next); },
    (next) => { lcd.printLine("  Hello World!  ", 0, next); },
    (next) => { lcd.printLine("================", 1, next); },
]);

If you are having problems try enabling debugging by setting the environment variable DEBUG to a comma-separated list of modules to debug (or the special wildcard * to enable all module to print debug info). Example:

$ DEBUG=async-hd44780,rpi-gpio node ./lcd-test.js

async-hd44780's People

Contributors

fabriziobertocci avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.