手中有一枚STC34725颜色感应模块,想利用做颜色感应灯,网上找了好久只找到英文相关教程,
参考文章:
https://www.switchdoc.com/2015/02/raspberry-pi-python-i2c-driver-for-tcs34725-rgbc-color-sensor/
手中树莓派已经连接好的照片:
连接线图示:
对应接口相连接,本模块LED连接了GND(高低电平控制旁边LED亮灭)
树莓派需要开启I2C通信
安装I2C工具:
sudo apt-get install i2c-tools
因为树莓派的I2C接口默认是关闭的,需要先编辑/boot/config.txt
去掉dtparam=i2c_arm=on前的#号,然后重启
查看总线上连接设备的地址:
sudo i2cdetect -y 1
地址显示为16进制地址
按终端中显示,模块地址为0x29
导出0x29地址上的数据:
sudo i2cdump -y 1 0x29
如图显示则成功读取数据
为方便读取颜色信息,克隆github项目
原参考文章:
https://www.switchdoc.com/2015/02/raspberry-pi-python-i2c-driver-for-tcs34725-rgbc-color-sensor/
纯python驱动:
git clone https://github.com/yatelandisizi/TCS34725.git
运行:
python TCS34725/example.py
颜色读取成功