Skip to content

Commit

Permalink
Updated openbci-utilities to @openbci/utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellasry committed Feb 11, 2019
1 parent 98fbf66 commit 2f1044b
Show file tree
Hide file tree
Showing 8 changed files with 4,271 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/accelerometer/accelerometer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require('../../openBCIGanglion');
const k = require('openbci-utilities/dist/constants');
const k = require('@openbci/utilities/dist/constants');
const verbose = true;
let ganglion = new Ganglion({
debug: false,
Expand Down
2 changes: 1 addition & 1 deletion examples/ganglionBLED112/ganglionBLED112.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require('../../openBCIGanglion');
const k = require('openbci-utilities/dist/constants');
const k = require('@openbci/utilities/dist/constants');
const verbose = true;
const debug = false;
let ganglion = new Ganglion({
Expand Down
2 changes: 1 addition & 1 deletion examples/ganglionConnectionTest/ganglionConnectionTest.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require("../../openBCIGanglion");
const k = require("openbci-utilities/dist/constants");
const k = require("@openbci/utilities/dist/constants");
const verbose = true;
const DO_PACKET_CALCULATIONS = true;
let ganglion = new Ganglion({
Expand Down
2 changes: 1 addition & 1 deletion examples/ganglionServer/ganglionServer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Ganglion = require('../../openBCIGanglion');
const k = require('openbci-utilities/dist/constants');
const k = require('@openbci/utilities/dist/constants');
const verbose = true;
let ganglion = new Ganglion({
debug: true,
Expand Down
2 changes: 1 addition & 1 deletion openBCIGanglion.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let noble;
let SerialPort;
const util = require("util");
// Local imports
const { utilities, constants, debug } = require("openbci-utilities");
const { utilities, constants, debug } = require("@openbci/utilities");
const k = constants;
const clone = require("clone");
const bufferEqual = require("buffer-equal");
Expand Down
Loading

0 comments on commit 2f1044b

Please sign in to comment.