查看SKU:RB-02S161 IIC 颜色传感器的源代码
←
SKU:RB-02S161 IIC 颜色传感器
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
您刚才请求的操作只有这个用户组中的用户才能使用:
用户
您可以查看并复制此页面的源代码:
[[文件:02S161000.png|500px|缩略图|右]] ==产品概述== IIC颜色传感器使用TCS34725颜色传感器进行颜色识别。TCS34725是一款高性价比的RGB全彩颜色识别传感器,传感器通过光学感应来识别物体的表面颜色。支持红、绿、蓝(RGB)三基色,支持明光感应,可以输出对应的具体数值,帮助您还原颜色本真。<br/> 为了提高精度,防止周边环境干扰,我们在传感器上添加了一个镜头罩,有效减少外界杂光干扰传感器,让颜色管理更加准确。板载自带2个高亮LED,可以让传感器在低环境光的情况下依然能够正常使用,实现“补光”的功能。模块采用I2C通信,拥有4P防插反接口,更加便利。 <br/> ==产品参数== ===基本参数=== 1.品名:IIC颜色传感器<br/> 2.货号:RB-02S161<br/> 3.品牌:奥松机器人<br/> 4.产地:哈尔滨<br/> 5.尺寸:25*40<br/> 6.固定孔:M3*2<br/> ===电气参数=== 1.接口类型:KF2510-4P防插反接口<br/> 2.信号类型:IIC通讯<br/> 3.指示灯:高亮LED<br/> 4.工作电压:5V<br/> 5.工作电流:100mA<br/> 6.引脚定义:<br/> :+:电源正极<br/> :-:电源负极<br/> :SDA:IIC数据端口<br/> :SCL:IIC时钟端口<br/> 7.扩展接口:<br/> :LED:两个板载LED控制端口,悬空或高电平点亮,低电平熄灭<br/> :INT:中断引脚<br/> 8.连接线:4P 传感器连接线<br/> 9.检测范围:红、绿、蓝及白光检测<br/> 10.工作温度:-40 - 85℃<br/> 产品尺寸图:<br/> [[文件:02S16101.png|500px|缩略图|居中]] ==使用方法== ===example1_Arduino=== * 主要硬件 :Arduino UNO 控制器 :传感器扩展板 V5.0 :IIC 颜色传感器 :USB 数据线 * 硬件连接 [[文件:02S161020.png|500px|缩略图|居中]] * 示例程序 <pre style='color:blue'> /* Example code for the ALS_TCS34725 breakout library */ /* Connect SCL to analog 5 Connect SDA to analog 4 Connect VDD to 5V DC Connect GROUND to common ground */ #include <Wire.h> #include "ALS_TCS34725.h" ALS_TCS34725 tcs = ALS_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"); while (1); } } void loop(void) { uint16_t r, g, b, c, colorTemp, lux; tcs.getRawData(&r, &g, &b, &c); colorTemp = tcs.calculateColorTemperature(r, g, b); 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(" "); } </pre> * 程序效果 打开 Arduino IDE 自带的串口监视器,将颜色传感器放于不同颜色的表面,可以看到串口监视器中打印不同的数值 [[文件:02S16103.png|500px|缩略图|居中]] ===example_Raspberry Pi=== * 使用软件 :编程软件:Python 2.7.13 :操作系统:Linux raspberrypi 4.14.50 :前提:PC 端已通过 SSH 软件登陆到 RaspberryPi 控制器 * 主要硬件 :Raspberry Pi 控制器 :Raspberry Pi GPIO 扩展板 :16G SD 卡 :5V 2.5A 电源适配器 :公母头连接线 :面包板 :TCS34725 颜色传感器 * 硬件连接 [[文件:02S16130.png|600px|缩略图|居中]] * 示例程序 1.使用 FileZilla 软件,将文件夹(TCS34725-RPi)拷贝到树莓派中<br/> [[文件:02S16132.png|500px|缩略图|居中]] 2.进入文件夹 TCS34725-RPi 使用命令<br/> cd TCS34725-RPi<br/> 3.安装需要用到的库文件,安装完成后会提示 Finished <br/> sudo python setup.py install<br/> 4.打开树莓派的 IIC<br/> sudo raspi-config<br/> 选择第五项<br/> [[文件:02S16133.png|600px|缩略图|居中]] 选择I2C<br/> [[文件:02S16134.png|600px|缩略图|居中]] 使用 TAB 键选择 YES,单击回车<br/> [[文件:02S16135.png|600px|缩略图|居中]] 再次单击回车<br/> [[文件:02S16136.png|600px|缩略图|居中]] 使用 TAB 键选择 Finish,然后单击回车,完成开启 IIC 的配置<br/> [[文件:02S16137.png|600px|缩略图|居中]] 执行程序:进入程序目录,可以使用 ls 查看代码是否在当前目录下,使用下列命令执行例程<br/> sudo python simpletest.py <br/> [[文件:02S16138.png|600px|缩略图|居中]] <pre style='color:blue'> # Simple demo of reading color data with the TCS34725 sensor. # Will read the color from the sensor and print it out along with lux and # color temperature. # Author: Tony DiCola # License: Public Domain import time # Import the TCS34725 module. import TCS34725 # Create a TCS34725 instance with default integration time (2.4ms) and gain (4x). import smbus tcs = TCS34725.TCS34725() # You can also override the I2C device address and/or bus with parameters: #tcs = TCS34725.TCS34725(address=0x30, busnum=2) # Or you can change the integration time and/or gain: #tcs = TCS34725.TCS34725(integration_time=TCS34725.TCS34725_INTEGRATIONTIME_700MS, # gain=TCS34725.TCS34725_GAIN_60X) # Possible integration time values: # - TCS34725_INTEGRATIONTIME_2_4MS (2.4ms, default) # - TCS34725_INTEGRATIONTIME_24MS # - TCS34725_INTEGRATIONTIME_50MS # - TCS34725_INTEGRATIONTIME_101MS # - TCS34725_INTEGRATIONTIME_154MS # - TCS34725_INTEGRATIONTIME_700MS # Possible gain values: # - TCS34725_GAIN_1X # - TCS34725_GAIN_4X # - TCS34725_GAIN_16X # - TCS34725_GAIN_60X # Disable interrupts (can enable them by passing true, see the set_interrupt_limits function too). tcs.set_interrupt(False) # Read the R, G, B, C color data. r, g, b, c = tcs.get_raw_data() # Calculate color temperature using utility functions. You might also want to # check out the colormath library for much more complete/accurate color functions. color_temp = TCS34725.calculate_color_temperature(r, g, b) # Calculate lux with another utility function. lux = TCS34725.calculate_lux(r, g, b) # Print out the values. print('Color: red={0} green={1} blue={2} clear={3}'.format(r, g, b, c)) # Print out color temperature. if color_temp is None: print('Too dark to determine color temperature!') else: print('Color Temperature: {0} K'.format(color_temp)) # Print out the lux. print('Luminosity: {0} lux'.format(lux)) # Enable interrupts and put the chip back to low power sleep/disabled. tcs.set_interrupt(True) tcs.disable() </pre> * 程序效果 [[文件:02S16131.png|700px|缩略图|居中]] ==相关资料== [[文件:erweima.png|230px|无框|右]] * IIC 颜色传感器 datasheet & 示例程序 下载链接:https://pan.baidu.com/s/1o2l7MoCGbaR_o64IlEOPLA 密码:311e<br/> * 产品购买链接:http://www.alsrobot.cn/goods-871.html
返回
SKU:RB-02S161 IIC 颜色传感器
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变换
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
社区专页
新闻动态
最近更改
随机页面
帮助
工具箱
链入页面
相关更改
特殊页面
页面信息