当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino Arduino_APDS9960 - readColor()用法及代码示例


检索从传感器读取的颜色。您可以检查传感器是否已读取颜色,并且可以使用APDS.colorAvailable() 函数检索颜色。

用法

Int r, g, b;
APDS.readColor(r, g, b);
Int a;
APDS.readColor(r, g, b, a);

参数

此函数需要 3 或 4 个整数变量作为将存储读取颜色的参数:

  • r :读取颜色的红色分量。
  • g :读取颜色的绿色分量。
  • b :读取颜色的蓝色分量。
  • a 。环境光强度。

返回

None。

示例

/*
  APDS-9960 - Color Sensor

  This example reads color data from the on-board APDS-9960 sensor of the
  Nano 33 BLE Sense and prints the color RGB (red, green, blue) values
  to the Serial Monitor once a second.

  The circuit:
  - Arduino Nano 33 BLE Sense.

  This example code is in the public domain.
*/

#include <Arduino_APDS9960.h>

void setup() {
  Serial.begin(9600);
  while (!Serial);

  if (!APDS.begin()) {
    Serial.println("Error initializing APDS-9960 sensor.");
  }
}

void loop() {
  // Check if a color reading is available.
  while (!APDS.colorAvailable()) {
    delay(5);
  }

  int r, g, b;

  // Read the color.
  APDS.readColor(r, g, b);

  // Print the values:
  Serial.print("r = ");
  Serial.println(r);
  Serial.print("g = ");
  Serial.println(g);
  Serial.print("b = ");
  Serial.println(b);
  Serial.println();

  // Wait a bit before reading again.
  delay(1000);
}

相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 Arduino_APDS9960 - readColor()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。