“Sensor-Tem&Hum-S2/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) |
||
(未显示2个用户的4个中间版本) | |||
第1行: | 第1行: | ||
{| style="width: 800px;" | {| style="width: 800px;" | ||
|- | |- | ||
− | |[[File: Microduino-Temp& | + | |[[File: Microduino-Temp&Hum.jpg|300px|left]] || |
::<p style="color: #000000;font-size:200%"><br><br><br><br><br>'''Sensor-Temp&HumS2'''</p> | ::<p style="color: #000000;font-size:200%"><br><br><br><br><br>'''Sensor-Temp&HumS2'''</p> | ||
::产品编号:'''<big style="color: #00A0A6">MSDT31</big>''' | ::产品编号:'''<big style="color: #00A0A6">MSDT31</big>''' | ||
第21行: | 第21行: | ||
|- | |- | ||
| '''通信协议'''||IIC(地址0x40) | | '''通信协议'''||IIC(地址0x40) | ||
+ | |- | ||
+ | | '''温度工作范围'''||温度-40 - +125°C (-40 - +257°F) | ||
+ | |- | ||
+ | | '''湿度工作范围'''||湿度0 - 100% | ||
|- | |- | ||
| '''分辨率'''||温度0.1°C,相对湿度0.1%RH | | '''分辨率'''||温度0.1°C,相对湿度0.1%RH | ||
第76行: | 第80行: | ||
} | } | ||
</source> | </source> | ||
− | |||
*<p style="font-size:125%">库语法手册</p>[[Sensor_Tem_Hum_Reference]] | *<p style="font-size:125%">库语法手册</p>[[Sensor_Tem_Hum_Reference]] | ||
<br> | <br> | ||
第83行: | 第86行: | ||
<br> | <br> | ||
<p style="color: #333333;font-size:135%">'''文档'''</p> | <p style="color: #333333;font-size:135%">'''文档'''</p> | ||
− | *传感器CAD图纸:'''[[File:Sensor_CAD. | + | *传感器CAD图纸:'''[[File:Sensor_CAD.pdf]]''' |
− | * | + | *传感器CAD图纸:'''[[File:Sensirion Humidity Sensors SHT20 Datasheet-1274196.pdf]]''' |
<br> | <br> | ||
---- | ---- |
2018年12月14日 (五) 05:45的最新版本
| |
|
技术规格
引脚
编程手册 您可以通过Getting Started了解使用Arduino IDE编程控制模块。【Sensor_Tem_Hum】库参考页面提供了有关如何使用温湿度传感器的完整详细信息和示例。
#include <Microduino_Tem_Hum.h>
Tem_Hum_S2 termo; //调用Sensor-Tem&Hum-S2传感器
void setup()
{
Serial.begin(9600);
Serial.print("Tem_Hum_S2:");
Serial.print(termo.begin()); //初始化温湿度传感器,并串口打印传感器是否在线
delay(1000);
}
void loop()
{
Serial.print("Tem_Hum_S2 Tem:");
Serial.print(termo.getTemperature()); //串口打印获取的温度
Serial.print("\t");
Serial.print("Tem_Hum_S2 Hum:");
Serial.println(termo.getHumidity()); //串口打印获取的湿度
Serial.println("------------------");
delay(1000);
Serial.print("onLine:");
Serial.println(termo.begin()); //串口打印传感器是否在线
}
文档
相关教程
Q&A
历史
图库 |