Skip to content

brycebaril/analogin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

analogin

NPM

Read analog inputs on a (currently only) a BeagleBone Black.

Very much a work-in-progress.

var AnalogIn = require("analogin")

// after connecting some sort of analog device to the beaglebone
var ain1 = AnalogIn(1)
console.log(ain1.readSync())

API

require("analogin")(input[, opts])

input is the Analog input number on the BeagleBone black, 0-7.

options:

  • scaled [true]: scale reads from 0-1 (floating point)

otherwise reads will be an integer between 0 and 1800

ain.read(callback)

Asynchronously read the value.

ain.readSync()

Read the value synchronously.

LICENSE

MIT

About

Read analog inputs on a BeagleBone Black

Resources

License

Stars

Watchers

Forks

Packages

No packages published