manifest.py: include boot.py and main.py in build

This commit is contained in:
Thomas Farstrike
2025-04-29 11:04:24 +02:00
parent cf47d0b658
commit f35cf77de5
2 changed files with 3 additions and 1 deletions
@@ -37,7 +37,7 @@ def map_nonlinear(value: float) -> int:
import time
while appscreen == lv.screen_active():
#print(f"""{sensor.temperature=} {sensor.acceleration=} {sensor.gyro=}""")
templabel.set_text(f"Temperature: {sensor.temperature:.2f}°C")
templabel.set_text(f"IMU chip temperature: {sensor.temperature:.2f}°C")
ax = sensor.acceleration[0]
axp = int((ax * 100 + 100)/2)
ay = sensor.acceleration[1]
+2
View File
@@ -1 +1,3 @@
freeze('', 'include_in_build.py')
freeze('', 'internal_filesystem/boot.py', 'boot.py')
freeze('', 'internal_filesystem/main.py', 'main.py')