Difference between revisions of "BakeBit - Button"
From FriendlyELEC WiKi
(→Introduction) |
(→特性) |
||
Line 6: | Line 6: | ||
* If the button is not pressed the module will output high otherwise it will output low. | * If the button is not pressed the module will output high otherwise it will output low. | ||
− | == | + | ==Hardware Spec== |
− | * | + | * Standard 2.0mm pitch 4-Pin BakeBit interface |
− | * | + | * Digital output |
− | * | + | * PCB dimension(mm): 20 x 24 |
[[File:BakeBit - Button002.png | frameless|300px|BakeBit - Button.PCB]] | [[File:BakeBit - Button002.png | frameless|300px|BakeBit - Button.PCB]] | ||
− | * | + | * Pin Description: |
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
− | | | + | |Pin || Description |
|- | |- | ||
− | |GND || | + | |GND || Ground |
|- | |- | ||
− | |5V || | + | |5V || Supply Voltage 5V |
|- | |- | ||
− | |NC || | + | |NC || Not Connected |
|- | |- | ||
− | |SIG || | + | |SIG || Signal |
|} | |} | ||
+ | |||
== 示例程序:Button And Buzzer == | == 示例程序:Button And Buzzer == | ||
Revision as of 14:57, 12 December 2016
Contents
1 Introduction
- The BakeBit - Button is an instant button module and it is used to detect button events. When the button is released the module goes back to its default state.
- If the button is not pressed the module will output high otherwise it will output low.
2 Hardware Spec
- Standard 2.0mm pitch 4-Pin BakeBit interface
- Digital output
- PCB dimension(mm): 20 x 24
- Pin Description:
Pin | Description |
GND | Ground |
5V | Supply Voltage 5V |
NC | Not Connected |
SIG | Signal |
3 示例程序:Button And Buzzer
本示例需要配合蜂鸣器使用。
3.1 硬件连接
简单的将 蜂鸣器 模块插入 D3接口,将 按键 插入 D4 接口,如下面这样:
3.2 示例源代码
import bakebit import time # Connect the BakeBit Ultrasonic Ranger to digital port D4 # SIG,NC,VCC,GND ultrasonic_ranger = 4 # Connect the BakeBit LED to digital port D3 led = 3 bakebit.pinMode(led,"OUTPUT") light = 0 while True: try: # Read distance value from Ultrasonic distance = bakebit.ultrasonicRead(ultrasonic_ranger) print(distance) if distance > 0: if distance<10: if light == 0: print("\ton") bakebit.digitalWrite(led,1) light = 1 else: if light == 1: print("\toff") bakebit.digitalWrite(led,0) light = 0 time.sleep(.2) except KeyboardInterrupt: bakebit.digitalWrite(led,0) break except TypeError: print ("Error") except IOError: print ("Error")
3.3 运行示例
假设你已经参考bakebit教程安装了BakeBit源代码,
要运行示例程序,可以在开发板上进入 BakeBit/Software/Python目录,运行bakebit_prj_Button_And_Buzzer.py:
cd ~/BakeBit/Software/Python sudo python bakebit_prj_Button_And_Buzzer.py
3.4 运行结果
当按下按键时,蜂鸣器会响起,松开按键时,蜂鸣器停止。
4 相关资料
- [Schematic](BakeBit - Button.pdf)
- [BakeBit Github项目](https://github.com/friendlyarm/BakeBit)
- [BakeBit Starter Kit手册](http://wiki.friendlyarm.com/bakebit/bakebit_starter_kit_manual_cn.pdf)