Difference between revisions of "Matrix - Buzzer"

From FriendlyELEC WiKi
Jump to: navigation, search
Line 2: Line 2:
  
 
==介绍==
 
==介绍==
该按键在未按时输出高电平,按下后输出低电平。
+
待写...
  
 
==特性==
 
==特性==
* 使用标准的3 PIN接口
+
待写...
* 尺寸为 8x24mm
+
  
 
==使用方法==
 
==使用方法==
 
===连接===
 
===连接===
 
*连接到Tiny4412 SDK (1506)
 
*连接到Tiny4412 SDK (1506)
::将配件S针脚连接到GPIO PIN1, V接5V,G接地
+
::待写...
  
 
===Linux下的C示例===
 
===Linux下的C示例===
Line 17: Line 16:
 
#include <stdio.h>
 
#include <stdio.h>
 
#include "libfahw.h"
 
#include "libfahw.h"
 
static struct sensor button[] = {
 
        {
 
                TINY4412_GPIO_PIN1,
 
                IRQ_TYPE_EDGE_FALLING,
 
        }
 
};
 
 
int main(void)
 
{
 
    int i;
 
    int retSize = -1;
 
    char value[ARRAY_SIZE(button)];
 
    int devFD = -1;
 
    if ((devFD =sensorInit(button, ARRAY_SIZE(button))) == -1) {
 
        printf("Fail to init sensor\n");
 
        return -1;
 
    }
 
    printf("Press the button...\n");
 
    if (( retSize = sensorRead(devFD, value, ARRAY_SIZE(button)) ) == -1) {
 
        printf("Fail to read sensors\n");
 
    }
 
    if (retSize > 0) {
 
        i = 0;
 
        for (i=0; i<retSize; i++) {
 
            printf("Button[%d]:%d\n", i, value[i]);
 
        }
 
    }
 
    sensorDeinit(devFD);
 
    return 0;
 
}
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 55: Line 23:
 
cd fa-hardware
 
cd fa-hardware
 
cd demo
 
cd demo
cd button
+
cd xxx
 
make
 
make
 
</syntaxhighlight>
 
</syntaxhighlight>
将编译生成的button通过ftp上传到开发板上运行即可测试。
+
将编译生成的xxx通过ftp上传到开发板上运行即可测试。
  
 
==相关资料==
 
==相关资料==

Revision as of 07:39, 16 July 2015

查看中文

1 介绍

待写...

2 特性

待写...

3 使用方法

3.1 连接

  • 连接到Tiny4412 SDK (1506)
待写...

3.2 Linux下的C示例

#include <stdio.h>
#include "libfahw.h"

3.3 编译并运行示例

git clone http://github.com/friendlyarm/fa-hardware.git
cd fa-hardware
cd demo
cd xxx
make

将编译生成的xxx通过ftp上传到开发板上运行即可测试。

4 相关资料