Skip to content

Commit ffab4f4

Browse files
author
AJ Keller
authored
Merge pull request #22 from aj-ptw/development
Development
2 parents 8751b47 + 9006c91 commit ffab4f4

22 files changed

+2545
-1855
lines changed

.eslintrc

+10-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
{"extends": ["standard"], "parser": "babel-eslint"}
1+
{
2+
"extends": ["semistandard"],
3+
"plugins": [
4+
"chai-friendly"
5+
],
6+
"rules": {
7+
"no-unused-expressions": 0,
8+
"chai-friendly/no-unused-expressions": 2
9+
}
10+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,5 @@ jspm_packages
5252
.idea
5353
.idea/*.xml
5454
.DS_Store
55+
56+
dist

changelog.md CHANGELOG.md

+99-14
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,132 @@
1-
# 0.1.2
1+
# v0.3.0
2+
3+
### Breaking Changes
4+
5+
* Removed simulator file back into cyton repo
6+
* Removed `safe-buffer` in place of `buffer`
7+
* Removed support for node version 5 and below
8+
9+
# v0.2.7
10+
11+
### Bug Fixes
12+
13+
* No `stopByte` property for daisy samples. Added tests.
14+
15+
# v0.2.6
16+
17+
### Bug Fixes
18+
19+
* Accel data with counts did not work for cyton with daisy over wifi.
20+
21+
# v0.2.5
22+
23+
### Bug Fixes
24+
25+
* Had incorrect ganglion accel multiplication factor of 32mg per count but was really 16mg per count
26+
* `newSample` and `newSampleNoScale` in utility file did not have `valid` is `true` property.
27+
28+
# v0.2.4
29+
30+
### New Features
31+
32+
* Add new constants for emitter
33+
34+
### Bug Fixes
35+
36+
* Fix bug where ganglion sample channel data when scale was false produced array of 8 values instead of 4
37+
38+
# v0.2.3
39+
40+
### New Features
41+
42+
* Add function for parsing an impedance object `.parsePacketImpedance()`
43+
44+
# v0.2.2
45+
46+
### Bug Fixes
47+
48+
* Fix wrap around bug in extractRawBLEDataPackets
49+
50+
# v0.2.1
51+
52+
### Bug Fixes
53+
54+
* Accel data with counts did not work for cyton with daisy. Also fixed up some test errors with the effected functions.
55+
56+
### New Features
57+
58+
* Add features for `openbci-ganglion`
59+
60+
# v0.2.0
61+
62+
### New Feature
63+
64+
* With scale option false, `.parsePacketStandardAccel()` `.parsePacketTimeSyncedAccel()` will now return array called will now return `accelDataCounts` property with un-scaled data.
65+
66+
# v0.1.5
67+
68+
### Bug Fixes
69+
70+
* Was missing errors in constants used by ganglion and other ble projects.
71+
* Fixed getChannelData functions to support 2 channel cytons
72+
73+
# v0.1.4
74+
75+
### Bug Fixes
76+
77+
* E-patch on new function added 0.1.3
78+
79+
80+
# v0.1.3
81+
82+
### New Features
83+
84+
* A bunch of functions to support synchronization of channel settings with cyton. Will be used by both the Wifi and the Cyton node modules.
85+
86+
# v0.1.2
287

388
### Bug Fixes
489

590
* Send counts did not work for daisy.
691
* Sample output was inconsistent
792
* Fixed `timeStamp` to `timestamp` this was pr #147 (thanks @alexdevmotion)
893

9-
# 0.1.1
94+
# v0.1.1
1095

1196
### Bug Fixes
1297

1398
* Send counts did not work for daisy.
1499

15-
# 0.1.0
100+
# v0.1.0
16101

17102
### New Functions
18103

19-
* Add function `getFirmware(dataBuffer)` to utilities
104+
* Add function `getFirmware(dataBuffer)` to utilities
20105

21106
### Breaking Changes
22107

23108
* Removed function called `findV2Firmware()` because it's useless with v3.0.0 firmware
24109

25-
# 0.0.10
110+
# v0.0.10
26111

27112
### New Function
28113

29114
* Add `boardTypeForNumberOfChannels()` to Constants
30115

31-
# 0.0.9
116+
# v0.0.9
32117

33118
### New Features
34119

35120
* Add impedance calculation functions from cyton
36121
* The simulator from OpenBCI_NodeJS has been ripped out and place into this library! Woo.
37122

38-
# 0.0.8
123+
# v0.0.8
39124

40125
### New Features
41126

42127
* Sample object now has property `valid` of type `boolean`, `false` when error parseing packet, `true` otherwise. On `false` there will be another property called `error` of type `string` which contains an error message.
43128

44-
# 0.0.7
129+
# v0.0.7
45130

46131
### Continuous Integration
47132

@@ -54,9 +139,9 @@
54139
### New Features
55140

56141
* In openBCIUtilities.js add function `transformRawDataPacketToSample` to parse a single raw data packet
57-
* In openBCIConstants.js add function `rawDataToSampleObjectDefault(numChannels)` which should be used by drivers to create the object that is passed through each call to `transformRawDataPacketsToSample`
142+
* In openBCIConstants.js add function `rawDataToSampleObjectDefault(numChannels)` which should be used by drivers to create the object that is passed through each call to `transformRawDataPacketsToSample`
58143

59-
# 0.0.6
144+
# v0.0.6
60145

61146
### Bug Fixes
62147

@@ -72,19 +157,19 @@
72157

73158
* `getChannelDataArray` now takes object as only arg.
74159

75-
# 0.0.5
160+
# v0.0.5
76161

77162
### Bug Fixes
78163

79164
* When not scaling outputs `channelDataCounts` instead of `channelData`
80165

81-
# 0.0.4
166+
# v0.0.4
82167

83168
### Bug Fixes
84169

85170
* Fix bug where samples were not properly being extracted
86171

87-
# 0.0.2
172+
# v0.0.2
88173

89174
### Breaking Changes
90175

@@ -96,6 +181,6 @@
96181

97182
* Added a function in the sample module that parses a raw buffer of OpenBCI data, extracts raw data packets and returns the buffer with just the raw data packets removed. Allowing the user to process other data that is not a raw data.
98183

99-
# 0.0.1
184+
# v0.0.1
100185

101186
Initial release

CODE_OF_CONDUCT.md

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# OpenBCI JavaScript Utilities Library Code of Conduct
2+
3+
## Purpose
4+
5+
It is our hope that any one is able to contribute to OpenBCI JavaScript Utilities Library regardless of their background. Thus, we hope to provide a safe, welcoming, and warmly geeky environment for everybody, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status, and religion (or lack thereof).
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment
10+
include:
11+
12+
* Using welcoming and inclusive language
13+
* Being respectful of differing viewpoints and experiences
14+
* Gracefully accepting constructive criticism
15+
* Focusing on what is best for the community
16+
* Showing empathy towards other community members
17+
18+
Examples of unacceptable behavior by participants include:
19+
20+
* The use of sexualized language or imagery and unwelcome sexual attention or
21+
advances
22+
* Trolling, insulting/derogatory comments, and personal or political attacks
23+
* Public or private harassment
24+
* Publishing others' private information, such as a physical or electronic
25+
address, without explicit permission
26+
* Other conduct which could reasonably be considered inappropriate in a
27+
professional setting
28+
29+
## Our Responsibilities
30+
31+
Project maintainers are responsible for clarifying the standards of acceptable
32+
behavior and are expected to take appropriate and fair corrective action in
33+
response to any instances of unacceptable behavior.
34+
35+
Project maintainers have the right and responsibility to remove, edit, or
36+
reject comments, commits, code, wiki edits, issues, and other contributions
37+
that are not aligned to this Code of Conduct, or to ban temporarily or
38+
permanently any contributor for other behaviors that they deem inappropriate,
39+
threatening, offensive, or harmful.
40+
41+
## Scope
42+
43+
This Code of Conduct applies both within project spaces and in public spaces
44+
when an individual is representing the project or its community. Examples of
45+
representing a project or community include using an official project e-mail
46+
address, posting via an official social media account, or acting as an appointed
47+
representative at an online or offline event. Representation of a project may be
48+
further defined and clarified by project maintainers.
49+
50+
## Enforcement
51+
52+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
53+
reported by contacting the project team at [[email protected]](mailto:[email protected]). All
54+
complaints will be reviewed and investigated and will result in a response that
55+
is deemed necessary and appropriate to the circumstances. The project team is
56+
obligated to maintain confidentiality with regard to the reporter of an incident.
57+
Further details of specific enforcement policies may be posted separately.
58+
59+
Project maintainers who do not follow or enforce the Code of Conduct in good
60+
faith may face temporary or permanent repercussions as determined by other
61+
members of the project's leadership.
62+
63+
## Attribution
64+
65+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
66+
available at [http://contributor-covenant.org/version/1/4][version]
67+
68+
[homepage]: http://contributor-covenant.org
69+
[version]: http://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Contributing
2+
3+
:tada::clinking_glasses: First off, thanks for taking the time to contribute! :tada::clinking_glasses:
4+
5+
Contributions are always welcome, no matter how small.
6+
7+
The following is a small set of guidelines for how to contribute to the project
8+
9+
## Where to start
10+
11+
### Code of Conduct
12+
This project adheres to the Contributor Covenant [Code of Conduct](CODE_OF_CONDUCT.md).
13+
By participating you are expected to adhere to these expectations. Please report unacceptable behaviour to [[email protected]](mailto:[email protected])
14+
15+
### Contributing on Github
16+
17+
If you're new to Git and want to learn how to fork this repo, make your own additions, and include those additions in the master version of this project, check out this [great tutorial](http://blog.davidecoppola.com/2016/11/howto-contribute-to-open-source-project-on-github/).
18+
19+
### Community
20+
21+
This project is maintained by the [OpenBCI](www.openbci.com) and [NeuroTechX](www.neurotechx.com) community. Join the NeuroTechX Slack to check out our #devices channel, where discussions about OpenBCI takes place.
22+
23+
## How can I contribute?
24+
25+
This is currently a small, humble project so our contribution process is rather casual. Take a look at our [GitHub Projects board to see](https://github.com/NeuroTechX/eeg-101/projects) to see all the features we are currently working on. If there's a feature you'd be interested in building, go ahead! Let us know on the #interactive-tutorial channel on [the NeuroTechX Slack](http://neurotechx.herokuapp.com/) and we'll support you as much as we can. When you're finished submit a pull request to the master branch referencing the specific issue you addressed.
26+
27+
If you find a bug, or have a suggestion on how to improve the project, just fill out a [Github issue](../../issues)

0 commit comments

Comments
 (0)