🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    UiFlow 2.0 discuss(how-to, bug, feature request or sometings)

    Scheduled Pinned Locked Moved UiFlow 2.0
    193 Posts 78 Posters 532.0k Views 13 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • CAT the TechC Offline
      CAT the Tech @felmue
      last edited by

      @felmue @lbuque Finally! It worked!

      As felmue said, it was the broken/unplugged screen that caused my StickCPlus2 to act like a M5Atom
      My screen looks to have only the outer plastic/glass layer broken (it still lights on, but it is cracked and only shows lines and stuff).

      So I plugged the screen back in, and now the buttons work!

      Thank you all for helping me, I will soon order another StickCPlus2 from Mouser.

      To the developers:

      Can you please make it so that UIFlow2 distinguish between the different models using a model number taken from when M5Burner flashes UIFlow2?

      1 Reply Last reply Reply Quote 0
      • CAT the TechC Offline
        CAT the Tech
        last edited by CAT the Tech

        Feature requests

        • An 'Execute mpy code' block that plugs into another block (a value block(?))
        • The possibility to go back versions in UIFlow2's web interface

        Bug/feature request

        Normally, when you want to rotate the display, you execute this:

        M5.begin()
        # M5 inits labels, etc
        Widgets.setRotation(1)
        

        But this is wrong! Because it inits the labels BEFORE the screen is rotated, which makes the labels appear once before the screen is rotated, and then stays in the wrong orientation even after the screen is flipped.

        What I need to do:

        # trick M5  begin
        eval("M5" + ".begin()")
        Widgets.setRotation(1)
        if False:
          M5.begin()
        # M5 inits labels, etc
        

        a

        C 1 Reply Last reply Reply Quote 0
        • C Offline
          chrol @CAT the Tech
          last edited by

          Hi,

          I noticed the THERMAL2Unit name is capitalised wrong in UIFlow 2 web - in the m5stack/unit/init.py it is called "ThermalUnit2" => Import error.
          (Even after doing manual codeblock edit I don't get an import error but other errors - but this should likely be fixed anyway)

          Thanks
          C

          C 1 Reply Last reply Reply Quote 0
          • C Offline
            chrol @chrol
            last edited by

            I see that the ThermalUnit2 is now fixed :)

            Next issue -

            • how can I access temperature data buffer and include in REST API or
            • present it on screen (e.g. do I use it as source for an image UI component somehow?)

            Thanks!

            @chrol said in UiFlow 2.0 discuss(how-to, bug, feature request or sometings):

            Hi,

            I noticed the THERMAL2Unit name is capitalised wrong in UIFlow 2 web - in the m5stack/unit/init.py it is called "ThermalUnit2" => Import error.
            (Even after doing manual codeblock edit I don't get an import error but other errors - but this should likely be fixed anyway)

            Thanks
            C

            1 Reply Last reply Reply Quote 0
            • Coopersmith-24601C Offline
              Coopersmith-24601
              last edited by

              This post is deleted!
              1 Reply Last reply Reply Quote 0
              • Coopersmith-24601C Offline
                Coopersmith-24601
                last edited by

                FEATURE REQUEST!

                It would be extraordinarily helpful for there to be a type of LABEL in UiFlow2 which could fill the screen and word-wrap long text strings.

                IAMLIUBOI 1 Reply Last reply Reply Quote 0
                • IAMLIUBOI Offline
                  IAMLIUBO @Coopersmith-24601
                  last edited by

                  @Coopersmith-24601 said in UiFlow 2.0 discuss(how-to, bug, feature request or sometings):

                  FEATURE REQUEST!

                  It would be extraordinarily helpful for there to be a type of LABEL in UiFlow2 which could fill the screen and word-wrap long text strings.

                  Yes. Thanks for suggestion. We will consider this.

                  1 Reply Last reply Reply Quote 0
                  • C Offline
                    Calvorotas
                    last edited by

                    Hello,

                    I am trying to receive a bytearray via BLE from a server, but I can't get a response.

                    By sending a certain bytearray via BLE to the Sbrick device, it returns a response indicating the temperature value. And through another bytearray, the voltage value is returned.

                    In App Inventor I get it with these blocks:image-1.png image-2.png

                    But in UiFlow 2.0 I can't get it using these blocks:
                    image-3.png image-4.png

                    What am I doing wrong?

                    s it possible that this block will not trigger the server response?
                    image-5.png

                    Perhaps, the mode argument is mode=0 (write-without-response). Or am I mixing up different things?

                    image-6.png

                    I can't get a response from the server with the "When BLE client on notify" block or with the "When BLE client on read complete" block

                    image-7.png

                    I need help, or a lot of help. :)

                    Thank you very much.

                    1 Reply Last reply Reply Quote 0
                    • greenleafG Offline
                      greenleaf
                      last edited by

                      Feature request:

                      Ability to set headers for Label+ objects. Many APIs required these headers before they respond with proper JSON.

                      Example:

                      curl -H "Accept: application/json" https://icanhazdadjoke.com/

                      1 Reply Last reply Reply Quote 0
                      • R Offline
                        Rango
                        last edited by

                        I'm using a MiniJoyC with M5stuckC Plus2 and UIFlow 2.1.4.
                        I've read through examples and documentation but I can not get x or y values. They only display 0.

                        Same thing happens in Arduino IDE.

                        I do get values when using UI flow 1, so I know the minijoy is working.

                        Any known issues with the UIf2 libraries?

                        Thanks in advance.

                        1 Reply Last reply Reply Quote 0
                        • G Offline
                          gbelfor
                          last edited by

                          Using: UIFlow 2.1.5, AtomS3, KMeterISOunit

                          From the version history, it appears that the Firmware changed the KMeterISOunit API a couple revs back, but UIFlow is still generating code for the old API. When I do the blockly code and run on my AtomS3, an exception is thrown showing the issue:

                          fe532e64-a85b-4e01-a602-b9aa540c96d1-image.png

                          Code generated (snipit)
                          ec9abd43-9d10-4165-9e2c-eec24ac6463b-image.png

                          ...but from the latest API docs, the reading code should be:

                          3b2ff1b1-c634-49b5-8985-5e3b5bc7a748-image.png

                          Note: I did a workaround using the "Execute mpy code" block and writing in the proper API calls, but it would be nicer if the versions matched up.

                          1 Reply Last reply Reply Quote 0
                          • X Offline
                            xs
                            last edited by

                            Are GoPlus2 module not supported in UiFlow2? Do you plan to add support?

                            X 1 Reply Last reply Reply Quote 0
                            • X Offline
                              xs @xs
                              last edited by

                              @xs Also, Servo2 module isnt sopported

                              1 Reply Last reply Reply Quote 0
                              • ? Offline
                                A Former User
                                last edited by

                                Hello, could you add more RTC blocks to Uiflow2? Like the ones in Uiflow1? I'm a beginner and I wanted to make a simple clock app for the cardputer but for now seems impossible for me without learning to code. Also it would be nice to have all the apps I built in the App.list section of Uiflow2 on my cardputer. Thanks! Screenshot 2024-11-17 194153.png

                                cryptospokC 1 Reply Last reply Reply Quote 1
                                • cryptospokC Offline
                                  cryptospok
                                  last edited by

                                  I'm using UIFlow2 on Microsoft Edge and when I try to create a variable with the name of an object that already exists, I get the conflict information and even if I correct it, when I exit the variable creation window, UIFlow2 crashes and I have to reload the page to continue.

                                  1 Reply Last reply Reply Quote 0
                                  • cryptospokC Offline
                                    cryptospok @Guest
                                    last edited by

                                    This post is deleted!
                                    1 Reply Last reply Reply Quote 0
                                    • R Offline
                                      riztronic
                                      last edited by

                                      missing magnetometer scratch code for atom s3r , please add

                                      kurikoK teastainT 2 Replies Last reply Reply Quote 0
                                      • kurikoK Offline
                                        kuriko @riztronic
                                        last edited by

                                        @riztronic
                                        did you mean a built-in magnetometer?

                                        Good morning, and welcome to the Black Mesa Transit System.

                                        1 Reply Last reply Reply Quote 0
                                        • teastainT Offline
                                          teastain @riztronic
                                          last edited by

                                          @riztronic The device includes a 5V to 3.3V power circuit, a built-in three-axis BMM150 geomagnetic sensor,

                                          Cheers, Terry!

                                          100% M5Stack addict with several drawers full of product!

                                          1 Reply Last reply Reply Quote 0
                                          • C Offline
                                            Calilov330000
                                            last edited by

                                            Does anyone know how to connect my m5stack core 2 ?
                                            Im using the raspberry pi 5. Is the m5stackbcore 2 plug and play with raspberry pi or the websites? Ive neen trying to connect this thing for 2 weeks. This is crazy it takes this much trouble

                                            kurikoK 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • First post
                                              Last post