How do i read multiple bytes with one command on arduino?

2 ビュー (過去 30 日間)
Philip Lorenz
Philip Lorenz 2018 年 8 月 20 日
コメント済み: Eric Prandovsky 2022 年 9 月 7 日
I have a CCS811 sensor and the bytes i need are in the same register (0x02), the datasheet says it can be up to 8bytes. there are no commands to read more than 2 bytes in the document, so is there another way than using:
readRegister(dev,[address],[precision])?
I only use the Arduino Toolbox for matlab right now.
  1 件のコメント
Eric Prandovsky
Eric Prandovsky 2022 年 9 月 7 日
Were you able to get this going? I noticed there is a driver for the CCS811 in the arduino support package for 2022a.

サインインしてコメントする。

採用された回答

Helper
Helper 2018 年 8 月 23 日
The 'read' function of i2cdev can be used. For more information please refer to the following documentation link https://www.mathworks.com/help/supportpkg/arduinoio/ref/read.html
  2 件のコメント
Walter Roberson
Walter Roberson 2021 年 12 月 8 日
"Doesn't answer the question"
Walter Roberson
Walter Roberson 2021 年 12 月 8 日
@Pommel Knight:
The CCS811 sensor is connected by way of I2C bus according to https://learn.adafruit.com/adafruit-ccs811-air-quality-sensor
The page that staff linked to is specifically about a read() method for reading from I2C bus attached to Arduino, https://www.mathworks.com/help/supportpkg/arduinoio/ref/arduinoio.i2cdev.read.html and the read() method has a required argument that is the number of bytes to read.
Thus, using read(dev, 8) should return the 8 bytes that the poster needs.
Is this not an answer to the question?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeArduino Hardware についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by