1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/bin/python3
import sqlite3
import subprocess
from datetime import datetime
# Funktion zur Messung der CPU-Temperatur
def get_cpu_temperature():
try:
# Führt den Befehl vcgencmd aus, um die CPU-Temperatur zu messen
output = subprocess.run(['vcgencmd', 'measure_temp'], stdout=subprocess.PIPE)
temp_str = output.stdout.decode('utf-8')
# Extrahiert die Temperatur als Float-Wert
temp = float(temp_str.split('=')[1].split("'")[0])
return temp
except Exception as e:
print(f"Fehler beim Abrufen der CPU-Temperatur: {e}")
return None
# Funktion zur Initialisierung der SQLite-Datenbank
def init_db(db_name):
conn = sqlite3.connect(db_name)
cursor = conn.cursor()
# Erstellt eine Tabelle, falls sie noch nicht existiert
cursor.execute("""
CREATE TABLE IF NOT EXISTS cpu_temperature (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp TEXT NOT NULL,
temperature REAL NOT NULL
)
""")
conn.commit()
return conn
# Funktion zum Einfügen von Daten in die Datenbank
def insert_data(conn, timestamp, temperature):
cursor = conn.cursor()
cursor.execute("""
INSERT INTO cpu_temperature (timestamp, temperature)
VALUES (?, ?)
""", (timestamp, temperature))
conn.commit()
# Hauptfunktion
def main():
db_name = "/var/www/html/cpu_temperature.db"
conn = init_db(db_name)
# Ruft die aktuelle CPU-Temperatur ab
temperature = get_cpu_temperature()
if temperature is not None:
# Holt das aktuelle Datum und die Uhrzeit
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
# Speichert die Daten in der Datenbank
insert_data(conn, timestamp, temperature)
print(f"Gespeichert: {timestamp} - {temperature}°C")
conn.close()
if __name__ == "__main__":
main()
|