docs: use @chirimen/adt7410

This commit is contained in:
Nebel 2019-10-28 01:10:25 +09:00 committed by GitHub
parent 74b8a5db93
commit 16cbc86aef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,15 +6,16 @@ I2C access with Node.js
```js
const { requestI2CAccess } = require("node-web-i2c");
const ADT7410 = require("@chirimen/adt7410");
const ADT7410_ADDR = 0x48;
async function main() {
const i2cAccess = await requestI2CAccess();
const port = i2cAccess.ports.get(1);
const i2cSlave = await port.open(ADT7410_ADDR);
const temperature =
(((await i2cSlave.read8(0x00)) << 8) + (await i2cSlave.read8(0x01))) / 128;
const adt7410 = new ADT7410(port, ADT7410_ADDR);
await adt7410.init();
const temperature = await adt7410.read();
console.log(`Temperature: ${temperature} ℃`);
}