pi-volts

3.0.0 • Public • Published

pi-volts

Measure the volts on a Raspberry Pi.

Usage

const piVolts = require("pi-volts");

piVolts.measure((err, volts) => {
	if (err) console.error(err);
	else console.log("core volts: " + volts);
});

piVolts.measure((err, volts) => {
	if (err) console.error(err);
	else console.log("sdram_p volts: " + volts);
}, { id: "sdram_p" });

API

measure(function callback(err, volts) [, options])

Measures the volts and calls the callback with the error and volts.

options takes an object with the property "id", which can be one of "core", "sdram_c", "sdram_i" or "sdram_p" (defaults to core.)

Package Sidebar

Install

npm i pi-volts

Weekly Downloads

3

Version

3.0.0

License

Apache-2.0

Unpacked Size

13 kB

Total Files

4

Last publish

Collaborators

  • odensc