GithubHelp home page GithubHelp logo

touchingepaperjs's Introduction

TouchingEPaper.js

A minimal Node.js library for direct access to an ePaper display along with a simple event system for touch screens.

Features:

  • Zero magic (This is a low-level library to use as a dependency for higer level libraries)
  • Touch events
  • 2 Dependencies

Usage

This library currently only works with the Waveshare 2.13in Touch ePaper screen.

import {initDisplay, drawImage, initTouch, tick, getTouchEvents} from 'touchingepaperjs'
//initalize the display
initDisplay('rpi_2in13', 0xff, 0, 'Full');
//draw arrayBuffer to the display
drawImage(arrayBuffer);

//initialize touch device
initTouch('rpi_2in13');
//tick should be called periodically ~16-33ms to poll for touch interactions
setTimout(tick, 16);
//retrieve accumulated touch events
let events = getTouchEvents();

/*
example event
{
  type: 'TouchStart',
  id: 0,
  x: 121,
  y: 22,
  size: 16,
  deltaX: 0,
  deltaY: 0
}
*/

Contributions

Pull requests are welcome, and I will merge them when I have time. If the changes are major or breaking to the API (as simple as it is), please sumbit an issue to discuss the changes.

touchingepaperjs's People

Contributors

jacobcpeters 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.