#include <stdio.h> #include <string.h> #include <stdlib.h> #include <fcntl.h> const char thermal_path[] = "/sys/class/thermal/thermal_zone0/temp"; int main(int argv, char *argc[]) { int fd = 0; int ret = 0; int i; char mbuf[128] = {0,}; float temp = 0.0; fd = open(thermal_path, O_RDONLY); if(fd < 0) { printf("open file[%s] failed\n", thermal_path); return (0); } while(1) { memset(mbuf, 0, 128); lseek(fd, 0, SEEK_SET); ret = read(fd, mbuf, 128); if(ret < 0) { printf("read file failed\n"); close(fd); return (0); } temp = atof(mbuf); temp = temp / 1000.0; printf("thermel temp = %f\n", temp); sleep(1); } close(fd); return (0); }
板载温度计的采集

官方已经提供了温度计的实现,所以我们直接打开文件即可,前有两位网友使用cat命令来读取,楼主这里使用文件打开的方式读取,测试效果还是不错的,现将源代码分享出来,供大家借鉴:
关键词: 温度计 采集 imx6







回复
打赏帖 | |
---|---|
【我踩过的那些坑】工作那些年踩过的记忆深刻的坑被打赏10分 | |
【我踩过的那些坑】DRC使用位置错误导致的问题被打赏100分 | |
我踩过的那些坑之混合OTL功放与落地音箱被打赏50分 | |
汽车电子中巡航控制系统的使用被打赏10分 | |
【我踩过的那些坑】工作那些年踩过的记忆深刻的坑被打赏100分 | |
分享汽车电子中巡航控制系统知识被打赏10分 | |
分享安全气囊系统的检修注意事项被打赏10分 | |
分享电子控制安全气囊计算机知识点被打赏10分 | |
【分享开发笔记,赚取电动螺丝刀】【OZONE】使用方法总结被打赏20分 | |
【分享开发笔记,赚取电动螺丝刀】【S32K314】芯片启动流程分析被打赏40分 |