Hi,
Here is a script that monitors Rpi CPU temperature.
The script isn't mine
I made a google search and found it yesterday.
You can change time.sleep to whatever value you want.
(python 3 is required)
#!/usr/bin/python3
import os
import time
def temperature_of_raspberry_pi():
cpu_temp = os.popen("vcgencmd measure_temp").readline()
return cpu_temp.replace("temp=", "")
while True:
print(temperature_of_raspberry_pi())
time.sleep(1)
Best Regards.