“LEGO-磁控开关”的版本间的差异
来自YFRobotwiki
(→电路连接示意图) |
|||
第56行: | 第56行: | ||
'''复制代码至Arduino IDE中编译上传''' | '''复制代码至Arduino IDE中编译上传''' | ||
<source lang="c"> | <source lang="c"> | ||
− | const int | + | /* |
− | const int | + | Alarm |
+ | - 磁控报警器 | ||
+ | |||
+ | This example code is in the public domain. | ||
+ | Author : YFROBOT ZL | ||
+ | Website : www.yfrobot.com.cn | ||
+ | Create Time: 2021-02-19 | ||
+ | */ | ||
+ | |||
+ | const int buzzerPin = 5; // select the pin for the buzzer | ||
+ | const int reedSwitchPin = 11; // select the input pin for the reed Switch | ||
void setup() { | void setup() { | ||
− | + | pinMode(buzzerPin, OUTPUT); | |
+ | pinMode(reedSwitchPin, INPUT); | ||
} | } | ||
void loop() { | void loop() { | ||
− | + | if (digitalRead(reedSwitchPin) == LOW) { | |
− | + | digitalWrite(buzzerPin, HIGH); | |
− | + | } else { | |
− | + | digitalWrite(buzzerPin, LOW); | |
− | + | } | |
} | } | ||
</source> | </source> | ||
第78行: | 第89行: | ||
'''[http://mixly.org Mixly]V1.1.5、[https://gitee.com/finalvalue/yfrobot-lego-lib-for-mixly1.0 YFlego库]V0.1.1 ''' | '''[http://mixly.org Mixly]V1.1.5、[https://gitee.com/finalvalue/yfrobot-lego-lib-for-mixly1.0 YFlego库]V0.1.1 ''' | ||
− | [[Image:LEGO- | + | [[Image:LEGO- 磁控开关-Mixly-Alarm.png|500px|LEGO- 磁控开关-Mixly示例]] |
第87行: | 第98行: | ||
'''[http://mindplus.cc/ Mind+] 1.7 ''' | '''[http://mindplus.cc/ Mind+] 1.7 ''' | ||
− | [[Image:LEGO- | + | [[Image:LEGO- 磁控开关-Mind-Alarm.png|430px|LEGO- 磁控开关-Mind+示例]] |
|} | |} |
2021年5月12日 (三) 15:39的版本
生成缩略图出错:文件可能丢失:
目录
产品简介
LEGO磁控开关采用进口塑封全镀金干簧管设计制作,可实现对当前环境的磁场检测,检测距离约1cm。
LEGO磁控开关具有统一的兼容乐高积木的外壳,可轻松完成乐高积木的拼接,实现创意设计。
当磁控开关模块检测到外部磁场时(例如:有磁铁靠近),内部弹片吸合模块输出低电平;反之无磁场模块默认输出高电平。
扩展阅读
干簧管(Reed Switch)也称舌簧管或磁簧开关,是一种磁敏的特殊开关,它是由Western Electric 公司在1940年发明的。其它主要元件是开或关的弹性簧片及磁铁或电磁铁;经过几十年的改进,它的稳定性更进一步。它寿命可以达到百万次以上。而且干簧管对于坏境的要求也比较低(如不受湿度影响),相对霍尔传感器,它的使用范围更加广。
更多干簧管参数请查看页末 --> 参考资料。
规格参数
- 供电电压:DC3.3V~5V
- 信号类型:数字输入
- 检测距离:约1cm
- 接口类型:PH2.0-4P
- 外形尺寸:单位mm
引脚说明
生成缩略图出错:文件可能丢失:
应用示例
示例需要硬件:
- Arduino UNO
- Arduino UNO 专用扩展板
- 磁控开关模块
- 蜂鸣器模块(有源)
- 线材
电路连接示意图
磁控开关的 G、V、S分别连接 Arduino UNO的GND、VCC、D11引脚。
蜂鸣器模块的 G、V、S分别连接 Arduino UNO的GND、VCC、D5引脚。
生成缩略图出错:文件可能丢失:
Arduino IDE示例代码
/* Alarm - 磁控报警器 This example code is in the public domain. Author : YFROBOT ZL Website : www.yfrobot.com.cn Create Time: 2021-02-19 */ const int buzzerPin = 5; // select the pin for the buzzer const int reedSwitchPin = 11; // select the input pin for the reed Switch void setup() { pinMode(buzzerPin, OUTPUT); pinMode(reedSwitchPin, INPUT); } void loop() { if (digitalRead(reedSwitchPin) == LOW) { digitalWrite(buzzerPin, HIGH); } else { digitalWrite(buzzerPin, LOW); } } |
Mixly示例代码生成缩略图出错:文件可能丢失:
|
Mind+示例代码
生成缩略图出错:文件可能丢失:
|
程序运行结果
当摇杆动作有变化时,输出相应数据,如下图:
参考资料
- \
访问YFRobot论坛 | 论坛邀请码获取 | 技术交流群 |
淘宝企业店 | 淘宝直营店 | 联系我们 |