arduino之模拟输入-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 3292|回复: 0

arduino之模拟输入

[复制链接]
发表于 2018-4-17 14:17 | 显示全部楼层 |阅读模式
总操流程:
1、各器件链接
2、写入程序
3、测试



各器件链接
1.png


写程序


  • int analogPin = A0;
  • int val = 0 ;
  • void setup()
  • {
  •   Serial.begin(9600);
  • }
  • void loop()
  • {
  •   val = analogRead(analogPin);
  •   Serial.println(val);
  •   delay(1000);
  • }


测试
转动电位器可以看到数值变化
1523945526139_18.gif


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 16:45 , Processed in 0.102052 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表