体感互动-电位器

来自Microduino Wikipedia
跳转至: 导航搜索
Language English

目的

本教程将教大家如何用电位器来控制Processing,让屏幕上的笑脸左右移动。

设备

  • 其他硬件设备
    • USB数据连接线 一根
    • 电位器 一个
    • 330欧电阻 一个
    • 面包板 一个
    • 跳线 一盒

原理图

InteractivePotentiometerSchematics.jpg


程序

InteractivePotentiometer

调试

步骤一:按着原理图搭建硬件环境,像这样:

InteractivePotentiometerConnectionDiagram.jpg


步骤二:解释一下代码:

//读取电位器模拟值,并把值赋给笑脸的x轴坐标值

 void draw() {
   sensorValue = arduino.analogRead(potPin); //Reading the value of the potentiometer
   background(255);
   image(face,sensorValue,80);
 }

步骤三:下载代码并编译通过。

步骤四:运行后会在左侧出现一个笑脸,转动电位器看看笑脸有什么反应。

结果

屏幕上的笑脸会随着电位器左右移动,像这样:

InteractivePotentiometerResult.jpg


视频