美文网首页
Android NDK 通过节点获取温度

Android NDK 通过节点获取温度

作者: Kerwin_H | 来源:发表于2021-08-12 15:57 被阅读0次
//获取温度节点
int getTemperature(){
    char temp[64];
    FILE *fp = NULL;
    fp = fopen("/sys/devices/virtual/thermal/thermal_zone8/temp", "r");
    int value = 0;

    if(fgets(temp, sizeof(temp), fp) != NULL){
        value = atoi(temp);
    }
    if(fp != NULL)
        fclose(fp);
    return value;
}

相关文章

网友评论

      本文标题:Android NDK 通过节点获取温度

      本文链接:https://www.haomeiwen.com/subject/vttomltx.html