硬件平台:PC机一台,ibox卡片电脑一只,arduino扩展板一个,电位器外设一个 软件平台:WIN7操作系统,android4.0或android4.4系统 打开arduino的IDE开发工具,依次点击文件->示例->01.Basics-> ReadAnalogVoltage,ReadAnalogVoltage的示例程序将会被打开,其源码如下: - // the setup routine runs once when you press reset:
- void setup() {
- // initialize serial communication at 9600 bits per second:
- Serial.begin(9600);
- }
-
- // the loop routine runs over and over again forever:
- void loop() {
- // read the input on analog pin 0:
- int sensorValue = analogRead(A0);
- // Convert the analog reading (which goes from 0 - 4095) to a voltage (0 - 1.8V):
- float voltage = sensorValue * (1.8 / 4095.0);
- // print out the value you read:
- Serial.println(voltage);
- }
复制代码 该程序和前面的AD转换实验唯一的差别就是,通过analogRead函数读取的值最终通过转换算法将采样得到的数字信号转换成了模拟值,即实际的电压值。实验时,需要将3PIN电位器的两端的管脚分别接到5V和GND,中间的管脚接到A0。通过旋转电位器,可以看到调试窗口的电压值会随之发生变化。
|