“旋钮电位器”的版本间的差异

来自Labplus盛思维基百科
跳转至: 导航搜索
(Tangliufeng移动页面旋钮电位器传感器旋钮电位器
使用教程
第20行: 第20行:
 
|}
 
|}
 
== 使用教程 ==
 
== 使用教程 ==
 +
=== <small>Arduino示例</small> ===
 +
<pre style="color:blue">
 +
int slideRPin =A0;
 +
int val;
 +
void setup() {
 +
  Serial.begin(9600); 
 +
  pinMode(slideRPin, INPUT);
 +
}
 +
 +
void loop() {
 +
  // put your main code here, to run repeatedly:
 +
  val=analogRead(slideRPin);
 +
  Serial.println(val);
 +
}
 +
</pre>

2018年1月6日 (六) 10:39的版本

黑色传感器最终版12.20-22.png

概述

通过旋转电位器调节AO输出模拟量,范围0~1023。可结合其他模块作为调节控制。

技术参数

  • 工作电压:VCC 3.3-5V
  • 模拟输出
  • 模块尺寸:24x46x7.5mm

引脚定义

VCC 电源
NC 空脚
AO 模拟输出
GND

使用教程

Arduino示例

int slideRPin =A0;
int val;
void setup() {
  Serial.begin(9600);  
  pinMode(slideRPin, INPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  val=analogRead(slideRPin);
  Serial.println(val);
}