带有SoftWire(I2C仿真器)库的多个tcs34725 arduino颜色传感器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有SoftWire(I2C仿真器)库的多个tcs34725 arduino颜色传感器相关的知识,希望对你有一定的参考价值。

我想在我的Arduino mega上安装2个TCS34725颜色传感器。传感器使用I2c通信,因此我不能将它们放在相同的I2C引脚上,因为它们具有相同的地址。我提出的解决方案是使用模拟器Wire库“SoftWire”(https://github.com/felias-fogg/SoftI2CMaster),它可以模拟任何2个引脚作为SDA和SCL。这个库的用法完全相同,除了我必须创建一个实例并包含avr / io.h才能启动它:

#include <SoftWire.h>
#include <avr/io.h>
SoftWire Wire = SoftWire();

我现在的问题是调整TCS34725库以使其与SoftWire一起使用,以下过程就是我所做的,但它不起作用。这是原始库头文件的第一部分:

#ifndef _TCS34725_H_
#define _TCS34725_H_

#if ARDUINO >= 100
  #include <Arduino.h>
#else
  #include <WProgram.h>
#endif

#include <Wire.h>

这是访问完整库的链接:https://github.com/adafruit/Adafruit_TCS34725好的,所以我所做的只是改变

#include<Wire.h> 

#include<SoftWire.h>
#include<avr/io.h>
#define SDA_PORT PORTC
#define SDA_PIN 4
#define SCL_PORT PORTC
#define SCL_PIN 5

我做的另一件事是将Wire实例添加到头文件中的私有变量中:

private:
boolean _tcs34725Initialised;
tcs34725Gain_t _tcs34725Gain;
tcs34725IntegrationTime_t _tcs34725IntegrationTime;
>>>SoftWire Wire;<<<
void     disable(void);

我做的最后一件事是添加:

SoftWire Wire = SoftWire();

在库的cpp文件中包含之后。它看起来像这样:

#ifdef __AVR
  #include <avr/pgmspace.h>
#elif defined(ESP8266)
  #include <pgmspace.h>
#endif
#include <stdlib.h>
#include <math.h>

#include "Adafruit_TCS34725.h"
SoftWire Wire = SoftWire();

我保存了代码并将其运行在草图上,这是代码:

#include "SoftWire.h"
#include "avr/io.h"
#include "Adafruit_TCS34725.h"
Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_50MS, TCS34725_GAIN_4X);

void setup() {
  Serial.begin(9600);
  Serial.println("Color View Test!");

  if (tcs.begin()) {
    Serial.println("Found sensor");
  } else {
    Serial.println("No TCS34725 found ... check your connections");
    while (1); // halt!
  }
}

void loop() {
  uint16_t clear, red, green, blue;

  tcs.setInterrupt(false);      // turn on LED

  delay(60);  // takes 50ms to read 

  tcs.getRawData(&red, &green, &blue, &clear);

  tcs.setInterrupt(true);  // turn off LED

  Serial.print("C:\t"); Serial.print(clear);
  Serial.print("\tR:\t"); Serial.print(red);
  Serial.print("\tG:\t"); Serial.print(green);
  Serial.print("\tB:\t"); Serial.print(blue);
}

这个草图与原始的WIRE.h完美配合,但现在使用SoftWire.h不起作用。我是arduino和图书馆的新手。

答案

问题解决了!找到了一个用于使用软i2c放置2个或更多tcs34725传感器的库。这是链接:Adafruit_TCS34725_SoftI2C-master

感谢此代码的开发人员!

以上是关于带有SoftWire(I2C仿真器)库的多个tcs34725 arduino颜色传感器的主要内容,如果未能解决你的问题,请参考以下文章

51单片机对I2C总线上挂接多个AT24C02的读写操作+Proteus仿真

颜色传感器 TCS34725 识别颜色应用

Proteus仿真Arduino UNO+OLED12864 I2C接口跑图形库

Proteus仿真Arduino UNO+LCD1602+PCF8574转I2C驱动显示+DS1307

Arduino UNO+LCD1602+PCF8574转I2C驱动显示+Proteus仿真

OpenModelica