GUI-O Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • S

      Graphic Bar Chart

      Comments & Feedback
      • • • Sato
      7
      0
      Votes
      7
      Posts
      366
      Views

      S

      Hi @kl3m3n,

      It works perfectly, thank you very much.

      You are the best! 💪

      Best regards

    • C

      Bug after chart clear

      Report Bugs
      • • • cayon
      3
      0
      Votes
      3
      Posts
      205
      Views

      K

      @cayon Hi,

      the bug should be fixed in v1.0.64.

      Best regards,
      Klemen

    • G

      conectivity

      Comments & Feedback
      • • • gašper.medved
      3
      0
      Votes
      3
      Posts
      171
      Views

      K

      @gašper-medved Based on some quick research, the DIP position are:

      When programming:
      USB UART connection with ESP8266 in programming mode (GPIO0-GND) - DIP 5 and 6 and 7 ON

      When operating:
      USB UART connection with ESP8266 - DIP 5 and 6 ON

      Regards,
      Kl3m3n

    • G

      GUI-O GSM Parking system

      Share Your Projects
      • • • gammda
      2
      0
      Votes
      2
      Posts
      788
      Views

      K

      @gammda Hi.

      This looks great. Thanks for sharing 🙂

      Regards.

    • K

      Episode 21: GUI-O push notification from any device

      GUI-O Application Tutorial Series
      • • • kl3m3n
      1
      0
      Votes
      1
      Posts
      1.0k
      Views

      No one has replied

    • P

      GUI-O Designer wish

      Wishlist
      • • • pcu
      4
      0
      Votes
      4
      Posts
      316
      Views

      P

      @kl3m3n
      Nice, thank you

    • K

      GUI-O Web installation stops receiving updates

      Announcements
      • • • kl3m3n
      1
      0
      Votes
      1
      Posts
      1.2k
      Views

      No one has replied

    • P

      Number of widgets limited to 28

      Report Bugs
      • • • pcu
      9
      0
      Votes
      9
      Posts
      614
      Views

      K

      @pcu Hi!

      I have made two examples using Nucleo board (USB and BLE).

      You can find them here, if you are interested:
      https://www.gui-o.com/examples/gui-o-and-boards/stm32-nucleo-wb55

      Best wishes.
      Klemen

    • P

      Drop-down box

      Report Bugs
      • • • pcu
      2
      0
      Votes
      2
      Posts
      197
      Views

      K

      @pcu Hi!

      Thank you for pointing this out. I will put this on the issues list and fix it in the next release!
      I will make it so that this functionality can be disabled in order to keep backwards compatible. I will check if there are any other widgets that behave in the same manner.

      Regards,
      Klemen

    • B

      Quick pair

      General Discussion
      • • • Bernard
      9
      0
      Votes
      9
      Posts
      635
      Views

      B

      @kl3m3n
      yes, I stupidly took the Arduino sketch that I used in February, without checking all the parameters! I hope that my thoughtlessness will be useful to others......
      Kind regards and thank you Bernard

    • S

      GUI-O <> Wi-Fi Esp32 Wroom

      General Discussion
      • • • Sato
      5
      0
      Votes
      5
      Posts
      390
      Views

      S

      Hi @kl3m3n,

      Ok, understand
      Thank you

      Regards

    • S

      No more show longer device names

      Comments & Feedback
      • • • Sato
      3
      0
      Votes
      3
      Posts
      262
      Views

      S

      Hi @kl3m3n,

      If not possible, it's ok

      The long name can be part of a street name or if to long it can be in short form.
      With the name i can immediatly know where the connection is to.

      Regards

    • G

      GUI-O OWON XDM1041 digital multimeter

      Share Your Projects
      • • • gammda
      1
      0
      Votes
      1
      Posts
      405
      Views

      No one has replied

    • K

      Episode 20: GUI-O and ESP32 with MicroPython

      GUI-O Application Tutorial Series
      • • • kl3m3n
      1
      0
      Votes
      1
      Posts
      276
      Views

      No one has replied

    • B

      Real-time clock (RTC)

      General Discussion
      • • • Bernard
      2
      0
      Votes
      2
      Posts
      253
      Views

      K

      @Bernard Hi.

      To retrieve only the day of the week, you can use the RTCF parameter as such:

      "|RTC UID:rtc0 HID:rtc RTCF:dddd\r\n"

      You can also use abbreviation:

      RTCF:ddd

      or numerical form with leading zero:

      RTCF:dd

      or without:

      RTCF:d

      For more information about formatting, see the manual, Appendix C (Supported date and time formats).

      Note: The formatting does not support spaces, so you need to use e.g., underscore or hyphen or similar to build your own timestamp.

      Best regards,
      kl3m3n

    • V

      GUI-O with Nano 33 BLE and the ArduinoBLE Library

      Comments & Feedback
      • • • VNB
      12
      0
      Votes
      12
      Posts
      835
      Views

      K

      @VNB said in GUI-O with Nano 33 BLE and the ArduinoBLE Library:

      There were two minor problems.
      1.) The Slider Control knob always stayed at 100% even if it is set to a low brightness. That was fixed by adding the following instruction in the "led drive" section.
      sendMsg("@brightness VIS:1 VAL:val\r\n");

      The code:

      @VNB said in GUI-O with Nano 33 BLE and the ArduinoBLE Library:

      sendMsg("@brightness VIS:1 VAL:val\r\n");

      is not correct (as you've already pointed out), since the val is a non-numeric string that GUI-O cannot convert to numeric string.

      This is correct:

      @VNB said in GUI-O with Nano 33 BLE and the ArduinoBLE Library:

      sendMsg("@brightness VIS:1 VAL:"+ String(val) + "\r\n");

      as the String constructor converts the val into numerical representation.

      This code should not be necessary, since the value originates from CB, which should already have the correct position. The issue seems to originate from somewhere else, but I cannot see the problem...

      Regards,
      kl3m3n

    • S

      TA widget - Text copy to clipboard

      Comments & Feedback
      • • • Sato
      3
      0
      Votes
      3
      Posts
      212
      Views

      S

      @kl3m3n

      Ok, thank you

      Regards

    • S

      failure in v1.0.53.1

      Report Bugs
      • • • Sato
      9
      0
      Votes
      9
      Posts
      605
      Views

      H

      @kl3m3n

      Android 13

      Best regards,
      Hub

    • S

      Read text file in to TA widget

      Comments & Feedback
      • • • Sato
      3
      0
      Votes
      3
      Posts
      237
      Views

      S

      Hello @kl3m3n,

      The read how many lines exists in the files is no problem.
      Next week i will see how to handle it with FAC and FP

      Thank you
      Regards

    • E

      GUIO File System Access

      General Discussion
      • • • enniom
      4
      0
      Votes
      4
      Posts
      363
      Views

      K

      @enniom Hi!

      Currently there is no such feature to store the files outside the application folder. I will take a look into this a bit after I make some necessary adjustments to fully support targeting Android 13.

      Best regards,
      kl3m3n