Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to display cpu temperature with Python for raspberry pie

2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to use Python to display cpu temperature in raspberry pie. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

Raspberry pie shows cpu temperature

You can view the cpu temperature through cat / sys/class/thermal/thermal_zone0/temp in the linux system terminal

View the gpu temperature through the command / opt/vc/bin/vcgencmd measure_temp.

Import commands def get_cpu_temp (): tempFile = open ("/ sys/class/thermal/thermal_zone0/temp") cpu_temp = tempFile.read () tempFile.close () return float (cpu_temp) / 1000 # Uncomment the next line if you want the temp in Fahrenheit # return float (1.8*cpu_temp) + 32 def get_gpu_temp (): gpu_temp = commands. Getoutput ('/ opt/vc/bin/vcgencmd measure_temp'). Replace ('temp=' Str (get_gpu_temp ()) if _ _ name__ = ='_ _ main__': main () about "how raspberry pie displays cpu temperature with Python" ends here. Hope that the above content can be helpful to you, so that you can learn more knowledge, if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report