🤖Have you ever tried Chat.M5Stack.com before asking??😎
  • How to connect to AWS IoT in UIFlow 2.0

    6
    0 Votes
    6 Posts
    6k Views
    ajb2k3A
    @cloudmonkey it’s on my work list for the documents
  • Please help with menus with stickc plus2.

    3
    0 Votes
    3 Posts
    2k Views
    kurikoK
    @jondaaa refer to examples in Project Zone
  • Download program to the PaperS3

    4
    1 Votes
    4 Posts
    2k Views
    O
    Well, I think I've made a beginner's mistake. I didn't restart PaperS3. After flashing it, I pressed the reset/boot/... button and it displayed the UiFlow page on PaperS3. Thanks for your help Felix
  • How to use HTTP GET in uiflow2 for simple json fetch

    3
    1
    0 Votes
    3 Posts
    2k Views
    P
    To use HTTP GET in uiflow2 for fetching JSON, use the "HTTP Request" block. Set the method to "GET" and provide the URL of the API. Then, process the response with a JSON block to parse the data.
  • How to set end of line character in UART

    4
    0 Votes
    4 Posts
    3k Views
    felmueF
    Hello @digiajay ok, understood. Well, you cannot set a different EOL character and therefore you cannot use UART block read line. However you can use block count of available and read 1 bytes etc. to read chars sent from your device. As long as the char received is not your EOL char, append them into a buffer. And when you receive your EOL char do something with the chars accumulated in the buffer, then clear the buffer and start over. Thanks Felix
  • OSError: (-261, 'ESP_ERR_NOT_FOUND')

    8
    1
    0 Votes
    8 Posts
    4k Views
    Z
    @ajb2k3 @kuriko I just tested it again but with the firmware 2.1.0. It works on pin 1, 2 and 10. I think there is a bug in the firmware 2.1.9....
  • M5Burner Windows link is 403 Forbidden

    2
    0 Votes
    2 Posts
    1k Views
    kurikoK
    @FlappyCat You accidentally entered M5 website hosted by Switch Science Use this: https://m5burner-cdn.m5stack.com/app/M5Burner-v3-beta-win-x64.zip
  • ImportError: no module named 'lvgl'

    2
    0 Votes
    2 Posts
    1k Views
    kurikoK
    @echiz I think the support of LVGL has been removed in the newest version of UiFlow2 Maybe change it to a elder version will have chance?
  • Can't connect to device in UI FLOW2 on atomS3U

    3
    0 Votes
    3 Posts
    1k Views
    ajb2k3A
    @Bzh2ant2 Did you erase first? Did you hold the boot mode button before erasing and burning firmware?
  • 0 Votes
    3 Posts
    3k Views
    kurikoK
    @mb this issue was fixed in 2.1.8-hotfix
  • 0 Votes
    2 Posts
    2k Views
    kurikoK
    @mb If the program runs normally, I don't think this should be a problem
  • UniFlow2 v2.1.8 Power.getBatteryLevel() Returning 0

    2
    1 Votes
    2 Posts
    1k Views
    kurikoK
    @Rango known issue, fixing
  • M5Burner UIFlow2 Config should be saved for re-use

    3
    0 Votes
    3 Posts
    2k Views
    M
    @ajb2k3 Using M5Burner v3.0.0 on MacOS v14.7 on MacBook M3.
  • 0 Votes
    2 Posts
    2k Views
    robskiR
    @mb check VolosR YT examples to his UI approach
  • Is there a Wait block in UiFlow 2 for the Core 2?

    3
    0 Votes
    3 Posts
    2k Views
    K
    @kuriko Thank you
  • Python development in UIFlow

    6
    0 Votes
    6 Posts
    4k Views
    teastainT
    @sternj Well, the Arduino IDE ver2 IDE is very good. Just type in C, C++ and download (it compiles automatically.) This is NOT your grandad's Arduino IDE ver 1 !!! Here is a sample program to test serial: bool ticktock; //declare ticktock as a boolean flag void setup() { //runs once on start up Serial.begin(115200); //open the serial port for USB cable delay(500); } void loop() { //runs in circles! ticktock = !ticktock; //every pass through reverse the flag if (ticktock) { //test current value of the ticktock flag Serial.println("tick"); } else { //prints one or the other to the USB port Serial.println("tock"); } delay(1000); //wait for a second and run again! }
  • HTTP requests2: how to deal with server that keeps the connection alive?

    3
    0 Votes
    3 Posts
    2k Views
    S
    @kuriko any pointers on how to do that? There's nothing about it in the docs: https://uiflow-micropython.readthedocs.io/en/develop/software/requests2.html
  • Atomic CAN Base (SKU:A103) is in UiFlow2.0?

    3
    0 Votes
    3 Posts
    2k Views
    V
    @kuriko Great! Thanks, can't wait to see it!
  • Using HX711 in UiFlow2

    3
    0 Votes
    3 Posts
    1k Views
    0
    @kuriko Thank you for your reply! It seems I might be able to resolve this by reviewing the past file samples. There are still many aspects, like the calibration movements, that I don’t fully understand yet, but I’ll keep working on it and exploring various options. (This is a machine translation, but I hope it conveys my message well!)
  • HTTP REQUEST

    2
    0 Votes
    2 Posts
    1k Views
    kurikoK
    Hi @kochikame Would you able to show your code?