Replies: 2 comments
-
Below are test results to measure delay from touch to first reaction based on serial log for v0.7.0-rc13 and v0.6.3 with very similar results (2-3s delay) however the screen wake up is little quicker on v0.7.0 making the delay actually more noticeable as there is more time to try pressing something compared to v0.6.3 where the initial blank screen after first touch lasts longer. It looks like MQTT PUB takes about a second or so. 0.7.0 (with screen dimming via idle_short.cmd with no idle_off.cmd as the screen turns on properly on first touch ) try 1: 3.882 - 1.495 = 2.387s Prompt > [21:16:55.646][51188/54240 5][56764/56992 1] MSGR: backlight={"state":"off"} try 2: 56,166−53,402 = 2.764s Prompt > [21:17:30.331][55284/60828 9][56748/56992 1] MSGR: Loaded L:/idle_short.cmd try 3:2,432−0,242 = 2.190s Prompt > [21:19:57.083][55284/59748 7][56424/56984 1] MQTT PUB: sensors => {"time":"2024-10-02T21:19:56","uptimeSec":336,"uptime":"0T00:05:36","ESP32":{"Te} 0.6.3 (with screen dimming via MQTT on idle short) try 1: 17.472 - 14.617 = 2.855s Prompt > [15:25:14.617][86004/92324 6][56236/56832 2] MQTT PUB: idle =>Coff[15:25:15.686][86004/95484 9][56236/56832 2] HASP: First touch Disabled try 2: 49.258 - 47.059 = 2.199s Prompt > [15:25:39.323][86004/92204 6][56236/56792 1] MQTT PUB: backlight => {"state":"off","brightness":128} try 3: 25.553 - 23.354 = 2.199s Prompt > [15:26:11.270][86004/92324 6][55912/56796 2] MQTT PUB: backlight => {"state":"off","brightness":128} |
Beta Was this translation helpful? Give feedback.
-
WIP: commenting out brightness-related mqtt status messaging and changing haspEverySecond() task execution interval form 1s to 0.1s does not affect initial screen response delay after wake up which is still ~2.3s diff for tested changes |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, Is it normal that once the panel resumes from idle (short or long - it does not matter in my case) the screen is unresponsive for 2-3 seconds? I tried more complex setups (3 tabs, each with some controls like image, buttons, slider) and simple one (one screen with one button) and the behavior is the same - there is always initial delay.
tried disabling mdns, telnet, mqtt - no improvement
version: 0.7.0-rc13
board: m5stack core2 v1
config: (changes from default)
wifi and mqtt configured
...
"telnet": {
"enable": 0,
...
"mdns": {
"enable": 0
...
"gui": {
"idle1": 10,
"idle2": 120,
scripts:
idle_short.cmd: backlight {"state":"off"}
idle_off.cmd: backlight {"state":"on"}
Beta Was this translation helpful? Give feedback.
All reactions