Skip to content

v2.0.0

Compare
Choose a tag to compare
@andrewjaykeller andrewjaykeller released this 17 Jul 21:00
· 40 commits to master since this release

2.0.0

New Features

  • index.js file allows for ES6 destructing

Breaking Changes

  • Change name of OpenBCIBoard to Cyton to follow new naming convention.
    Simply change:
    const OpenBCIBoard = require('openbci').OpenBCIBoard;
    const ourBoard = new OpenBCIBoard();
    
    const Cyton = require('openbci').Cyton;
    const ourBoard = new Cyton();
    
  • Major change to how board is initialized with removal of factory paradigm.
  • New dependency called openbci-utilities.
  • Rejections are errors with messages, so check err.message for info on message, don't expect string.

Bug Fixes

  • Documentation error with testSignal function.

Enhancements

  • Add more tests for public API functions.