- 产品概述
—————————————————————————————————
本模块是基于水体导电率设计的模拟水滴量传感器具有灵敏度高使用方便等优点。因模块基于水体导电率设计可能会应水体不同模拟数据有所不同。
- 产品参数
—————————————————————————————————
工作电压:DC3.3—5v
板子尺寸:27mm*45mm
信号方式:模拟量采集 - 端口说明
S : 信号输出
+:VCC
-:GND - Arduino示例程序
/*
www.openjumper.cn
*/
const int analogInPin = A0;
int sensorValue = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
sensorValue = analogRead(analogInPin);
Serial.print("sensor = ");
Serial.print(sensorValue);
delay(2);
}
- Mixly图形化示例程序