We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f01189 commit 716faebCopy full SHA for 716faeb
2 files changed
CHANGELOG.md
@@ -3,6 +3,7 @@
3
- Fix KeyPad focus handling for devices without touch screen like the Fri3d Camp 2024 Badge
4
- AppStore app: don't update UI after the user has closed the app
5
- Wifi app: cleanup and improve keyboard and focus handling
6
+- Wifi app: improve different screensize handling
7
8
0.1.1
9
=====
internal_filesystem/boot_unix.py
@@ -14,12 +14,17 @@
14
15
mpos.info.set_hardware_id("linux-desktop")
16
17
-# Same as Waveshare ESP32-S3-Touch-LCD-2
+# Same as Waveshare ESP32-S3-Touch-LCD-2 and Fri3d Camp 2026 Badge
18
TFT_HOR_RES=320
19
TFT_VER_RES=240
20
21
-#TFT_HOR_RES=640
22
-#TFT_VER_RES=480
+# Fri3d Camp 2024 Badge:
+TFT_HOR_RES=296
23
+TFT_VER_RES=240
24
+
25
+# Bigger screen
26
+TFT_HOR_RES=640
27
+TFT_VER_RES=480
28
29
# 4:3 DVD resolution:
30
#TFT_HOR_RES=720
0 commit comments