Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 342 Bytes

File metadata and controls

24 lines (21 loc) · 342 Bytes

bitscope

BitScope library bindings for node.js

var bitscope = require('bitscope')

bitscope(
  {
    device: 0,
    channel: [0, 1],
    rate: 100000,
    size: 2000
  },
  function(error, data) {
    if (!error) {
      console.log(data)
    } else {
      console.error(error)
    }
  }
)