Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@chirimen/adt7410

Package Overview
Dependencies
Maintainers
8
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chirimen/adt7410

Driver for ADT7410 with WebI2C

  • 1.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
8
Created
Source

ADT7410

センサー仕様

  • 動作・測定可能温度
    • -55℃ ~+150℃
  • 温度精度
    • ±0.5℃ (-40℃ ~+105℃ の環境下)
  • 温度解像度
    • 0.0625℃
  • I2C スレーブアドレス
    • 0x48(デフォルト), 0x49, 0x4A, 0x4B(ジャンパにより変更可能。詳しくはデータシートの P17, Table20 を参照)

詳細な仕様はデータシートを参照してください。(ANALOG DEVICES 社のサイトにリンクします。)

ドライバ

初期化

const adt7410 = new ADT7410(i2cPort, slaveAddress);
await adt7410.init();

I2C ポートの取得とセンサーの初期化をします。
センサーを使う前に必ず一回実行してください。

引数説明
i2cPortI2CSlaveDevice使用する I2C ポートの port オブジェクトです。
slaveAddressNumberセンサーの I2C スレーブアドレスです。センサー仕様を参照してください。

温度の読み取り read()

temperature = await adt7410.read();

温度を測定します。

返り値説明
tempeatureNumberセンサーが測定した温度です。単位は ℃(セルシウス度)です。

参考リンク

FAQs

Package last updated on 06 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc