“TSL2561.begin()”的版本间的差异
(创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''TSL2561.begin(tslIntegrationTime,tslGain)'''</p> <br> <p style="color: #E87E05;font-size:13...”) |
|||
第33行: | 第33行: | ||
result = tsl.begin(); //检测是否连接了 | result = tsl.begin(); //检测是否连接了 | ||
} | } | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
} | } | ||
</source> | </source> |
2017年7月26日 (三) 08:12的最新版本
TSL2561.begin(tslIntegrationTime,tslGain)
描述 开启IIC通信通讯,设置采样时间和增益。 参数 begin()里面可以不写任意参数,
返回值 bool类型,true或false。检测传感器是否连接。 示例 #include <Miroduino_TSL2561.h>
TSL2561 tsl;
void setup(void)
{
Serial.begin(9600);
bool result = tsl.begin(); //初始化光照传感器,检测是否连接了
while (!result) // 当没识别到光照传感器,重复检测
{
Serial.print("Ooops, no TSL2561 detected ... Check your wiring!");//串口打印警告
result = tsl.begin(); //检测是否连接了
}
}
void loop() {
}
其他 |