“Sensor-Shake/zh”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
(Wasdpkj@hotmail.com moved page Microduino-Shake/zh to Sensor-Shake/zh
 
(未显示4个用户的30个中间版本)
第1行: 第1行:
 
+
{| style="width: 800px;"
{{Language|Microduino-Shake }}
+
|-
 +
|[[File: Microduino-Shake.jpg|300px|left]] ||
 +
::<p style="color: #000000;font-size:200%"><br><br><br><br><br>'''Sensor-Shake'''</p>
 +
::产品编号:'''<big style="color: #00A0A6">MSDS51</big>'''
 +
|-
 +
|[[File: Add-to-cart.jpg|300px|left|link=https://shop108263663.taobao.com/?spm=a230r.7195193.1997079397.2.ek3cAW]]||
 +
::<p style="color: #000000;font-size:120%">Sensor-Shake是震动检测传感器模块,振动传感器是检测物体机械振动量的一种传感器。
 +
</p>
 +
|}
 +
<br>
 +
<br>
 
{| style="width: 800px;"
 
{| style="width: 800px;"
 
|-
 
|-
 
|
 
|
[[File: Microduino-Shake.jpg|400px|thumb|right| Microduino-Shake]]
+
<p style="color: #333333;font-size:155%">'''技术规格'''</p>
 
+
*传感器电压
Microduino-Shake是震动检测传感器模块。
+
**3.3V~5V工作电压
 
 
电阻应变式振动传感器
 
电阻应变式振动传感器是以电阻变化量来表达被测物体机械振动量的一种振动传感器。电阻应变式振动传感器的实现方式良多,可以应用各种传感元件,其中较为常见的是电阻应变片。
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
==特色==
 
*体积小巧
 
*检测灵敏度可调
 
 
 
==规格==
 
*电器规格
 
**输入:数字信号
 
**3.3V~5V工作电压;
 
  
 
*技术参数
 
*技术参数
**称量范围:300g~数千kg
+
**传感器信号'''<big style="color: #F0483C">没震动时为LOW,有震动后信号变为HIGH</big>'''
**计量准确度:1/1000~1/10000
+
**机械开关在一般存在机械抖动,在使用时最好加上程序防抖
 
 
*尺寸
 
**传感器大小:10mm*7mm,
 
**板子大小:20mm*10mm
 
**1.27mm间距的4Pin接口与sensorhub相连
 
 
 
  
 
*接法
 
*接法
**引脚说明:GND、VCC、信号输出、NC(空)。
+
**本传感器可连接到核心的以下接口:'''D2~D13''','''A0~A7'''
注:该输出信号为数字信号,需要使用数字接口来检测(D0~D13)。可以接到Sensor-hub的3~9号引脚,对应使用的引脚为D4,D6,D8,D10,D12。
+
<br>
[[file:mCookie-sensorhub_rule.JPG|thumb|800px|center]]
+
----
[[File: Microduino-Shake_rule1.jpg|600px|thumb|center]]
+
<br>
 +
<p style="color: #333333;font-size:155%">'''引脚'''</p>
 +
{| border="0" cellpadding="10" width="90%"
 +
|-
 +
|width="35%" valign="center" align="left"|
 +
*IN'''<big style="color: #00A0A6">(数字信号)</big>'''
 +
**PIN1:GND
 +
**PIN2:VCC
 +
**PIN3:数字信号输入
 +
**PIN4:NC(空)
 +
|width="35%" valign="top" align="center"|
 +
[[file: Sensor_backpin.png|130px|center]]
 +
|width="25%" valign="top" align="center"|
 +
|}
 +
<br>
 +
----
 +
<br>
 +
<p style="color: #333333;font-size:135%">'''编程手册'''</p>
 +
您可通过[[AVR核心:Getting_started/zh|Getting Started]]了解使用Arduino IDE编程控制模块。
 +
<p style="color: #333333;font-size:120%">'''普通用法'''</p>
 +
可通过[[digitalRead()]]来直接读取触摸开关的信号:高(1、真)或低(0、假)。
 +
<source lang="cpp">
 +
#include <Arduino.h>
 +
void setup() {
 +
  // put your setup code here, to run once:
 +
  Serial.begin(9600);              //初始化串口,并设置波特率为9600
 +
}
  
==文档==
+
void loop() {
 +
  // put your main code here, to run repeatedly:
 +
  Serial.println(digitalRead(D4));  //打印从模拟引脚读取的震动状态到串口
 +
  delay(10);                    //延时1秒
 +
}
 +
</source>
 +
<p style="color: #333333;font-size:120%">'''高级用法'''</p>
 +
【_07_m_Sensor_Key】库参考页面提供了有关如何使用按键开关的完整详细信息和示例。
 +
*<p style="font-size:125%">库语法手册</p>[[Sensor_Key_Reference]]
 +
<br>
 +
[[file: Sensor_Key-idecode.JPG|400px|center]]
 +
<br>
 +
----
 +
<br>
 +
<p style="color: #333333;font-size:135%">'''文档'''</p>
 +
*传感器CAD图纸:'''[[File:Sensor_CAD.zip]]'''
 +
*库GitLab下载:[https://git.microduino.cn/hardware/libraries/tree/master/_07_m_Sensor_Key _07_m_Sensor_Key库下载]
 +
<br>
 +
----
 +
<br>
 +
<p style="color: #333333;font-size:135%">'''相关教程'''</p>
 +
*[[开关短按与长按]]
 +
*[[开关状态与动作]]
 +
<br>
 +
----
 +
<br>
 +
<p style="color: #333333;font-size:135%">'''Q&A'''</p>
 +
*为什么感觉震动很灵敏?
 +
**因为震动传感器是机械开关,机械开关会抖动。
  
*原理图:'''[[File: Microduino_Shake.Zip]]'''
 
  
 
+
<br>
==开发==
+
<br>
===准备===
+
----
*确认你搭建了Microduino的开发环境,否则参考:[[Microduino Getting started/zh]]
+
<br>
*核心选择
+
<p style="color: #333333;font-size:135%">'''历史'''</p>
**1.直接采用[[Microduino-CoreUSB/zh]]或[[mCookie-CoreUSB/zh]]做核心。
+
*最新版本更新了[[Sensor_Key_Reference]]库使用说明。
**2.采用[[Microduino-Core/zh]]或[[Microduino-Core+/zh]]做核心,还需要使用[[Microduino-USBTTL/zh]]模块来下载程序。
+
*[https://wiki.microduino.cn/index.php?title=Sensor-Shake/zh&oldid=20493 2017/5/31]
 
+
<br>
 
+
<br>
===程序===
+
----
*打开Arduino IDE,选择File→Examples→Basics→DigitalReadSerial示例程序,选择正确的板卡,编译通过后直接下载。
+
<br>
[[file:mCookie-crashCodeExample.JPG|thumb|800px|center]]
+
<p style="color: #333333;font-size:135%">'''图库'''</p>
 
+
{| border="0" cellpadding="10" width="100%"
*int pushButton = 6;  定义输入引脚为D6,用户可以更改。名字也可改成shakePin
+
|-
*pinMode(pushButton, INPUT);    定义pushButton为输入引脚。
+
|width="50%" valign="top" align="left"|
*int buttonState = digitalRead(pushButton);   读取pushButton输入引脚的值
+
[[file: MicroduinoShake-F.JPG|250px|center]]
*下载完毕后,打开串口监视器,没有震动时返回值为“0”,当检测到震动时返回值为“1”,可以根据检测值来判断是否有震动。还可通过调节传感器背后的R3电阻来调节检测的灵敏度。
+
|width="50%" valign="top" align="left"|
 
+
[[file: Microduino-Shake-b.JPG|250px|center]]
===硬件搭建===
+
|}
*将Shake传感器和Sensorhub的数字口(D6)接起来,这个就是上面讲的定义pushButton的引脚,用户可自己更改。
 
*可参考:[[Microduino-Sensorhub/zh]]
 
[[file:Microduino-sensorhub_6.JPG|thumb|400px|center]]
 
*可参考:[[mCookie-Hub/zh]]
 
[[file:mCookie-sensorhub_6.JPG|thumb|400px|center]]
 
*将核心,Sensorhub,shake连接在一起。通过USB数据线将接入电脑。
 
*选择正确的板卡和COM端口,编译通过后直接下载。参考[[AVR核心:Getting started/zh]]
 
[[file:upload.JPG|thumb|800px|center]]
 
*下载后打开串口通讯就可以看到震动输入值了。
 
 
 
 
 
==应用==
 
*做为震动感受器
 
 
 
===项目===
 
[[懒驴]]
 
 
 
==开发==
 
适用于震动检测
 
 
 
==购买==
 
 
 
==历史==
 
 
 
==图库==
 
 
 
*正面
 
[[file: Microduino-Shake-F.JPG|thumb|600px|center|Microduino-Shake Front]]
 
*背面
 
[[file: Microduino-Shake -b.JPG|thumb|600px|center|Microduino-Shake Back]]
 
 
|}
 
|}
 +
<br>
 +
<p style="font-size:150%">[[MCookie 传感器系列|返回Sensor界面]]</p>
 +
<br>
 +
<br>

2018年11月14日 (三) 05:59的最新版本

Microduino-Shake.jpg






Sensor-Shake

产品编号:MSDS51
Add-to-cart.jpg

Sensor-Shake是震动检测传感器模块,振动传感器是检测物体机械振动量的一种传感器。



技术规格

  • 传感器电压
    • 3.3V~5V工作电压
  • 技术参数
    • 传感器信号没震动时为LOW,有震动后信号变为HIGH
    • 机械开关在一般存在机械抖动,在使用时最好加上程序防抖
  • 接法
    • 本传感器可连接到核心的以下接口:D2~D13,A0~A7




引脚

  • IN(数字信号)
    • PIN1:GND
    • PIN2:VCC
    • PIN3:数字信号输入
    • PIN4:NC(空)
Sensor backpin.png




编程手册

您可通过Getting Started了解使用Arduino IDE编程控制模块。

普通用法

可通过digitalRead()来直接读取触摸开关的信号:高(1、真)或低(0、假)。

#include <Arduino.h>
void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);               //初始化串口,并设置波特率为9600
}

void loop() {
  // put your main code here, to run repeatedly:
  Serial.println(digitalRead(D4));   //打印从模拟引脚读取的震动状态到串口
  delay(10);                    //延时1秒
}

高级用法

【_07_m_Sensor_Key】库参考页面提供了有关如何使用按键开关的完整详细信息和示例。


Sensor Key-idecode.JPG




文档




相关教程




Q&A

  • 为什么感觉震动很灵敏?
    • 因为震动传感器是机械开关,机械开关会抖动。






历史





图库

MicroduinoShake-F.JPG
Microduino-Shake-b.JPG


返回Sensor界面