I am grateful for your prompt handling.
Latest posts made by ikabou
-
RE: MQTT connection of CORE2 with UIFlow.
Yes. Only when downloaded.
Occurs with "screen" followed by "m5mqtt" in Python's auto-generation.
--- Blockly ---
screen = M5Screen ()
screen.clean_screen ()
screen.set_screen_bg_color (0xFFFFFF)
m5mqtt = M5mqtt ('','*. *. *. *', 1883,'','', 300)
...Rewritten with Python I overwrote the "Wi-Fi Connect Core 2" screen and erased it.
--- Python ---
m5mqtt = M5mqtt ('','*. *. *. *', 1883,'','', 300)
screen = M5Screen ()
screen.clean_screen ()
screen.set_screen_bg_color (0xFFFFFF)
...However, it is strange that the "Wi-Fi Connect Core2" screen is displayed with "m5mqtt".
-
MQTT connection of CORE2 with UIFlow.
Hello,
I've installed UIFLOW (CORE2) V1.6.5.1.
When I make an MQTT connection with Blockly programming, it is
overwritten on the "Wi-Fi Connect Core2" screen.
Is there a way to avoid it?
The publish will be correct.
Thank you.