1.0.3 ā€¢ Published 1 year ago

node-sht20 v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

node-SHT20

NPM

Install

npm install node-sht20
yarn add node-sht20

Usage

Usage in TypeScript (with ES Modules):

import SHT20 from 'node-sht20';

const sensor = new SHT20({
	bus: 1
});

async function start() {
	const { temperature, humidity } = await sensor.read();

	console.log(`Temperature: ${temperature.value} ${temperature.unit}`);
	console.log(`Humidity: ${humidity.value} ${humidity.unit}`);

	// Temperature in another unit

	const degreeFahrenheit = temperature.toFahrenheit();
	console.log(`Temperature: ${degreeFahrenheit.value} ${degreeFahrenheit.unit}`);
}

start();

Usage in JavaScript (with CommonJS):

const nodeSHT20 = require('node-sht20');

const sensor = new nodeSHT20.SHT20({
	bus: 1
});

async function start() {
	const { temperature, humidity } = await sensor.read();

	console.log(`Temperature: ${temperature.value} ${temperature.unit}`);
	console.log(`Humidity: ${humidity.value} ${humidity.unit}`);

	// Temperature in another unit

	const degreeFahrenheit = temperature.toFahrenheit();
	console.log(`Temperature: ${degreeFahrenheit.value} ${degreeFahrenheit.unit}`);
}

start();

Author

šŸ‘¤ KillerJulian info@killerjulian.de

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

1.0.3

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago