Module cảm biến màu sắc RBG TCS34725
  •  
Module cảm biến màu sắc RBG TCS34725

Module cảm biến màu sắc RBG TCS34725

Module cảm biến màu sắc RBG TCS34725 Là phiên bản nâng cấp của cảm biến màu TCS3200. Được sử dụng để nhận biết màu sắc. Bằng cách đo phản xạ 3 màu sắc cơ bản từ vật thể. Là đỏ, xanh lá và xanh dương sau đó xử lý và truyền thông số đo được của các màu này. Qua giao tiếp I2C. Tổng hợp thông tin của 3 màu trên ta có được màu sắc của vật thể cần đo.

Module cảm biến màu sắc RBG TCS34725 có tích hợp MCU trên mạch. I2C của MCU giúp dể dàng giao tiếp và lập trình.

 

THÔNG SỐ KỸ THUẬT:

 

  • IC chính: TCS34725
  • Điện áp sử dụng: 3~5VDC
  • Dòng tiêu thụ: 15mA
  • Giải màu sắc đo: RGB 0~255
  • Tích hợp MCU xử lý và chuyển đổi giao tiếp.

 

Tài liệu tham khảo:

Kết quả hình ảnh cho TCS34725

 

Code :

 

#include <Wire.h>

 

#include "Adafruit_TCS34725.h"

 

 

 

/* Example code for the Adafruit TCS34725 breakout library */

 

 

 

/* Connect SCL    to analog 5

 

   Connect SDA    to analog 4

 

   Connect VDD    to 3.3V DC

 

   Connect GROUND to common ground */

 

 

 

/* Initialise with default values (int time = 2.4ms, gain = 1x) */

 

// Adafruit_TCS34725 tcs = Adafruit_TCS34725();

 

 

 

/* Initialise with specific int time and gain values */

 

Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_700MS, TCS34725_GAIN_1X);

 

 

 

void setup(void) {

 

  Serial.begin(9600);

 

 

 

  if (tcs.begin()) {

 

    Serial.println("Found sensor");

 

  } else {

 

    Serial.println("No TCS34725 found ... check your connections");

 

    while (1);

 

  }

 

 

 

  // Now we're ready to get readings!

 

}

 

 

 

void loop(void) {

 

  uint16_t r, g, b, c, colorTemp, lux;

 

 

 

  tcs.getRawData(&r, &g, &b, &c);

 

  // colorTemp = tcs.calculateColorTemperature(r, g, b);

 

  colorTemp = tcs.calculateColorTemperature_dn40(r, g, b, c);

 

  lux = tcs.calculateLux(r, g, b);

 

 

 

  Serial.print("Color Temp: "); Serial.print(colorTemp, DEC); Serial.print(" K - ");

 

  Serial.print("Lux: "); Serial.print(lux, DEC); Serial.print(" - ");

 

  Serial.print("R: "); Serial.print(r, DEC); Serial.print(" ");

 

  Serial.print("G: "); Serial.print(g, DEC); Serial.print(" ");

 

  Serial.print("B: "); Serial.print(b, DEC); Serial.print(" ");

 

  Serial.print("C: "); Serial.print(c, DEC); Serial.print(" ");

 

  Serial.println(" ");

 

}

 

 

Hình ảnh

Sản phẩm cùng danh mục

 
Tư vấn ngay