“Sensor-Joystick/zh”的版本间的差异
第25行: | 第25行: | ||
*1.27mm间距的4Pin接口 | *1.27mm间距的4Pin接口 | ||
*输出:两个0~5V模拟输出 | *输出:两个0~5V模拟输出 | ||
− | * | + | *引脚说明:GND、VCC、信号1输出、信号2输出,该输出信号为模拟信号,需要使用模拟接口来检测(A0~A7)。可以接到Sensor-hub的10,11,12号引脚,对应使用的引脚为A7/A6,A3/A2,A1/A0。 |
[[file:mCookie-sensorhub_rule.JPG|thumb|800px|center]] | [[file:mCookie-sensorhub_rule.JPG|thumb|800px|center]] | ||
[[File: Microduino-Joystick_rule1.jpg|600px|thumb|center]] | [[File: Microduino-Joystick_rule1.jpg|600px|thumb|center]] |
2015年7月16日 (四) 15:24的版本
Language | English |
---|
Microduino-Joystick是摇杆传感器,可以检测摇杆在平面上的位移。
特色
规格
文档开发可以模拟鼠标和其他位移传感器,用作人机交互输入。 应用
void setup() {
Serial.begin(9600); //串口初始化
}
void loop() {
int sensorValueX = analogRead(A0); //X轴输入
int sensorValueY = analogRead(A1); //Y轴输入
float voltageX = sensorValueX * (5.0 / 1023.0);
float voltageY = sensorValueY * (5.0 / 1023.0);
Serial.print(voltageX);
Serial.print(",");
Serial.println(voltageY);
delay(50);
}
}
购买历史图库
|