1
0
Fork 0
mirror of https://github.com/chirimen-oh/node-web-i2c.git synced 2025-04-04 12:16:25 +00:00
I2C access with Node.js
Find a file
akihiko.kigure 89f5450e09 new install
2022-01-21 00:53:57 +09:00
.github/workflows temporary commit 2022-01-21 00:50:07 +09:00
.husky husky, lint-staged, prettier 導入によるコミット時の自動フォーマット () 2021-12-08 23:03:28 +09:00
docs temporary commit 2022-01-21 00:50:07 +09:00
.DS_Store temporary commit 2022-01-21 00:50:07 +09:00
.eslintrc.yml temporary commit 2022-01-21 00:50:07 +09:00
.gitignore temporary commit 2022-01-21 00:50:07 +09:00
.lintstagedrc.yaml temporary commit 2022-01-21 00:50:07 +09:00
index.ts temporary commit 2022-01-21 00:50:07 +09:00
LICENSE temporary commit 2022-01-21 00:50:07 +09:00
package-lock.json temporary commit 2022-01-21 00:50:07 +09:00
package.json Merge branch 'master' into feature/tsdoc 2022-01-21 00:51:37 +09:00
README.md temporary commit 2022-01-21 00:50:07 +09:00
renovate.json temporary commit 2022-01-21 00:50:07 +09:00
tsconfig.eslint.json temporary commit 2022-01-21 00:50:07 +09:00
tsconfig.json temporary commit 2022-01-21 00:50:07 +09:00
typedoc.json temporary commit 2022-01-21 00:50:07 +09:00
yarn.lock new install 2022-01-21 00:53:57 +09:00

node-web-i2c

I2C access with Node.js

Usage

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 adt7410 = new ADT7410(port, ADT7410_ADDR);
  await adt7410.init();
  const temperature = await adt7410.read();
  console.log(`Temperature: ${temperature} ℃`);
}

main();

Document

Web I2C API