Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter Awtrix-Light (Awtrix 3)

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Test Adapter Awtrix-Light (Awtrix 3)

    This topic has been deleted. Only users with topic management privileges can see it.
    • JB_Sullivan
      JB_Sullivan last edited by

      Da bei mir der Adapter nicht so ganz rund läuft (Darstellung der Screen Reihenfolge, Nicht Aktualisierung von Werten, API Abbrüche usw.) hier mal ein Debug LOG als ZIP (Dateiendung .txt enfernen). Vielleicht kann @haus-automatisierung da ggf. das eine oder andere Problem dran erkennen.

      awtrix_debug_log.zip.txt

      1 Reply Last reply Reply Quote 0
      • N
        Njdfg @JB_Sullivan last edited by

        @jb_sullivan

        Ja ist genau so wie de es auch Beschreibst in den Editiermodus gehen (Buttons bereits rot und ausgegraut) auch wenn man z.B. nur die Anzeigezeit mit den Pfeiltasten verändert (was wohl keine Fehleingabe wäre :-)), dann bleiben diese rot. Allerdings legt man einen neuen "Adapter" an sind die Speicherbuttons aktiv.

        1 Reply Last reply Reply Quote 0
        • JB_Sullivan
          JB_Sullivan last edited by

          Kurz eine andere Frage - wo sind die verwendeten Fonts von Awtrix hinterlegt? Ist das eine Sache die aus der Firmware kommt?

          Ein Besucher machte mich bei meiner Awtrix auf einen "Design Fail" aufmerksam. Das A würde aussehen wie ein R, was bei der Sensorbezeichnung AUSSEN zwangsläufig dazu führt das man RUSSEN daraus liest.

          Hier müsste nur ein Pixel entfernt werden, das es aussieht wie ein "richtiges" A. Ist vermutlich ein Issue was an den Awtrix Entwickler gehen sollte - oder?

          1 Reply Last reply Reply Quote 0
          • M
            Michaelnorge last edited by Michaelnorge

            Ich bekomme es nicht hin, diese Forumseite zu durchsuchen, und alles durch zu lesen dauert mir zu lange - daher frage ich hier direkt:

            Ich betreibe die Awtrix mit der 0.7.1 und dem aktuellen Adapter.
            Wo sind denn plötzlich die Augen hin, der der Awtrix anzeigen kann?
            Wenn auf meinem Tablet an der Wand was wichtiges passiert hab ich die mir immer anzeigen lassen, aber jetzt kommt diese Fehlermeldung:

            awtrix-light.0
            2023-07-26 15:01:24.528	warn	(switch) Unable to execute action: AxiosError: Request failed with status code 500
            
            awtrix-light.0
            2023-07-26 15:01:24.527	warn	received 500 response from /api/switch with content: "FAILED"
            

            Wenn das an der aktuellen Firmware liegt, kann mir jemand sagen wie ich die downgraden kann, ohne den Awtrix am Rechner anschließen zu müssen?

            Finde HIER keine Infos hierzu.

            Danke schon mal 🙂

            1 Reply Last reply Reply Quote 0
            • M
              MCU last edited by

              @michaelnorge Das mit den Augen liegt an der neuen Firmware.
              3b6d7a8a-68af-4b03-a75d-0f3d5872c5b8-image.png
              Zurück kommt man
              https://github.com/Blueforcer/awtrix-light/releases/tag/0.70
              ulanzi_firmware.bin auswählen und herunterladen.

              Geräte-IP/update -> Firmware-Datei auswählen -> Update Firmware

              M 1 Reply Last reply Reply Quote 0
              • M
                Michaelnorge @MCU last edited by

                @mcu Genial, hat geklappt! 1000 Dank :-))))

                K 1 Reply Last reply Reply Quote 0
                • JB_Sullivan
                  JB_Sullivan last edited by

                  Uiiii - mit der 0.71 Firmware kann man auch Ringtone Dateien abspielen. Wird das der Adapter ggf. auch unterstützen?

                  haus-automatisierung 1 Reply Last reply Reply Quote 0
                  • Bravestarr
                    Bravestarr last edited by

                    Hi!

                    Now that I can show any information from ioBroker I fell in love with this adapter. This works great for "apps" But what is the idea to display "notifications" with e.g. "Spotify"? I have the current playing song in spotify in spotify-premium.0.player.trackName But when I use your adapter in "App mode" this will always be displayed. But I need this only when the value in spotify-premium.0.player.trackName changes and only one time. What is the best way to do this with your adapter? I saw "blocky" in your documentation. Is this the way to go?

                    DJMarc75 1 Reply Last reply Reply Quote 0
                    • DJMarc75
                      DJMarc75 @Bravestarr last edited by DJMarc75

                      @bravestarr sagte in Test Adapter Awtrix-Light:

                      I saw "blocky" in your documentation. Is this the way to go?

                      Yes

                      example:

                      Screenshot 2023-07-26 190704.png

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

                        @djmarc75
                        Aber es geht auch mit App:

                        Screenshot_2023-07-26 19.12.23_k3LIYP.jpg

                        wird nur dann angezeigt, wenn Spotify läuft

                        Bravestarr 1 Reply Last reply Reply Quote 0
                        • Bravestarr
                          Bravestarr @Czarno13 last edited by Bravestarr

                          @czarno13 No the app is always active and does not disapear or appear when a song is played.

                          What works is this:

                          // Create a state change listener for spotify-premium.0.player.trackName
                          on({ id: 'spotify-premium.0.player.trackName', change: 'ne', ack: true }, function (obj) {
                              if (!obj || !obj.state || obj.state.val === null) {
                                  console.warn('Invalid trackName state object or null value.');
                                  return;
                              }
                          
                              const newTrackName = obj.state.val;
                              const notificationText = `Now playing: ${newTrackName}`;
                          
                              if (newTrackName.trim() === '') {
                                  console.warn('Track name is empty.');
                                  return;
                              }
                          
                              // Send the notification to Awtrix display
                              sendTo('awtrix-light', 'notification', { text: notificationText, repeat: 1, duration: 5, stack: true, wakeup: true }, (res) => {
                                  if (res && res.error) {
                                      console.error(res.error);
                                  }
                              });
                          });
                          
                          C M 2 Replies Last reply Reply Quote 1
                          • C
                            Czarno13 @Bravestarr last edited by Czarno13

                            @bravestarr
                            no, for me it works exactly like that, it only displays something when spotify is playing

                            Bravestarr 1 Reply Last reply Reply Quote 0
                            • M
                              MCU @Bravestarr last edited by

                              @bravestarr Please set all of Code in Code Tags. Thanks.

                              Bravestarr 1 Reply Last reply Reply Quote 0
                              • Bravestarr
                                Bravestarr @Czarno13 last edited by

                                @czarno13 said in Test Adapter Awtrix-Light:

                                @bravestarr
                                no, for me it works exactly like that, it only displays something when spotify is playing

                                Yes, but what I wanted and accomplished with the notice triggered by the js adapter is when a songs starts its name is briefly displayed and disappears after 3 seconds. I do not want to keep the song visible while spotify is playing.

                                BTW: how can I display an icon cia id in the js notice?

                                1 Reply Last reply Reply Quote 0
                                • Bravestarr
                                  Bravestarr @MCU last edited by

                                  @mcu done

                                  DJMarc75 1 Reply Last reply Reply Quote 1
                                  • DJMarc75
                                    DJMarc75 @Bravestarr last edited by

                                    @bravestarr Warum eigentlich auf englisch ??? Du hast in Deinen vergangenen Beiträgen in deutsch geschrieben.... ist das Schikane oder ein Scherz ??

                                    Bravestarr 1 Reply Last reply Reply Quote 1
                                    • Bravestarr
                                      Bravestarr @DJMarc75 last edited by

                                      @djmarc75 ich kann auch deutsch, aber so verstehen es mehr Leute. Das hilft ja auch anderen wenn ich dumme Fragen stelle

                                      DJMarc75 1 Reply Last reply Reply Quote 0
                                      • DJMarc75
                                        DJMarc75 @Bravestarr last edited by

                                        @bravestarr sagte in Test Adapter Awtrix-Light:

                                        so verstehen es mehr Leute

                                        definitiv nicht - im deutschen Forum 😉

                                        Das Blockly schon probiert ?
                                        Das ist nämlich genau für so was vorgesehen.

                                        Bravestarr 1 Reply Last reply Reply Quote 3
                                        • haus-automatisierung
                                          haus-automatisierung Developer Most Active @JB_Sullivan last edited by

                                          @jb_sullivan sagte in Test Adapter Awtrix-Light:

                                          Uiiii - mit der 0.71 Firmware kann man auch Ringtone Dateien abspielen.

                                          Was ist daran neu in der Version?

                                          1 Reply Last reply Reply Quote 0
                                          • haus-automatisierung
                                            haus-automatisierung Developer Most Active @JB_Sullivan last edited by

                                            @jb_sullivan sagte in Test Adapter Awtrix-Light:

                                            Mir persönlich kommt es so vor, als ob der Adapter eine Art Datenbank nutzt, welche im Hintergrund eingelesen wird.

                                            Ich hab Dir das doch schon öfter hier erklärt: Der Adapter selbst macht hier gar nichts. Die komplette Konfigurationsseite kommt so aus dem Admin-Adapter. Also: Keine "Datenbank" o.ä. Das ist pures JavaScript im Frontend auf dem Client.

                                            Du hast ja richtig viele Apps eingerichtet, oder? Ich könnte mir vorstellen, dass die Validierung der Felder nie für hunderte Felder getestet wurde. Eventuell ist das nicht sehr performant. Das wäre auch ein Issue für den Admin-Adapter und man müsste das mal genau untersuchen mit verschiedenen Clients/Browsern usw.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            1.1k
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            165
                                            2158
                                            911327
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo