查看: 3392|回复: 5

Touch Sensor Module of Linker Kit on pcDuino

[复制链接]
  • TA的每日心情
    奋斗
    2020-9-28 10:10
  • 签到天数: 1018 天

    连续签到: 1 天

    [LV.10]以坛为家III

    发表于 2013-3-15 14:00:29 | 显示全部楼层 |阅读模式
    分享到:
    本帖最后由 xinxincaijq 于 2013-3-15 14:15 编辑

    In this tutorial, we are going to use touch sensor module of Linker kit on pcDuino.

    First, we take a protoshield , and female to female jumpers.
    Protoshield-1024x682.jpg
    DSCF1386-1024x682.jpg
    Now we can add Arduino shield.

    We use Linker kit in this tutorial:
    5.jpg

    With the following code, when we touch the touch module, the LED will light up. It will go off when we remove from the touch module.
    http://player.youku.com/player.php/sid/XNTI3MTA5MjU2/v.swf
    Code:

    1. ubuntu@ubuntu:~/arduino/test$ more touch_sen.c

    2. /*
    3. * Touch Sensor module of Linker Kit for pcDuino
    4. * http://linksprite.com/wiki/index.php5?title=Touch_Sensor_Module
    5. */
    6. #include "core.h"
    7. int led_pin = 8; //Connect LED module to GPIO 8
    8. int btn_pin = 7; //Connect touch module to GPIO 7

    9. void setup()
    10. {

    11. pinMode(led_pin, OUTPUT);
    12. pinMode(btn_pin, INPUT);
    13. }

    14. void loop()
    15. {
    16. int value = digitalRead(btn_pin); // get button status

    17. if ( value == HIGH ) // button pressed
    18. {
    19. digitalWrite(led_pin, HIGH); // turn on LED
    20. }
    21. else // button released
    22. {
    23. digitalWrite(led_pin, LOW); // turn off LED
    24. }
    25. delay(100);
    26. }
    复制代码
    回复

    使用道具 举报

  • TA的每日心情
    无聊
    2016-12-20 15:08
  • 签到天数: 510 天

    连续签到: 1 天

    [LV.9]以坛为家II

    发表于 2013-3-15 22:18:42 | 显示全部楼层
    话说怎么感觉从视频里看不到灯亮呢
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    奋斗
    2020-9-28 10:10
  • 签到天数: 1018 天

    连续签到: 1 天

    [LV.10]以坛为家III

    发表于 2013-3-15 22:50:13 | 显示全部楼层
    ming1006 发表于 2013-3-15 22:18
    话说怎么感觉从视频里看不到灯亮呢

    视频中灯在下方,灯光不是太明显,与拍摄环境有关系!
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    奋斗
    2020-9-28 10:10
  • 签到天数: 1018 天

    连续签到: 1 天

    [LV.10]以坛为家III

    发表于 2013-3-15 22:50:23 | 显示全部楼层
    ming1006 发表于 2013-3-15 22:18
    话说怎么感觉从视频里看不到灯亮呢

    视频中灯在下方,灯光不是太明显,与拍摄环境有关系!
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    无聊
    2016-12-20 15:08
  • 签到天数: 510 天

    连续签到: 1 天

    [LV.9]以坛为家II

    发表于 2013-3-15 23:02:22 | 显示全部楼层
    xinxincaijq 发表于 2013-3-15 22:50
    视频中灯在下方,灯光不是太明显,与拍摄环境有关系!

    又看了一遍,终于看到了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2013-3-19 13:35:57 | 显示全部楼层
    少看电影多看教学视频。屌丝男华丽变成高富帅。。。。。
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 注册/登录

    本版积分规则

    关闭

    站长推荐上一条 /4 下一条

    手机版|小黑屋|与非网

    GMT+8, 2024-11-19 14:30 , Processed in 0.157016 second(s), 25 queries , MemCache On.

    ICP经营许可证 苏B2-20140176  苏ICP备14012660号-2   苏州灵动帧格网络科技有限公司 版权所有.

    苏公网安备 32059002001037号

    Powered by Discuz! X3.4

    Copyright © 2001-2024, Tencent Cloud.