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

    UIFlow 1.8.2

    Official Updates
    10
    19
    26.0k
    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.
    • m5stackM
      m5stack
      last edited by

      Ver 1.8.2 time: 2021.08.13

      v1.8.2

      new features:

      • Add support of Modbus Master serial setting (RS485, ISO485, HAT RS485, Advanced->Modbus Master);
      • Add support of ENV.III & HAT ENV.III (BMP280 -> QMP6988);
      • Add support of Thermal Camera Unit (valid for M5Stack Fire and Core2 only);
      • Add support of M5Stamp Pico.

      0_1628847665658_30886d4e-b352-48d1-89b4-56bdf3e7ba61-image.png

      liemphL 1 Reply Last reply Reply Quote 1
      • P
        plusulli
        last edited by

        I would find it nicer if you would take the graphics of the sticker for the M5Stamp Pico

        1 Reply Last reply Reply Quote 1
        • ajb2k3A
          ajb2k3
          last edited by

          It not very intuitive having to look in the core section of M5Burner in order to find the stamp firmware.

          UIFlow, so easy an adult can learn it!
          If I don't know it, be patient!
          I've ether not learned it or am too drunk to remember it!
          Author of the WIP UIFlow Handbook!
          M5Black, Go, Stick, Core2, and so much more it cant be fit in here!

          1 Reply Last reply Reply Quote 0
          • ajb2k3A
            ajb2k3
            last edited by ajb2k3

            GPRS unit not selectable on port C in current version

            Can't control all LEDS on a strip connected to the hub.

            UIFlow, so easy an adult can learn it!
            If I don't know it, be patient!
            I've ether not learned it or am too drunk to remember it!
            Author of the WIP UIFlow Handbook!
            M5Black, Go, Stick, Core2, and so much more it cant be fit in here!

            1 Reply Last reply Reply Quote 1
            • felmueF
              felmue
              last edited by felmue

              Hi guys

              Setup: M5Core2 with GoPlus2 module.

              Bug: As soon as I send a servo command, the touch screen stops working until I reset M5Core2.

              In below example I can increase the counter with the first touch button just fine. But as soon as I invoke the servo command with the second touch button the touch screen stops reacting at all.

              Note: the issue only occurs with the first servo (S1).
              Note: the servo command is actually executed and the servo goes to the desired position.
              Note: if the servo command sets angle 0, the touch screen keeps working.

              Please fix. Thank you.

              Thanks
              Felix

              0_1629060987088_M5Core2_GoPlus2_touch_issue_20210815.png

              from m5stack import *
              from m5stack_ui import *
              from uiflow import *
              import module
              
              screen = M5Screen()
              screen.clean_screen()
              screen.set_screen_bg_color(0xFFFFFF)
              
              my_count = None
              
              go_plus_2 = module.get(module.GOPLUS2)
              label0 = M5Label('Text', x=110, y=22, color=0x000, font=FONT_MONT_48, parent=None)
              touch_button0 = M5Btn(text='Count', x=100, y=95, w=120, h=50, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
              touch_button1 = M5Btn(text='Servo', x=100, y=173, w=120, h=50, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
              
              from numbers import Number
              
              def touch_button0_pressed():
                global my_count
                my_count = (my_count if isinstance(my_count, Number) else 0) + 1
                pass
              touch_button0.pressed(touch_button0_pressed)
              
              def touch_button1_pressed():
                global my_count
                go_plus_2.set_servo_angle(go_plus_2.S1, 75)
                pass
              touch_button1.pressed(touch_button1_pressed)
              
              my_count = 0
              while True:
                label0.set_text(str(my_count))
                wait_ms(2)
              

              GPIO translation table M5Stack / M5Core2
              Information about various M5Stack products.
              Code examples

              m5stackM 1 Reply Last reply Reply Quote 0
              • m5stackM
                m5stack @felmue
                last edited by

                @felmue

                actually, we don't suggest put any complex operation to the callback function. you could try to use this block with if block in the loop.

                0_1629251636240_6bc69ea7-798b-4923-92ad-b8041c18ed8f-image.png

                1 Reply Last reply Reply Quote 0
                • felmueF
                  felmue
                  last edited by

                  Hello @m5stack

                  thank you for your feedback. Unfortunately it did not resolve the issue.

                  I've changed the code to only use a flag my_move in the touch button callback function and then do the real action in the loop.

                  Same result: touch screen becomes unresponsive as soon as the S1 servo command has been executed.

                  Note: it only happens for servo S1. (Same code with servo S2 works fine.)

                  Please test and fix. Thank you.

                  Thanks
                  Felix

                  0_1629265792286_m5core2_goplus2_touch_issue_20210818.png

                  from m5stack import *
                  from m5stack_ui import *
                  from uiflow import *
                  import module
                  
                  screen = M5Screen()
                  screen.clean_screen()
                  screen.set_screen_bg_color(0xFFFFFF)
                  
                  my_count = None
                  my_move = None
                  
                  go_plus_2 = module.get(module.GOPLUS2)
                  label0 = M5Label('Text', x=110, y=22, color=0x000, font=FONT_MONT_48, parent=None)
                  touch_button0 = M5Btn(text='Count', x=100, y=95, w=120, h=50, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
                  touch_button1 = M5Btn(text='Servo', x=100, y=173, w=120, h=50, bg_c=0xFFFFFF, text_c=0x000000, font=FONT_MONT_14, parent=None)
                  
                  from numbers import Number
                  
                  def touch_button0_pressed():
                    global my_count, my_move
                    my_count = (my_count if isinstance(my_count, Number) else 0) + 1
                    pass
                  touch_button0.pressed(touch_button0_pressed)
                  
                  def touch_button1_pressed():
                    global my_count, my_move
                    my_move = True
                    pass
                  touch_button1.pressed(touch_button1_pressed)
                  
                  my_count = 0
                  while True:
                    label0.set_text(str(my_count))
                    if my_move == True:
                      my_move = False
                      go_plus_2.set_servo_angle(go_plus_2.S1, 75)
                    wait_ms(2)
                  

                  GPIO translation table M5Stack / M5Core2
                  Information about various M5Stack products.
                  Code examples

                  D 1 Reply Last reply Reply Quote 0
                  • liemphL
                    liemph @m5stack
                    last edited by

                    @m5stack Does it support BaseX? I could not run the same UIFlow script (previously worked) to drive the BaseX.

                    m5stackM 1 Reply Last reply Reply Quote 0
                    • m5stackM
                      m5stack @liemph
                      last edited by

                      @liemph fixed.

                      liemphL 1 Reply Last reply Reply Quote 0
                      • liemphL
                        liemph @m5stack
                        last edited by

                        @m5stack Thank you very much. I will try.

                        1 Reply Last reply Reply Quote 0
                        • C
                          capacious
                          last edited by

                          Where can the desktop IDE for this version be gotten from?
                          I need the Thermal Unit on a Fire but uploading it via the internet connection and the online IDE is very instable.
                          I'm only able to download UIFlow-Desktop-IDE version 1.0.17 that contains UiFlow version 1.7.5.

                          Creating the file online and then trying to upload it via USB via the lower versioned desktop IDE doesn't work.

                          C 1 Reply Last reply Reply Quote 0
                          • C
                            capacious
                            last edited by

                            Another thing I notice is that in version 1.8.2 when trying to load the THERMAL demo it 'hangs' and doesn't load anything.
                            </> Python is selected with the default imports but Blockly tab can't be opened.
                            When switching to version 1.4.5 I can open the THERMAL demo and view it online but there's no stable way of getting it transferred to the Fire running version 1.8.2 as the internet connection to the code platform seems to be very unstable, after several attempts to upload some code it will state that it's UPLOADING (on the screen of the device) but it doesn't succeed as it disconnects from the cloud where I think it's supposed to get the code from.
                            The cloud icon then turns red.
                            Sometimes it also remains green but still doesn't succeed in getting the code.

                            1 Reply Last reply Reply Quote 0
                            • bob_isatB
                              bob_isat
                              last edited by

                              Great Job guys!

                              Would have documentation related to the LORAWAN Module blocks ?

                              Kind Regards,

                              bob_isat

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

                                @m5stack any idea when the Desktop IDE containing UiFlow version 1.8.2 will be available?

                                1 Reply Last reply Reply Quote 0
                                • ajb2k3A
                                  ajb2k3
                                  last edited by

                                  Cant connect M5Stamp to Uiflow. firmware installed but not connecting and no wifi host

                                  UIFlow, so easy an adult can learn it!
                                  If I don't know it, be patient!
                                  I've ether not learned it or am too drunk to remember it!
                                  Author of the WIP UIFlow Handbook!
                                  M5Black, Go, Stick, Core2, and so much more it cant be fit in here!

                                  MatiM 1 Reply Last reply Reply Quote 0
                                  • MatiM
                                    Mati @ajb2k3
                                    last edited by

                                    @ajb2k3 said in UIFlow 1.8.2:

                                    Cant connect M5Stamp to Uiflow. firmware installed but not connecting and no wifi host

                                    remove Connection to pin0 and EN
                                    If programator is connected device is in the download mode.

                                    ajb2k3A 1 Reply Last reply Reply Quote 0
                                    • ajb2k3A
                                      ajb2k3 @Mati
                                      last edited by

                                      @mati pins not connected.
                                      going to try reflashing uiflow.

                                      UIFlow, so easy an adult can learn it!
                                      If I don't know it, be patient!
                                      I've ether not learned it or am too drunk to remember it!
                                      Author of the WIP UIFlow Handbook!
                                      M5Black, Go, Stick, Core2, and so much more it cant be fit in here!

                                      1 Reply Last reply Reply Quote 0
                                      • D
                                        Dario @felmue
                                        last edited by

                                        Hello @m5stack, I'm facing the same problem reported by @felmue with Core 2 and GoPlus2. Are you working on this bug?

                                        C 1 Reply Last reply Reply Quote 0
                                        • C
                                          ciconde @Dario
                                          last edited by

                                          @dario @m5stack I have the same problem here. Is it going to be fixed?

                                          1 Reply Last reply Reply Quote 0
                                          • First post
                                            Last post