FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

pbertie/inkyphat-node: NodeJS Module to control Inky pHAT on Raspberry Pi (e-Paper Screen). · GitHub

Repository files navigation

inkyphat

A NodeJS Module to allow you to control the Inkyphat for Raspberry Pi. Based on the Python code available from Pimoroni.

Installation

npm install inkyphat

Usage

const inkyphat = require('inkyphat')();

async function main() {

  await inkyphat.init();

  inkyphat.setPixel(1, 5, inkyphat.RED);

  inkyphat.drawRect(50, 100, inkyphat.BLACK);

  await inkyphat.redraw();

  await inkyphat.destroy();
}
main();

Tests

npm test - Run Tests.

npm run coverage - Run Tests and display coverage.

npm run lint - Run ES Lint

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

About

NodeJS Module to control Inky pHAT on Raspberry Pi (e-Paper Screen).

Topics

Resources

Stars

34 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages


Back | FazBrowse Home | New Git URL