当前位置:网站首页>Modular programming of wireless transmission module nRF905 controlled by single chip microcomputer
Modular programming of wireless transmission module nRF905 controlled by single chip microcomputer
2022-06-25 07:43:00 【Assassin ari】
Here, the single chip microcomputer controls the wireless transmission module nRF905 Share your program , If there is any deficiency , Please point out .
Catalog
One 、 Single point communication experiment ( One to one correspondence )
Two 、 Multipoint communication experiment ( One to many communication )
One 、 Single point communication experiment ( One to one correspondence )
explain : A sender 、 A receiver
【 picture 】
【 video 】
Wireless transmission module nRF905 Modular programming of ( One to one communication experiment )
( One ) Sending end program main program
void main()
{
System_Init();
while(1)
{
DS18B20_ReadTemperature(&temp);
display(temp);
send(temp);
}
}
( Two ) Receiving end main program
void main()
{
System_Init();
while(1)
{
nRF905_SetRxMode();
nRF905_RxData();
if(nRF905_ReceiveFlag)// If data is received
{
nRF905_ReceiveFlag = 0 ;
display();
Buzzer_Alarm();// Buzzer alarm , Indicates that data has been received
}
}
}
Program download link :https://download.csdn.net/download/yagnruinihao/80457678https://download.csdn.net/download/yagnruinihao/80457678
Two 、 Multipoint communication experiment ( One to many communication )
explain : Four senders 、 A receiver ( works : be based on NRF905 Multipoint temperature wireless acquisition system )
1. Overall renderings
【 video 】
be based on nRF905 Design of multi-point temperature wireless acquisition system based on
3、 ... and 、 About author
边栏推荐
- GUI pull-down menu of unity3d evil door implementation dropdown design has no duplicate items
- STL tutorial 4- input / output stream and object serialization
- LeetCode 每日一题——515. 在每个树行中找最大值
- WinForm实现窗口始终在顶层
- IAR compiler flashback
- [batch dos-cmd command - summary and summary] - file and directory operation commands (MD, RD, xcopy, dir, CD, set, move, copy, del, type, sort)
- Chuantu microelectronics breaks through the high-end isolator analog chip market with ca-is3062w
- 一“石”二“鸟”,PCA有效改善机载LiDAR林下地面点部分缺失的困局
- 稳压二极管的原理,它有什么作用?
- Pytorch遇到的坑:为什么模型训练时,L1loss损失无法下降?
猜你喜欢
Summary of small problems in smartbugs installation
[batch dos-cmd command - summary and summary] - file and directory operation commands (MD, RD, xcopy, dir, CD, set, move, copy, del, type, sort)
Elk + filebeat log parsing, log warehousing optimization, logstash filter configuration attribute
[batch dos-cmd command - summary and summary] - CMD extended command and function (CMD /e:on, CMD /e:off)
14 BS object Node name Name attrs string get node name attribute content
Selection of Hongmeng page menu
正版photoshop2022購買體驗經曆分享
VectorDraw Web Library 10.10
el-input实现尾部加字
GUI pull-down menu of unity3d evil door implementation dropdown design has no duplicate items
随机推荐
Three years of continuous decline in revenue, Tiandi No. 1 is trapped in vinegar drinks
Sichuan Tuwei ca-if1051 can transceiver has passed aec-q100 grade 1 certification
【批处理DOS-CMD命令-汇总和小结】-应用程序启动和调用、服务和进程操作命令(start、call、)
realsense d455 semantic_slam实现语义八叉树建图
Explain distributed raft with dynamic diagram
Lebel only wants an asterisk in front of it, but doesn't want to verify it
【批处理DOS-CMD命令-汇总和小结】-CMD窗口的设置与操作命令(cd、title、mode、color、pause、chcp、exit)
The principle of Zener diode, what is its function?
國外LEAD域名郵箱獲取途徑
Collection of common terms and meanings in forestry investigation based on lidar
用动图讲解分布式 Raft
smartBugs安装小问题总结
太上老君的炼丹炉之分布式 Quorum NWR
Tempest HDMI leak receive 1
GUI pull-down menu of unity3d evil door implementation dropdown design has no duplicate items
Without "rice", you can cook "rice". Strategy for retrieving missing ground points under airborne lidar forest using "point cloud intelligent mapping"
Estimation of dense forest volume based on LIDAR point cloud with few ground points
Modular programming of digital light intensity sensor module gy-30 (main chip bh1750fvi) controlled by single chip microcomputer (under continuous updating)
【Qt】快捷键
Pytorch遇到的坑:为什么模型训练时,L1loss损失无法下降?