2wire 中文文档教程

发布于 7年前 浏览 25 项目主页 更新于 3年前

2wire

轻松访问 I2C 设备。

它是为 Raspberry Pi(在 i2c_dev 内核模块之上)设计的,但也可以在不同的板上工作。

包括 TypeScript 定义。

Example

将 0x20 寻址的设备的寄存器 0x​​58 写入值 42。

const TwiDevice = require('2wire').TwiDevice;

const wire = new TwiDevice('/dev/i2c-1', 0x20);
wire.writeByte(0x58, 42);

2wire

Easy access to I2C devices.

It was designed for the Raspberry Pi (on top of the i2c_dev kernel module), but may work on different boards, too.

TypeScript definitions are included.

Example

Write register 0x58 of device addressed by 0x20 to value 42.

const TwiDevice = require('2wire').TwiDevice;

const wire = new TwiDevice('/dev/i2c-1', 0x20);
wire.writeByte(0x58, 42);
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文