当前位置:网站首页>Smart Trash Can (8) - Infrared Tube Sensor (Raspberry Pi pico)
Smart Trash Can (8) - Infrared Tube Sensor (Raspberry Pi pico)
2022-07-31 16:26:00 【light chases rain】
文章目录
一、模块展示

二、模块说明
该传感器模块对环境光线适应能力强,其具有一对红外线发射与接收管,发射管发射出一定频率的红外线,当检测方向遇到障碍物(反射面)时,红外线反射回来被接 收管接收,经过比较器电路处理之后,绿色指示灯会亮起,同时信号输出接口输出数字信号(一个低电平信号),可通过电位器旋钮调节检测距离,有效距离范围 2~30cm,工作电压为3.3V-5V.该传感器的探测距离可以通过电位器调节.
三、模块参数说明
- 当模块检测到前方障碍物信号时,电路板上绿色指示灯点亮电平,同时OUT端口持续输出低电平信号,该模块检测距离2~30cm,检测角度35°,检测距离可以通过电位器进行调节,顺时针调电位器,检测距离增加;逆时针调电位器,检测距离减少.
- 传感器主动红外线反射探测,因此目标的反射率和形状是探测距离的关键.其中黑色探测距离最小,白色最大;小面积物体距离小,大面积距离大.
- 传感器模块输出端口OUT可直接与单片机IO口连接即可,也可以直接驱动一个5V继电器;连接方式:VCC-VCC;GND-GND;OUT-IO.
- 可采用3-5V直流电源对模块进行供电.当电源接通时,红色电源指示灯点亮.
四、模块接口说明
1 VCC 外接3.3V-5V电压(可以直接与5v单片机和3.3v单片机相连)
2 GND 外接GND
3 OUT 小板数字量输出接口(0和1)
五、Interfacing with the pins of the Raspberry Pi
5.1 参照图

5.2 实物图

六、代码展示
from machine import Pin
import utime
key = Pin(0, Pin.IN)
# 配置按键
# key = machine.Pin(id, mode, pull)
# id:树莓派Pico引脚编号
# mode:输入输出方式,有Pin.IN(输入)和Pin.OUT(输出)两种
# pull:上下拉电阻配置,有None(无上下拉电阻)、Pin.PULL_UP(上拉电阻)和Pin.PULL_DOWN(下拉电阻)三种
while True:
while key.value() == 0:
print("somethings")
utime.sleep(1)
while key.value() == 1:
print("Nothing")
utime.sleep(1)
七、效果展示
7.1 实物展示

7.2 代码效果展示

边栏推荐
- Summary of the implementation method of string inversion "recommended collection"
- Qt实战案例(54)——利用QPixmap设计图片透明度
- C程序是如何跑起来的01 —— 普通可执行文件的构成
- MySQL multi-table union query
- 2020 WeChat applet decompilation tutorial (can applet decompile source code be used)
- Deployment application life cycle and Pod health check
- [pytorch] 1.7 pytorch and numpy, tensor and array conversion
- ansible学习笔记02
- Website vulnerability repair service provider's analysis of unauthorized vulnerability
- Handling write conflicts under multi-master replication (4) - multi-master replication topology
猜你喜欢

MySQL的相关问题

t-sne 数据可视化网络中的部分参数+

Implementing distributed locks based on Redis (SETNX), case: Solving oversold orders under high concurrency

Tencent Cloud Deployment----DevOps

使用 Postman 工具高效管理和测试 SAP ABAP OData 服务的试读版

Unity 之 图集属性详解和代码示例 -- 拓展一键自动打包图集工具

"Autumn Recruitment Series" MySQL Interview Core 25 Questions (with answers)

Qt practical cases (54) - using transparency QPixmap design pictures

Grafana安装后web打开报错

T - sne + data visualization parts of the network parameters
随机推荐
单细胞测序流程(单细胞rna测序)
tensorflow2.0 cnn(layerwise)
.NET 20周年专访 - 张善友:.NET 技术是如何赋能并改变世界的
2.索引及调优篇【mysql高级】
After the form is submitted, the page does not jump [easy to understand]
Three aspects of Ali: How to solve the problem of MQ message loss, duplication and backlog?
C程序是如何跑起来的01 —— 普通可执行文件的构成
LevelSequence源码分析
jeecg主从数据库读写分离配置「建议收藏」
ASP.NET Core generates continuous Guid
深度学习机器学习理论及应用实战-必备知识点整理分享
mongo enters error
基于ABP实现DDD
Anaconda如何顺利安装CV2
Applicable scenario of multi-master replication (2) - client and collaborative editing that require offline operation
go图书管理系统
MySQL基础篇【单行函数】
Flutter gets the height of the status bar statusbar
2022年必读的12本机器学习书籍推荐
Precautions and solutions when SIGABRT error is reported