6 bytes information to read

Einklappen
X
 
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge
  • Gast

    #1

    6 bytes information to read

    Hi!
    I'm triyng to read a 6 Bytes information on a KNX heat manager module.
    I don't find a compatible configuration on Loxone Config.
    An idea ?

    Thank you

    David
  • omaineoppe
    Azubi
    • 30.05.2025
    • 2

    #2
    Zitat von Gast
    Hi!
    I'm triyng to read a 6 Bytes information on a KNX heat manager module.
    I don't find a compatible configuration on Loxone Config.
    An idea ?

    Thank you

    David
    You should contact the administrator directly to get more accurate and faster information.

    Kommentar

    • Andsor
      Azubi
      • 08.07.2025
      • 2

      #3

      Try using the escape hex syntax with Command Recognition like this:

      Code:
      \x8a\x08\x00\s1\1
      to read the first byte after the 8a 08 00 header, then similarly use \x8a\x08\x00\s2\1 for the second byte, and so on. This is an effective way to extract individual bytes from a 6-byte payload — similar to how UDP or Modbus reading is handled in Loxone
      Zuletzt geändert von Andsor; 10.07.2025, 07:28.

      Kommentar

      • emmaroberts
        Azubi
        • 09.03.2026
        • 1

        #4
        If you only need to read each byte in a 6-byte packet, using hex escape and \s1, \s2… as suggested above is actually an effective solution. You can separate each byte after the header and process it individually in Loxone Config, similar to reading Modbus or UDP data.

        Kommentar

        Lädt...