Arduino模拟电压检测模块 V2
外观
概述
- 基于电阻分压原理的电压检测模块,配合Arduino传感器扩展板可以完成对电压电量大小的检测,可以监控互动媒体作品的电量或机器人供电的电量。
- 电压检测模块能使输入的电压缩小5倍。由于Arduino模拟输入电压最大为5V,故电压检测模块的输入电压不能大于5Vx5=25V。
- Arduino的模拟分辨率最小为0.0049V,所以电压检测模块输入最小电压为0.0049Vx5=0.0245V。
- 被测电源引线到蓝色接线柱上,正接VCC,负接GND。
技术规格
- 工作电压:5V
- 检测电压: DC最大+25V,最小+0.0245V
- 尺寸:20X30mm
- 重量:10g
链接示意图
模拟传感器连接示意图
示例代码
void setup()
{
Serial.beign(9600);
}
void loop()
{
int val;
float temp;
val=analogRead(0);//This divider module will divide the measured voltage by 5, the maximum voltage it can measure is 25V.
temp=val/40.92; //
val=(int)temp;//
Serial.println(val);
delay(100);
}
本文整理于DFRobot wiki
获取最新文章: 扫一扫右上角的二维码加入“创客智造”公众号