New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ganglion-manager

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ganglion-manager

Ganglion Board EEG data receiver

  • 1.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

GanglionManager

npm version License Node.js Version

사전 설치 및 런타임(미들웨어) 요구사항

$ sudo apt-get install -y build-essential libbluetooth-dev libudev-dev
  • node.js v8.0
  • Python v2.7

Installation

$ npm install ganglion-manager --save

or

$ yarn add ganglion-manager

Example


// 패키지 Import
const {
    GanglionClient
} = require('ganglion-manager')

// 인스턴스 생성(싱글톤)
const client = GanglionClient.instance

// 메세지 리스너 등록 (소켓 서버 상태 확인용. 꼭 필요하지는 않음)
const messageListenerId = client.setOnMessageListener(data => {
    console.log(data)
    /** ↑ e.g. Scanning Completed. */
})

// 밴드 데이터 수신 리스너 등록
const bandDataListenerId = client.setOnBandDataListener(data => {
    console.log(data)
    /** ↑ e.g.
     * { delta: 5307.467704082231,
        theta: 1443.5217161444612,
        alpha: 802.5580397016054,
        lowBeta: 593.4192601501279,
        midrangeBeta: 434.6355257503891,
        highBeta: 361.3455091407635,
        gamma: 152.52111534458223 }
     */
})

// Raw 데이터 수신 리스너 등록
const rawDataListenerId =  client.setOnRawDataListener(data => {
    console.log(data)
    /** ↑ e.g.
     *  [ 6687.154103248398,
        2359.8876166944106,
        2665.8675526565967,
        1614.8722496767778,
        1620.5210466578828,
        666.2582139307181,
                ⋮
     */
})

// 60초 후 데이터 수신 정지
setTimeout(() => {
    client.clearOnMessageListener(messageListenerId)
    client.clearOnBandDataListener(bandDataListenerId)
    client.clearOnRawDataListener(rawDataListenerId)
}, 60*1000)

Keywords

FAQs

Package last updated on 12 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc