当前位置:网站首页>The problem of calling ds18b20 through a single bus
The problem of calling ds18b20 through a single bus
2022-08-05 06:10:00 【MuggleTan】
1. The single bus has high timing requirements, and the delay should be long enough, at least 93.57ms (9 bits), and at most 750ms (12 bits), and then the correct data can be read.
2. The read temperature bytes should be usedUnsigned char or int storage, the temperature read directly with char will be problematic, because char has only seven bits, and one is the sign bit.
边栏推荐
- 如何用UE5渲染一个可爱的茶壶屋?
- [Day8] Commands involved in using LVM to expand
- PVE 直通硬盘到TrueNAS
- Remembering my first CCF-A conference paper | After six rejections, my paper is finally accepted, yay!
- Image compression failure problem
- Getting Started Doc 08 Conditional Plugins
- Spark源码-任务提交流程之-6.2-sparkContext初始化-TaskScheduler任务调度器
- ROS视频教程
- lvm逻辑卷及磁盘配额
- C语言的一些小常识
猜你喜欢
随机推荐
每日一题-无重复字符的最长子串-0712
[Day5] Soft and hard links File storage, deletion, directory management commands
Apache配置反向代理
VRRP原理及命令
入门文档01 series按顺序执行
不吹不黑,这的确是我看过微服务架构最好的文章!
C语言的一些小常识
Remembering my first CCF-A conference paper | After six rejections, my paper is finally accepted, yay!
spark算子-repartition算子
spark源码-任务提交流程之-4-container中启动executor
Unity3D中的ref、out、Params三种参数的使用
The problem of redirecting to the home page when visiting a new page in dsf5.0
【Day8】Knowledge about disk and disk partition
每日一题-盛最多水的容器-0716
UE4动画雨滴材质制作教程
dsf5.0新建页面访问时重定向到首页的问题
每日一题-单调栈
TCP/IP四层模型
添加新硬盘为什么扫描不上?如何解决?
入门文档11 自动添加版本号








