--- /dev/null
+#! /usr/bin/python3
+
+import datetime
+
+
+jetzt = datetime.datetime.now()
+
+# print(jetzt)
+
+# einen Sensor auslesen
+#/sys/bus/w1/devices/
+sensorfile = "/sys/bus/w1/devices/28-0316a21383ff/w1_slave"
+
+file = open(sensorfile)
+
+content = file.read()
+
+file.close()
+
+# Inhalt des Sensors:
+# 64 01 4b 46 7f ff 0c 10 01 : crc=01 YES
+# 64 01 4b 46 7f ff 0c 10 01 t=22250
+
+temp = content[-6:-1]
+temp = float(temp)/1000
+
+
+print(temp)
+
+# Nur für die Ausgabe wird gerundet
+print('Die Seetemperatur ist {:.1f}°C'.format(temp))
\ No newline at end of file