文件名称:spi设备:使用Node.js进行SPI串行总线访问
文件大小:260KB
文件格式:ZIP
更新时间:2024-02-26 10:13:41
nodejs javascript raspberry-pi iot beaglebone-black
SPI设备 在Raspberry Pi或BeagleBone等Linux板上使用Node.js进行SPI串行总线访问。 所有方法都有异步和同步形式。 spi设备支持Node.js版本8、10、12、13和14。 内容 安装 npm install spi-device 用法 使用连接到MCP3008 SPI A / D转换器上通道5的TMP36模拟温度传感器确定温度。 const spi = require ( 'spi-device' ) ; // The MCP3008 is on bus 0 and it's device 0 const mcp3008 = spi . open (
【文件预览】:
spi-device-master
----spi-device.d.ts(2KB)
----.jshintrc(192B)
----.gitignore(23B)
----package.json(878B)
----.npmrc(20B)
----src()
--------getoptions.h(152B)
--------spidevice.h(857B)
--------close.cc(2KB)
--------close.h(132B)
--------open.cc(3KB)
--------transfer.h(144B)
--------spidevice.cc(3KB)
--------spi.cc(780B)
--------setoptions.h(635B)
--------util.h(1KB)
--------setoptions.cc(9KB)
--------transfer.cc(10KB)
--------getoptions.cc(4KB)
--------open.h(166B)
----History.md(3KB)
----.travis.yml(204B)
----LICENSE(1KB)
----README.md(8KB)
----example()
--------pi-mcp3008-tmp36.png(244KB)
--------mcp3008-tmp36.js(1KB)
----spi-device.js(66B)
----binding.gyp(643B)
----.npmignore(47B)
----test()
--------message-size.js(2KB)
--------options-sync.js(1KB)
--------transfer.js(1KB)
--------run-tests(179B)
--------default-options.js(1KB)
--------options.js(2KB)
--------stress()