Home

Awesome

THIS REPOSITORY HAS BEEN DEPRECATED AND IS NO LONGER IN ACTIVE DEVELOPMENT.

OpenBCI WiFi Shield NodeJS SDK

<p align="center"> <img alt="banner" src="/images/WiFi_front_product.jpg/" width="600"> </p> <p align="center" href=""> Make programming with OpenBCI reliable, easy, research grade and fun! </p>

codecov Dependency Status npm js-semistandard-style

Welcome!

First and foremost, Welcome! :tada: Willkommen! :confetti_ball: Bienvenue! :balloon::balloon::balloon:

Thank you for visiting the OpenBCI WiFi Shield NodeJS SDK repository.

This document (the README file) is a hub to give you some information about the project. Jump straight to one of the sections below, or just scroll down to find out more.

What are we doing?

The problem

So, if even the very best developers integrate the current easy to use Cyton and Ganglion NodeJS drivers, they are still burdened by the limitations of the physical hardware on the OpenBCI system.

The solution

The OpenBCI WiFi Shield NodeJS SDK will:

Using WiFi physically solves limitations with the current state-of-the-art open source bio sensor. The goal for the WiFi Shield firmware was to create a one up data pipeline, where scientific data in JSON is sent instead of raw/compressed ADC counts (yuk!) to make programming with OpenBCI reliable, easy, research grade and fun!

Who are we?

The founder of the OpenBCI WiFi Shield NodeJS SDK is AJ Keller.

<a href="https://www.mozillascience.org/about"> <img src="http://mozillascience.github.io/working-open-workshop/assets/images/science-fox.svg" align="right" width=140 </img> </a>

AJ is an invited member of the 4th cohort Open Leaders Cohort of the Mozilla Science Lab who brought together open science advocates from around the world to participate in the first Working Open Workshop in Berlin in February 2016. The training exercises (which are free and easy to reuse) focused on how to build and effectively engage communities so they can work together to develop tools and resources for the greater good.

What do we need?

You! In whatever way you can help.

We need expertise in programming, user experience, software sustainability, documentation and technical writing and project management.

We'd love your feedback along the way.

Our primary goal is to make programming with OpenBCI reliable, easy, research grade and fun, and we're excited to support the professional development of any and all of our contributors. If you're looking to learn to code, try out working collaboratively, or translate you skills to the digital domain, we're here to help.

Get involved

If you think you can help in any of the areas listed above (and we bet you can) or in any of the many areas that we haven't yet thought of (and here we're sure you can) then please check out our contributors' guidelines and our roadmap.

Please note that it's very important to us that we maintain a positive and supportive environment for everyone who wants to participate. When you join us we ask that you follow our code of conduct in all interactions both on and offline.

Contact us

If you want to report a problem or suggest an enhancement we'd love for you to open an issue at this github repository because then we can get right on it. But you can also contact AJ by email (pushtheworldllc AT gmail DOT com) or on twitter.

You can also hang out, ask questions and share stories in the OpenBCI NodeJS room on Gitter.

Find out more

You might be interested in:

And of course, you'll want to know our:

Thank you

Thank you so much (Danke schön! Merci beaucoup!) for visiting the project and we do hope that you'll join us on this amazing journey to make programming with OpenBCI fun and easy.

Documentation

Table of Contents:


  1. Installation
  2. TL;DR
  3. Developing
  4. Contribute
  5. License
  6. General Overview
  7. Classes
  8. Typedefs
  9. Wifi

<a name="install"></a> Installation:

We assume you have NodeJS installed already, if you don't please download the latest stable version from NodeJS.

Then simply using the node package manager command line tool, enter:

npm install @openbci/wifi

<a name="tldr"></a> TL;DR:

Get connected and start streaming right now with the example code.

const Wifi = require('@openbci/wifi');
let wifi = new Wifi({
  debug: false,
  verbose: true,
  latency: 10000
});

wifi.on(k.OBCIEmitterSample, (sample) => {
  for (let i = 0; i < wifi.getNumberOfChannels(); i++) {
    console.log("Channel " + (i + 1) + ": " + sample.channelData[i].toFixed(8) + " Volts.");
     // prints to the console
     //  "Channel 1: 0.00001987 Volts."
     //  "Channel 2: 0.00002255 Volts."
     //  ...
     //  "Channel 8: -0.00001875 Volts."
  }
});

wifi.searchToStream({
    sampleRate: 1000 // Custom sample rate
    shieldName: 'OpenBCI-2C34', // Enter the unique name for your wifi shield
    streamStart: true // Call to start streaming in this function
  }).catch(console.log);

<a name="developing"></a> Developing:

<a name="developing-running"></a> Running:

npm install

<a name="developing-testing"></a> Testing:

npm test

<a name="contribute"></a> Contribute:

  1. Checkout contributors' guidelines
  2. Fork it!
  3. Branch off of development: git checkout development
  4. Create your feature branch: git checkout -b my-new-feature
  5. Make changes
  6. If adding a feature, please add test coverage.
  7. Ensure tests all pass. (npm test)
  8. Commit your changes: git commit -m 'Add some feature'
  9. Push to the branch: git push origin my-new-feature
  10. Submit a pull request. Make sure it is based off of the development branch when submitting! :D

<a name="license"></a> License:

MIT

<a name="general-overview"></a> General Overview

Initialization

Initializing the board:

const Wifi = require('../../openBCIWifi');
const ourBoard = new Wifi();

Go checkout out the get streaming example!

For initializing with options, such as verbose print outs:

const Wifi = require('../../openBCIWifi');
const wifi = new Wifi({
  verbose: true
});

or if you are using ES6:

import Wifi from '../../openBCIWifi';
import { constants } from '@openbci/utilities';
const wifi = new Wifi();
wifi.connect("OpenBCI-2114");

To debug, it's amazing, do:

const Wifi = require('../../openBCIWifi');
const wifi = new Wifi({
    debug: true
});

Sample properties:

The power of this module is in using the sample emitter, to be provided with samples to do with as you wish.

To get a 'sample' event, you need to:

  1. Install the 'sample' event emitter
  2. Call .searchToStream(_options_)
const Wifi = require('../../openBCIWifi');
let wifi = new Wifi({
  debug: false,
  verbose: true,
  latency: 10000
});

wifi.on(k.OBCIEmitterSample, (sample) => {
  for (let i = 0; i < wifi.getNumberOfChannels(); i++) {
    console.log("Channel " + (i + 1) + ": " + sample.channelData[i].toFixed(8) + " Volts.");
     // prints to the console
     //  "Channel 1: 0.00001987 Volts."
     //  "Channel 2: 0.00002255 Volts."
     //  ...
     //  "Channel 8: -0.00001875 Volts."
  }
});

wifi.searchToStream({
    sampleRate: 1000 // Custom sample rate
    shieldName: 'OpenBCI-2C34', // Enter the unique name for your wifi shield
    streamStart: true // Call to start streaming in this function
  }).catch(console.log);

Close the connection with .streamStop() and disconnect with .disconnect()

const Wifi = require('../../openBCIWifi');
const wifi = new Wifi();
wifi.streamStop().then(wifi.disconnect());

Classes

<dl> <dt><a href="#Wifi">Wifi</a></dt> <dd></dd> </dl>

Typedefs

<dl> <dt><a href="#InitializationObject">InitializationObject</a> : <code>Object</code></dt> <dd></dd> </dl>

<a name="Wifi"></a>

Wifi

Kind: global class Author: AJ Keller (@aj-ptw)

<a name="new_Wifi_new"></a>

new Wifi(options)

The initialization method to call first, before any other method.

ParamTypeDescription
options<code>InitializationObject</code>(optional) - Board optional configurations.

<a name="Wifi+options"></a>

wifi.options : <code>InitializationObject</code>

Kind: instance property of <code>Wifi</code> <a name="Wifi+_accelArray"></a>

wifi._accelArray

Private Properties (keep alphabetical)

Kind: instance property of <code>Wifi</code> <a name="Wifi+curOutputMode"></a>

wifi.curOutputMode

Public Properties (keep alphabetical)

Kind: instance property of <code>Wifi</code> <a name="Wifi+bufferRawDataPackets"></a>

wifi.bufferRawDataPackets(rawDataPackets) ⇒ <code>Array</code>

This function is for redundancy after a long packet send, the wifi firmware can resend the same packet again, using this till add redundancy on poor networks.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw)

ParamDescription
rawDataPackets-

<a name="Wifi+channelOff"></a>

wifi.channelOff(channelNumber) ⇒ <code>Promise.<T></code>

Send a command to the board to turn a specified channel off

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw)

Param
channelNumber

<a name="Wifi+channelOn"></a>

wifi.channelOn(channelNumber) ⇒ <code>Promise.<T></code> | <code>*</code>

Send a command to the board to turn a specified channel on

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw)

Param
channelNumber

<a name="Wifi+channelSet"></a>

wifi.channelSet(channelNumber, powerDown, gain, inputType, bias, srb2, srb1) ⇒ <code>Promise</code>

To send a channel setting command to the board

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - resolves if sent, rejects on bad input or no board Author: AJ Keller (@aj-ptw)

ParamDescription
channelNumberNumber (1-16)
powerDownBool (true -> OFF, false -> ON (default)) turns the channel on or off
gainNumber (1,2,4,6,8,12,24(default)) sets the gain for the channel
inputTypeString (normal,shorted,biasMethod,mvdd,temp,testsig,biasDrp,biasDrn) selects the ADC channel input source
biasBool (true -> Include in bias (default), false -> remove from bias) selects to include the channel input in bias generation
srb2Bool (true -> Connect this input to SRB2 (default), false -> Disconnect this input from SRB2) Select to connect (true) this channel's P input to the SRB2 pin. This closes a switch between P input and SRB2 for the given channel, and allows the P input to also remain connected to the ADC.
srb1Bool (true -> connect all N inputs to SRB1, false -> Disconnect all N inputs from SRB1 (default)) Select to connect (true) all channels' N inputs to SRB1. This effects all pins, and disconnects all N inputs from the ADC.

<a name="Wifi+impedanceSet"></a>

wifi.impedanceSet(channelNumber, pInputApplied, nInputApplied) ⇒ <code>Promise</code>

To send an impedance setting command to the board

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - resolves if sent, rejects on bad input or no board Author: AJ Keller (@aj-ptw)

ParamTypeDescription
channelNumber<code>Number</code>(1-16)
pInputApplied<code>Boolean</code>(true -> ON, false -> OFF (default))
nInputApplied<code>Boolean</code>(true -> ON, false -> OFF (default))

<a name="Wifi+connect"></a>

wifi.connect(o) ⇒ <code>Promise</code>

The essential precursor method to be called initially to establish a ble connection to the OpenBCI ganglion board.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - If the board was able to connect. Author: AJ Keller (@aj-ptw)

ParamTypeDescription
o<code>Object</code>
o.burst<code>Boolean</code>Set this option true to have UDP do burst mode 3x
o.examineMode<code>Boolean</code>Set this option true to connect to the WiFi Shield even if there is no board attached.
o.ipAddress<code>String</code>The ip address of the shield if you know it
o.latency<code>Number</code>If you want to set the latency of the system you can here too.
o.protocol<code>String</code>Either send the data over TCP or UDP. UDP seems better for either a bad router or slow router. Default is TCP
o.sampleRateThe sample rate to set the board connected to the wifi shield
o.shieldName<code>String</code>If supplied, will search for a shield by this name, if not supplied, will connect to the first shield found.
o.streamStart<code>Boolean</code>Set true if you want the board to start streaming.

<a name="Wifi+disconnect"></a>

wifi.disconnect() ⇒ <code>Promise</code>

Closes the connection to the board. Waits for stop streaming command to be sent if currently streaming.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - fulfilled by a successful close, rejected otherwise. Author: AJ Keller (@aj-ptw) <a name="Wifi+isConnected"></a>

wifi.isConnected() ⇒ <code>boolean</code>

Checks if the driver is connected to a board.

Kind: instance method of <code>Wifi</code> Returns: <code>boolean</code> - - True if connected. Author: AJ Keller (@aj-ptw) <a name="Wifi+isSearching"></a>

wifi.isSearching() ⇒ <code>boolean</code>

Checks if noble is currently scanning.

Kind: instance method of <code>Wifi</code> Returns: <code>boolean</code> - - True if streaming. Author: AJ Keller (@aj-ptw) <a name="Wifi+isStreaming"></a>

wifi.isStreaming() ⇒ <code>boolean</code>

Checks if the board is currently sending samples.

Kind: instance method of <code>Wifi</code> Returns: <code>boolean</code> - - True if streaming. Author: AJ Keller (@aj-ptw) <a name="Wifi+getBoardType"></a>

wifi.getBoardType() ⇒ <code>*</code>

Get the current board type

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+getFirmwareVersion"></a>

wifi.getFirmwareVersion() ⇒ <code>String</code>

Get the firmware version of connected and synced wifi shield.

Kind: instance method of <code>Wifi</code> Returns: <code>String</code> - The version number Note: This is dependent on if you called connect Author: AJ Keller (@aj-ptw) <a name="Wifi+getIpAddress"></a>

wifi.getIpAddress() ⇒ <code>null</code> | <code>String</code>

Return the ip address of the attached WiFi Shield device.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+getLatency"></a>

wifi.getLatency() ⇒ <code>Number</code>

Return the latency to be set on the WiFi Shield.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+getMacAddress"></a>

wifi.getMacAddress() ⇒ <code>null</code> | <code>String</code>

Return the MAC address of the attached WiFi Shield device.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+getNumberOfChannels"></a>

wifi.getNumberOfChannels() ⇒ <code>Number</code>

This function is used as a convenience method to determine how many channels the current board is using. Note: This is dependent on if your wifi shield is attached to another board and how many channels are there.

Kind: instance method of <code>Wifi</code> Returns: <code>Number</code> - A number Author: AJ Keller (@aj-ptw) <a name="Wifi+getSampleRate"></a>

wifi.getSampleRate() ⇒ <code>Number</code>

Get the the current sample rate is. Note: This is dependent on if you configured the board correctly on setup options

Kind: instance method of <code>Wifi</code> Returns: <code>Number</code> - The sample rate Author: AJ Keller (@aj-ptw) <a name="Wifi+getShieldName"></a>

wifi.getShieldName() ⇒ <code>null</code> | <code>String</code>

Return the shield name of the attached WiFi Shield device.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+impedanceStart"></a>

wifi.impedanceStart() ⇒ <code>global.Promise</code> | <code>Promise</code>

Call to start testing impedance.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+impedanceStop"></a>

wifi.impedanceStop() ⇒ <code>global.Promise</code> | <code>Promise</code>

Call to stop testing impedance.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+searchToStream"></a>

wifi.searchToStream(o) ⇒ <code>Promise</code>

Used to search for an OpenBCI WiFi Shield. Will connect to the first one if no shieldName is supplied.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - Resolves after successful connection, rejects otherwise with Error. Author: AJ Keller (@aj-ptw)

ParamTypeDescription
o<code>Object</code>(optional)
o.sampleRateThe sample rate to set the board connected to the wifi shield
o.shieldName<code>String</code>If supplied, will search for a shield by this name, if not supplied, will connect to the first shield found.
o.streamStart<code>Boolean</code>Set true if you want the board to start streaming.
o.timeout<code>Number</code>The time in milli seconds to wait for the system to try and auto find and connect to the shield.

<a name="Wifi+setSampleRate"></a>

wifi.setSampleRate(sampleRate) ⇒ <code>Promise</code>

Set the sample rate of the remote OpenBCI shield

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw)

ParamTypeDescription
sampleRate<code>Number</code>the sample rate you want to set to.

<a name="Wifi+syncSampleRate"></a>

wifi.syncSampleRate() ⇒ <code>Promise</code>

Returns the sample rate from the board

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+searchStart"></a>

wifi.searchStart() ⇒ <code>Promise</code>

List available peripherals so the user can choose a device when not automatically found.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - If scan was started Author: AJ Keller (@aj-ptw) <a name="Wifi+searchStop"></a>

wifi.searchStop() ⇒ <code>global.Promise</code> | <code>Promise</code>

Called to end a search.

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw) <a name="Wifi+sdStop"></a>

wifi.sdStop() ⇒ <code>Promise</code>

Sends the stop SD logging command to the board. If not streaming then eot event will be emitted with request response from the board.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - Resolves when written Author: AJ Keller (@aj-ptw) <a name="Wifi+syncRegisterSettings"></a>

wifi.syncRegisterSettings() ⇒ <code>Promise.<T></code> | <code>*</code>

Syncs the internal channel settings object with a cyton, this will take about over a second because there are delays between the register reads in the firmware.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise.<T></code> | <code>*</code> - Resolved once synced, rejects on error or 2 second timeout Author: AJ Keller (@aj-ptw) <a name="Wifi+softReset"></a>

wifi.softReset() ⇒ <code>Promise</code>

Sends a soft reset command to the board

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - Fulfilled if the command was sent to board. Author: AJ Keller (@aj-ptw) <a name="Wifi+eraseWifiCredentials"></a>

wifi.eraseWifiCredentials() ⇒ <code>Promise</code>

Tells the WiFi Shield to forget it's network credentials. This will cause the board to drop all connections.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - Resolves when WiFi Shield has been reset and the module disconnects. Author: AJ Keller (@aj-ptw) <a name="Wifi+streamStart"></a>

wifi.streamStart() ⇒ <code>Promise</code>

Sends a start streaming command to the board.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - indicating if the signal was able to be sent. Note: You must have successfully connected to an OpenBCI board using the connect method. Just because the signal was able to be sent to the board, does not mean the board will start streaming. Author: AJ Keller (@aj-ptw) <a name="Wifi+streamStop"></a>

wifi.streamStop() ⇒ <code>Promise</code>

Sends a stop streaming command to the board.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - indicating if the signal was able to be sent. Note: You must have successfully connected to an OpenBCI board using the connect method. Just because the signal was able to be sent to the board, does not mean the board stopped streaming. Author: AJ Keller (@aj-ptw) <a name="Wifi+syncInfo"></a>

wifi.syncInfo(o) ⇒ <code>Promise.<TResult></code>

Sync the info of this wifi module

Kind: instance method of <code>Wifi</code> Author: AJ Keller (@aj-ptw)

ParamTypeDescription
o<code>Object</code>
o.examineMode<code>Boolean</code>Set this option true to connect to the WiFi Shield even if there is no board attached.

<a name="Wifi+write"></a>

wifi.write(data) ⇒ <code>Promise</code>

Used to send data to the board.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - fulfilled if command was able to be sent Author: AJ Keller (@aj-ptw)

ParamTypeDescription
data<code>Array</code> | <code>Buffer</code> | <code>Number</code> | <code>String</code>The data to write out

<a name="Wifi+destroy"></a>

wifi.destroy()

Call this to shut down the servers.

Kind: instance method of <code>Wifi</code> <a name="Wifi+wifiGetLocalPort"></a>

wifi.wifiGetLocalPort() ⇒ <code>number</code>

Get the local port number of either the TCP or UDP server. Based on options.protocol being set to either udp or tcp.

Kind: instance method of <code>Wifi</code> Returns: <code>number</code> - The port number that was dynamically assigned to this module on startup. <a name="Wifi+wifiGetLocalPortUDP"></a>

wifi.wifiGetLocalPortUDP() ⇒ <code>number</code>

Get the local port number of the UDP server.

Kind: instance method of <code>Wifi</code> Returns: <code>number</code> - The port number that was dynamically assigned to this module on startup. <a name="Wifi+wifiGetLocalPortTCP"></a>

wifi.wifiGetLocalPortTCP() ⇒ <code>number</code>

Get the local port number of the UDP server.

Kind: instance method of <code>Wifi</code> Returns: <code>number</code> - The port number that was dynamically assigned to this module on startup. <a name="Wifi+wifiInitServer"></a>

wifi.wifiInitServer()

Initialization function that will start the TCP server and bind the UDP port.

Kind: instance method of <code>Wifi</code> <a name="Wifi+delete"></a>

wifi.delete(path) ⇒ <code>Promise</code>

Send a delete message to the connected wifi shield.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - Resolves if gets a response from the client/server, rejects with error

ParamTypeDescription
path<code>String</code>the path/route to send the delete message to

<a name="Wifi+get"></a>

wifi.get(path) ⇒ <code>Promise</code>

Send a GET message to the connected wifi shield.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - Resolves if gets/with a response from the client/server, rejects with error

ParamTypeDescription
path<code>String</code>the path/route to send the GET message to

<a name="Wifi+post"></a>

wifi.post(path, payload) ⇒ <code>Promise</code>

Send a POST message to the connected wifi shield.

Kind: instance method of <code>Wifi</code> Returns: <code>Promise</code> - - Resolves if gets a response from the client/server, rejects with error

ParamTypeDescription
path<code>String</code>the path/route to send the POST message to
payload<code>*</code>can really be anything but should be a JSON object.

<a name="Wifi..o"></a>

Wifi~o

Configuring Options

Kind: inner property of <code>Wifi</code> <a name="InitializationObject"></a>

InitializationObject : <code>Object</code>

Kind: global typedef Properties

NameTypeDescription
attempts<code>Number</code>The number of times to try and perform an SSDP search before quitting. (Default 10)
burst<code>Boolean</code>Only applies for UDP, but the wifi shield will send 3 of the same packets on UDP to increase the chance packets arrive to this module (Default false)
debug<code>Boolean</code>Print out a raw dump of bytes sent and received. (Default false)
latency<code>Number</code>The latency, or amount of time between packet sends, of the WiFi shield. The time is in micro seconds!
protocol<code>String</code>Either send the data over TCP or UDP. UDP seems better for either a bad router or slow router. Default is TCP
sampleRate<code>Number</code>The sample rate to set the board to. (Default is zero)
sendCounts<code>Boolean</code>Send integer raw counts instead of scaled floats. (Default false)
verbose<code>Boolean</code>Print out useful debugging events. (Default false)