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

      No more show longer device names

      Comments & Feedback
      • • • Sato
      3
      0
      Votes
      3
      Posts
      352
      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
      553
      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
      417
      Views

      No one has replied

    • B

      Real-time clock (RTC)

      General Discussion
      • • • Bernard
      2
      0
      Votes
      2
      Posts
      387
      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
      1.3k
      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
      311
      Views

      S

      @kl3m3n

      Ok, thank you

      Regards

    • S

      failure in v1.0.53.1

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

      H

      @kl3m3n

      Android 13

      Best regards,
      Hub

    • S

      Read text file in to TA widget

      Comments & Feedback
      • • • Sato
      3
      0
      Votes
      3
      Posts
      358
      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
      574
      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

    • V

      More information and examples of CB widget

      Comments & Feedback
      • • • VNB
      5
      0
      Votes
      5
      Posts
      566
      Views

      V

      Your changes work great! THANK YOU for the quick response and new parameters in CB

    • E

      Can widget configuration commands be sent directly to App from a file.txt?

      Wishlist
      • • • enniom
      9
      0
      Votes
      9
      Posts
      1.0k
      Views

      K

      @enniom Thank you. 😁

    • S

      BASACOM and CAN BUS

      General Discussion
      • • • Sato
      7
      0
      Votes
      7
      Posts
      876
      Views

      S

      Hi @kl3m3n,

      Thanks, I know this chip, but never used it

      I have done in the last 20 years almost all my projects with Bascom and Atmega and Xmega microcontrollers, but there are no libraries like in the Arduino, you have to code everything from scratch. With the Esp32 this task is easier, for this there is the lib can.h and you only need the soic8 driver for the bus.

      The advantage is that the Atmega88PA is cheaper than the Esp32 but I will still think about which one to choose

      Thanks for the attempt to help

      Regards

    • S

      Mosquitto on my home computer with Windows10

      General Discussion
      • • • Sato
      6
      0
      Votes
      6
      Posts
      620
      Views

      S

      Hi Kl3m3n,

      A sincere thank you.
      The whole process seems to be quite complex. In my case, it is for Windows.
      I am trying to get a fixed IP. The ISP operators want a high value. I will look for cheaper ones.
      In the next few days I'll try to install it and do some tests. I will give you my feedback then.
      Thanks again for your support.

      Best regards

    • K

      Episode 19: Setup custom MQTT broker for Windows

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

      No one has replied

    • K

      Episode 18: Setup custom MQTT broker for Linux

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

      No one has replied

    • K

      Episode 17: URL image stream

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

      No one has replied

    • K

      Episode 16: Initializing GUI from file

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

      No one has replied

    • S

      Stream with Esp32Cam

      General Discussion
      • • • Sato
      3
      0
      Votes
      3
      Posts
      304
      Views

      S

      Hi @kl3m3n,

      Not see it, thank you
      In a few days i will test it and give feedback

      Best regards

    • E

      GUI-O on Chromebook

      General Discussion
      • • • enniom
      5
      0
      Votes
      5
      Posts
      506
      Views

      K

      @enniom Thanks for the feedback!

    • S

      Send sms

      Comments & Feedback
      • • • Sato
      4
      0
      Votes
      4
      Posts
      378
      Views

      K

      @Sato Hi!

      Google has strict policies regarding sensitive permissions (SMS included).
      In order to handle SMS related functionality, the application needs to be (in general) registered as the default SMS app. Since GUI-O does not need SMS functionality to run, it would be probably quite impossible to convince Google to allow SMS features in GUI-O. You can read more about it here:

      https://support.google.com/googleplay/android-developer/answer/10208820?sjid=7843560484419800904-EU

      Regards,
      kl3m3n