|
|
Line 1: |
Line 1: |
| [[Matrix - Potentiometer/zh|查看中文]] | | [[Matrix - Potentiometer/zh|查看中文]] |
− |
| |
− | ==介绍==
| |
− | [[File:Potentiometer .png|thumb|Potentiometer]]
| |
− | *Matrix-Potentiometer是一个简单的电位器模块,电位器最常见的用途是各式音响声源设备里的音量控制或电子设备里的各式准位与功率等的控制,也可以做为位置或角度的传感器,或者是作为钨丝灯泡调光器或电热丝功率调节器的控制元件等。
| |
− | *引脚为3-Pin 2.54mm排针,V接电源,G接地,S信号输出模拟电压信号。您可以把S输出的电压信号通过ADC转换为数字信号。
| |
− | *输出电压范围:0--Vcc
| |
− |
| |
− | ==特性==
| |
− | * GPIO
| |
− | * 体积小巧
| |
− | * 2.54mm排针接口
| |
− | * PCB尺寸(mm):8x24
| |
− | [[File:Potentiometer.png | frameless|400px|Potentiometer_PCB]]
| |
− |
| |
− | * 引脚说明:
| |
− | {| class="wikitable"
| |
− | |-
| |
− | |名称 || 描述
| |
− | |-
| |
− | |S || 模拟GPIO
| |
− | |-
| |
− | |V || 电源5V
| |
− | |-
| |
− | |G || 地
| |
− | |}
| |
− |
| |
− | ==工作原理==
| |
− | *电位器是一种具有三个端子,其中有两个固定接点与一个滑动接点,可经由滑动而改变滑动端与两个固定端间电阻值的电子零件,属于被动元件,使用时可形成不同的分压比率,改变滑动点的电位。
| |
− | *模块主要器件是一个电位器,通过改变接入电路部分电阻线的长度来改变接入部分的电阻值,从而改变输出端的分压。
| |
− |
| |
− | ==下载Matrix源码==
| |
− | Matrix配件相关的代码是完全开源的,统一由一个仓库进行管理:git://github.com/friendlyarm/matrix.git <br>
| |
− | 该仓库里不同的分支代表着Matrix配件所支持的不同开发板。<br>
| |
− | * nanopi分支用于支持NanoPi;
| |
− | * nanopi2分支用于支持NanoPi 2;
| |
− | * tiny4412分支用于支持Tiny4412;
| |
− | * raspberrypi分支用于支持RaspberryPi;
| |
− |
| |
− | 在主机PC上安装git,以Ubuntu14.04为例
| |
− | <syntaxhighlight lang="bash">
| |
− | $ sudo apt-get install git
| |
− | </syntaxhighlight>
| |
− |
| |
− | 克隆Matrix配件代码仓库
| |
− | <syntaxhighlight lang="bash">
| |
− | $ git clone git://github.com/friendlyarm/matrix.git
| |
− | </syntaxhighlight>
| |
− | 克隆完成后会得到一个名为matrix的目录,里面存放着所有Matrix配件的代码。
| |
− |
| |
− | ==与NanoPi 2连接使用==
| |
− | ===硬件连接===
| |
− | 参考下图连接模块Matrix-Potentiometer和NanoPi 2:<br>
| |
− | [[File:Matrix-Potentiometer.jpg|frameless|600px|Matrix-Potentiometer]]
| |
− |
| |
− | 连接说明:
| |
− | {| class="wikitable"
| |
− | |-
| |
− | |Matrix-Photoresistor ||
| |
− | |-
| |
− | |GND || NanoPi 2 Pin14
| |
− | |-
| |
− | |5V || NanoPi 2 Pin2
| |
− | |-
| |
− | |S || Matrix-Analog_to_Digital_Converter A0
| |
− | |}
| |
− |
| |
− | * Matrix - Potentiometer 模块的使用,直接运行Matrix-Potentiometer模块的demo即可。
| |
− |
| |
− | ===编译测试程序===
| |
− | 进入Matrix代码仓库,切换到nanopi2分支
| |
− | <syntaxhighlight lang="bash">
| |
− | $ cd matrix
| |
− | $ git checkout nanopi2
| |
− | </syntaxhighlight>
| |
− |
| |
− | 编译Matrix配件代码
| |
− | <syntaxhighlight lang="bash">
| |
− | $ make CROSS_COMPILE=arm-linux- clean
| |
− | $ make CROSS_COMPILE=arm-linux-
| |
− | $ make CROSS_COMPILE=arm-linux- install
| |
− | </syntaxhighlight>
| |
− | 注意:请确保你的主机PC当前使用的交叉编译器为NanoPi 2配套的arm-linux-gcc-4.9.3。<br>
| |
− | 编译成功后库文件位于install/lib目录下,而测试程序则位于install/usr/bin目录下,模块Matrix-Analog_to_Digital_Converter对应的测试程序为matrix-adc。<br>
| |
− |
| |
− | ===运行测试程序===
| |
− | 将带有Debian系统的SD卡插入一台运行Linux的电脑,可以挂载SD卡上的boot和rootfs分区。<br>
| |
− | 假设rootfs分区的挂载路径为/media/rootfs,执行以下命令将Matrix的硬件驱动、库文件和测试程序拷贝到NanoPi 2的文件系统上。<br>
| |
− | <syntaxhighlight lang="bash">
| |
− | $ cp modules /media/rootfs/ -r
| |
− | $ cp install/lib/* /media/rootfs/lib/ -d
| |
− | $ cp install/usr/bin/* /media/rootfs/usr/bin/
| |
− | </syntaxhighlight>
| |
− |
| |
− | 将SD卡重新插入NanoPi 2,上电启动,在Debian的shell终端中执行以下命令加载硬件驱动。<br>
| |
− | <syntaxhighlight lang="bash">
| |
− | $ cd /modules
| |
− | $ insmod pcf8591.ko
| |
− | </syntaxhighlight>
| |
− |
| |
− | 运行模块Matrix-Potentiometer 的测试程序。<br>
| |
− | <syntaxhighlight lang="bash">
| |
− | $ matrix-adc
| |
− | </syntaxhighlight>
| |
− | 运行效果如下:<br>
| |
− | [[File:matrix-Potentiometer _result.png|frameless||matrix-Potentiometer _result]] <br>
| |
− |
| |
− | ===代码展示===
| |
− | <syntaxhighlight lang="c">
| |
− | int main(int argc, char ** argv)
| |
− | {
| |
− | int i = 0;
| |
− | int value = 0;
| |
− | int channel = 0;
| |
− |
| |
− | if (argc == 2) {
| |
− | channel = atoi(argv[1]);
| |
− | }
| |
− |
| |
− | for (i=0; i<ADC_READ_TIMES; i++) {
| |
− | if (pcf8591Read(channel, &value) != -1) {
| |
− | printf("channel%d value=%d\n", channel, value);
| |
− | } else {
| |
− | printf("Fail to get channel%d value\n", channel);
| |
− | }
| |
− | usleep(10000);
| |
− | }
| |
− | return 0;
| |
− | }
| |
− | </syntaxhighlight>
| |