Giter Site home page Giter Site logo

mcp300x's Introduction

mcp300X

Implementation of the mcp3004/mcp3008 ADC chip.

npm Version GitHub package.json version CI GitHub Downloads Per Month GitHub last commit Package Quality

Features:

  • Provides access to pseudo differential mode
  • Does not assume Vref and Vin are the same

And while this implementation is more verbose, it does so in order to aid in clarity of understanding and for learning.

Sample Usage

import { mcp300x } = from '@johntalton/mcp300X'
const spi = ...
const adc = mcp300X.from({ bus: spi, Vref: 5, channels: 8 })

const result = await dev.readADC(channel)

console.log('normalized value', result.normal)
console.log('voltage', result.V)

In the usage above our Analog circuitry is running at 5V, while the chip is running at 3.3V configuration.

The returned result object holds the normal-ized value, as well as the raw ADC value and the ```V``oltage as calculated.

Psuedo Differential Mode

The mode allows the bonding of two channels in +/- or -/+ configurations.

Reference by channel pair or index

The readADCDiff method can be passed a single "index-channel" or the order +/- pair.

From the spec:

Idx +ch / -ch
1st Ch0 / Ch1
2nd Ch1 / Ch0
3rd Ch2 / Ch3
etc ...
  ...
  dev.readADCDiff(6).then(result => { ... }) // index-channel 6 or +Ch5 / -Ch4

mcp300x's People

Contributors

dependabot[bot] avatar johntalton avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.