Beginning of cooking cycle
Build, push image, and notify Watchtower / build-image (push) Successful in 1m21s
Build, push image, and notify Watchtower / notify (push) Successful in 17s

This commit is contained in:
2026-07-31 21:50:42 +02:00
parent 8ac5db22c1
commit 7299a50198
11 changed files with 552 additions and 86 deletions
+5
View File
@@ -1,5 +1,6 @@
# This file is executed on every boot (including wake-boot from deepsleep)
import esp
from machine import Pin
esp.osdebug(True)
#import webrepl
#webrepl.start()
@@ -17,3 +18,7 @@ def do_connect(ssid, pwd):
# Attempt to connect to WiFi network
do_connect("Smartwave-1", 'Smartwave-prot-1')
# Set PIN 27 as GND for the temperature sensor (MLX90614)
sensor_gnd = Pin(27, Pin.OUT)
sensor_gnd.value(0)