Giter Club home page Giter Club logo

nextion's Introduction

nextion

Communicate with ITEAD's Nextion HMI Devices

pic of nextion device

Status

  • Support return data
  • Support operation commands
  • Reasonable, high-level API; don't require user to send raw commands
    • System-level abstraction
    • Component-level abstraction
  • Tessel 2 support
  • Remove serialport dependency

Basic Usage

COM Port, USB-to-UART adapter, etc.

const Nextion = require('nextion');

// CH340G usually shows up at this path on macOS
Nextion.fromPort('/dev/tty.SLAB_USBtoUART')
  .then(nextion => {
    console.log('Listening...');

    nextion.on('touchEvent', data => {
      console.log(data);
    });
  });

For port auto-detection, try:

const Nextion = require('nextion');

Nextion.create()
  .then(nextion => {
    // do exciting stuff here
  });

Tessel 2

const tessel = require('tessel');
const Nextion = require('nextion/minimal');

const uart = new tessel.port.A.UART({
  baudrate: 9600
});

Nextion.fromSerial(uart)
  .then(nextion => {
    // Yipper McCheese!
  });

The nextion/minimal module is for resource-constrained systems; it's compressed and does not include source maps.

Compatibility

As long as the argument passed into Nextion.fromSerial is a Duplex stream or a duck-typed one (a la serialport), you should be able to use it. Hack away!

Events

The Nextion instance (nextion) in above examples is an EventEmitter. If the device sends any of these over the UART channel, the Nextion instance will emit a corresponding event (w/ data, if any).

  • Events (Table 2)
    • 0x65 - touchEvent: Touch event return data
    • 0x66 - pageId: Current page ID
    • 0x67 - touchCoordinate: Touch coordinate data
    • 0x68 - touchCoordinateOnWake: Touch coordinate data (on wake)
    • 0x70 - stringData: String variable data
    • 0x71 - numericData: Numeric variable data
    • 0x86 - autoSleep: Device automatically enters sleep mode
    • 0x87 - autoWake: Device automatically wakes from sleep mode
    • 0x88 - startup: Successful system startup
    • 0x89 - cardUpgrade: Start SD card upgrade
    • 0xfd - transmitFinished: Data transmit finished
    • 0xfe - transmitReady: Ready to receive data transmission

TODO: Describe shape of data for data-emitting events.

Motivation

  • Send & receive events over UART to a Nextion device (hardware reference)
  • Support Tessel 2
  • Support USB-to-UART serial adapters for debugging
  • Endgame: combine a Tessel 2 w/ a Nextion to design/implement a (mainly) JS-based home environmental control panel/dashboard.

Future:

  • Ensure support on popular ARMv6/7/8
  • Ensure support on popular (non-Tessel) MIPS devices
  • Interface into GUI designer commands

Development

  • Use environment variable DEBUG=nextion* for debug output.
  • To run end-to-end tests against a connected device, read test/e2e/README.md, then execute yarn test:e2e.
  • For serial port debugging, use DEBUG=nextion*,serialport.

Notes

ARM

If the serialport module supports the architecture, this module should work out-of-the-box, meaning RPi's and BBB's are theoretically covered.

MIPS

This shouldn't be too bad, because the Tessel 2 is MIPS-based, but we require Node.js v4. Other MIPS-based boards I've used have had trouble getting it compiled, packaged, or running at a respectable speed.

License

Šī¸ 2017 Christopher Hiller. Licensed MIT.

nextion's People

Contributors

boneskull avatar snyk-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

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