Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Praktische Anwendungen (Showcase)
  4. ESP Matrix Anzeige fully IoBroker steuerbar

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.1k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.1k

ESP Matrix Anzeige fully IoBroker steuerbar

Scheduled Pinned Locked Moved Praktische Anwendungen (Showcase)
esp8266matrix displaymax 7219
460 Posts 31 Posters 110.0k Views 45 Watching
  • 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.
  • liv-in-skyL liv-in-sky

    @rushmed hast du den tm1637 aus deiner bin entfernt ?

    R Offline
    R Offline
    Rushmed
    Most Active
    wrote on last edited by
    #259

    @liv-in-sky Nein ich habe nichts entfernt.

    Hier die Anleitung:

      Assign the pins as follows from Tasmota's GUI:
    
      DIN hardware pin --> "MAX7219 DIN"
      CS hardware pin --> "MAX7219 CS"
      CLK hardware pin --> "MAX7219 CLK"
    
    
      Once the GPIO configuration is saved and the ESP8266/ESP32 module restarts,
      set the Display Model to 19 and Display Mode to 0
    
      Depending on order of the wired 8x8 matrix modules you have got a display of size pixel_width x pixel_height.
      The size has to be set with the commands "DisplayWidth <pixel_width>" and "DisplayHeight <pixel_height>"
    
      After the ESP8266/ESP32 module restarts again, turn ON the display with the command "Power 1"
    
    
      Now, the following "Display" commands can be used:
    
      DisplayText  text 
        Sends the text to the display. 
        If the text fits into the display, it is shown in the center.
        Otherwise it scrolls to the left and repeats as long it is cleared or new "DisplayText" overwrites it.
    
      DisplayDimmer [0..100]
        Sets the intensity of the display.
    
      DisplayBlinkrate [0..3]
        0: not blinking
        1: slow, 2: medium 3: fast blinking
    
      Power [ON|OFF]
        Sitches the display on or off. When "off", the display buffer is not cleared and will be shown again when after "Power ON". 
        Other display commands are still active when off.
    
      DisplayClear
        Clears the display
    
      DisplayScrollDelay [0..15]   // default = 0
        Sets the speed of text scroll. Smaller delay = faster scrolling.
        The maximum scroll speed is 50ms per pixel on DisplayScrollDelay 0.
    
      DisplayWidth [8..256]
        Sets the pixel width of the display (8x number of modules in a row)
    
      DisplayHeight [8..256]
        Sets the pixel height of the display (8x number of module rows)
    
      DisplayRotate [0|2]
        0: normal orientation; devide 0 starts at top left
        2: upside down; device 0 starts at bottom right
    
      DisplayClock  [0|1|2]
        Displays a clock.
        Commands "DisplayClock 1"     // 12 hr format
                "DisplayClock 2"     // 24 hr format
                "DisplayClock 0"     // turn off clock; please use additional cammand: DisplayMode 0
    
      If you would like to use the UTF8 latin1 character set, it cam be added by copile option: 
      #define USE_UTF8_LATIN1
    
    liv-in-skyL 1 Reply Last reply
    0
    • R Rushmed

      @liv-in-sky Nein ich habe nichts entfernt.

      Hier die Anleitung:

        Assign the pins as follows from Tasmota's GUI:
      
        DIN hardware pin --> "MAX7219 DIN"
        CS hardware pin --> "MAX7219 CS"
        CLK hardware pin --> "MAX7219 CLK"
      
      
        Once the GPIO configuration is saved and the ESP8266/ESP32 module restarts,
        set the Display Model to 19 and Display Mode to 0
      
        Depending on order of the wired 8x8 matrix modules you have got a display of size pixel_width x pixel_height.
        The size has to be set with the commands "DisplayWidth <pixel_width>" and "DisplayHeight <pixel_height>"
      
        After the ESP8266/ESP32 module restarts again, turn ON the display with the command "Power 1"
      
      
        Now, the following "Display" commands can be used:
      
        DisplayText  text 
          Sends the text to the display. 
          If the text fits into the display, it is shown in the center.
          Otherwise it scrolls to the left and repeats as long it is cleared or new "DisplayText" overwrites it.
      
        DisplayDimmer [0..100]
          Sets the intensity of the display.
      
        DisplayBlinkrate [0..3]
          0: not blinking
          1: slow, 2: medium 3: fast blinking
      
        Power [ON|OFF]
          Sitches the display on or off. When "off", the display buffer is not cleared and will be shown again when after "Power ON". 
          Other display commands are still active when off.
      
        DisplayClear
          Clears the display
      
        DisplayScrollDelay [0..15]   // default = 0
          Sets the speed of text scroll. Smaller delay = faster scrolling.
          The maximum scroll speed is 50ms per pixel on DisplayScrollDelay 0.
      
        DisplayWidth [8..256]
          Sets the pixel width of the display (8x number of modules in a row)
      
        DisplayHeight [8..256]
          Sets the pixel height of the display (8x number of module rows)
      
        DisplayRotate [0|2]
          0: normal orientation; devide 0 starts at top left
          2: upside down; device 0 starts at bottom right
      
        DisplayClock  [0|1|2]
          Displays a clock.
          Commands "DisplayClock 1"     // 12 hr format
                  "DisplayClock 2"     // 24 hr format
                  "DisplayClock 0"     // turn off clock; please use additional cammand: DisplayMode 0
      
        If you would like to use the UTF8 latin1 character set, it cam be added by copile option: 
        #define USE_UTF8_LATIN1
      
      liv-in-skyL Offline
      liv-in-skyL Offline
      liv-in-sky
      wrote on last edited by
      #260

      @rushmed könntest du bitte die tm1637 noch aktivieren in deiner bin
      Ich bekomme es irgendwie nicht hin

      nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

      R 1 Reply Last reply
      0
      • liv-in-skyL liv-in-sky

        @rushmed könntest du bitte die tm1637 noch aktivieren in deiner bin
        Ich bekomme es irgendwie nicht hin

        R Offline
        R Offline
        Rushmed
        Most Active
        wrote on last edited by
        #261

        @liv-in-sky Wo hängts denn? Man muss doch nur die Zeilen einfügen.

        liv-in-skyL 1 Reply Last reply
        0
        • R Rushmed

          @liv-in-sky Wo hängts denn? Man muss doch nur die Zeilen einfügen.

          liv-in-skyL Offline
          liv-in-skyL Offline
          liv-in-sky
          wrote on last edited by
          #262

          @rushmed bei allem , was mit arduino zu tun hat 😞

          nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

          R 1 Reply Last reply
          0
          • liv-in-skyL liv-in-sky

            @rushmed bei allem , was mit arduino zu tun hat 😞

            R Offline
            R Offline
            Rushmed
            Most Active
            wrote on last edited by
            #263

            @liv-in-sky Das geht mir auch so aber mit Gitpod isses in diesem Fall hier einfach.
            Ich setz mich dann mal ran.

            liv-in-skyL 1 Reply Last reply
            0
            • R Rushmed

              @liv-in-sky Das geht mir auch so aber mit Gitpod isses in diesem Fall hier einfach.
              Ich setz mich dann mal ran.

              liv-in-skyL Offline
              liv-in-skyL Offline
              liv-in-sky
              wrote on last edited by
              #264

              @rushmed sagte in ESP Matrix Anzeige fully IoBroker steuerbar:

              Gitpod isses

              noch was neues ?

              wäre echt nett von dir - ich bräuchte nur die max7219 und die tm1637 - und das alles in einer bin - dann bin ich schon happy

              nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

              R 1 Reply Last reply
              0
              • liv-in-skyL liv-in-sky

                @rushmed sagte in ESP Matrix Anzeige fully IoBroker steuerbar:

                Gitpod isses

                noch was neues ?

                wäre echt nett von dir - ich bräuchte nur die max7219 und die tm1637 - und das alles in einer bin - dann bin ich schon happy

                R Offline
                R Offline
                Rushmed
                Most Active
                wrote on last edited by Rushmed
                #265

                @liv-in-sky Prego!
                tasmota-display.bin

                liv-in-skyL W 2 Replies Last reply
                0
                • R Rushmed

                  @liv-in-sky Prego!
                  tasmota-display.bin

                  liv-in-skyL Offline
                  liv-in-skyL Offline
                  liv-in-sky
                  wrote on last edited by
                  #266

                  @rushmed tausend dank - du rettest mir den tag

                  teste gleich

                  nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                  R 1 Reply Last reply
                  0
                  • liv-in-skyL liv-in-sky

                    @rushmed tausend dank - du rettest mir den tag

                    teste gleich

                    R Offline
                    R Offline
                    Rushmed
                    Most Active
                    wrote on last edited by
                    #267

                    @liv-in-sky Dann kannste dich hier noch über die Verwendung von Gitpod für Tasmota belesen.

                    liv-in-skyL 1 Reply Last reply
                    0
                    • R Rushmed

                      @liv-in-sky Dann kannste dich hier noch über die Verwendung von Gitpod für Tasmota belesen.

                      liv-in-skyL Offline
                      liv-in-skyL Offline
                      liv-in-sky
                      wrote on last edited by
                      #268

                      @rushmed

                      leider kein tm1637 - der 7219 ist da - evtl geht beides nicht gleichzeitig ?

                      AApossis (171).gif

                      nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                      R 1 Reply Last reply
                      0
                      • liv-in-skyL liv-in-sky

                        @rushmed

                        leider kein tm1637 - der 7219 ist da - evtl geht beides nicht gleichzeitig ?

                        AApossis (171).gif

                        R Offline
                        R Offline
                        Rushmed
                        Most Active
                        wrote on last edited by
                        #269

                        @liv-in-sky Findest du es in der vorkompilierten display bin?

                        liv-in-skyL 2 Replies Last reply
                        0
                        • R Rushmed

                          @liv-in-sky Findest du es in der vorkompilierten display bin?

                          liv-in-skyL Offline
                          liv-in-skyL Offline
                          liv-in-sky
                          wrote on last edited by liv-in-sky
                          #270

                          @rushmed ja - da ist es drin (aber die befehle in der console funktioniert nicht - erkennt command nicht)aber der 7219 ist nicht drin

                          habe deine letzte bin getestet mit 7219 - funktioniert nicht - alle leds leuchten - immer !

                          was bei deiner version auch nicht da ist, im gegensatz zu bin von tasmota download ist der datenpunkt command - der erscheint nicht

                          nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                          R 1 Reply Last reply
                          0
                          • liv-in-skyL liv-in-sky

                            @rushmed ja - da ist es drin (aber die befehle in der console funktioniert nicht - erkennt command nicht)aber der 7219 ist nicht drin

                            habe deine letzte bin getestet mit 7219 - funktioniert nicht - alle leds leuchten - immer !

                            was bei deiner version auch nicht da ist, im gegensatz zu bin von tasmota download ist der datenpunkt command - der erscheint nicht

                            R Offline
                            R Offline
                            Rushmed
                            Most Active
                            wrote on last edited by Rushmed
                            #271

                            @liv-in-sky alle LEDs leuchten immer ist das Symptom mit dem initialisierungsfehler die LEDs müssen vor dem ESP Strom haben

                            Der datenpunkt command erscheint bei mir wenn es das erste Kommando eingegeben habe

                            1 Reply Last reply
                            0
                            • R Rushmed

                              @liv-in-sky Findest du es in der vorkompilierten display bin?

                              liv-in-skyL Offline
                              liv-in-skyL Offline
                              liv-in-sky
                              wrote on last edited by
                              #272

                              @rushmed

                              aber lass gut sein - das ist mir zu viel zeitaufwand im moment - mach ich mal in ruhe, wenn ich mehr lust dazu habe

                              nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                              1 Reply Last reply
                              0
                              • R Rushmed

                                @liv-in-sky Prego!
                                tasmota-display.bin

                                W Offline
                                W Offline
                                Wolfi
                                wrote on last edited by
                                #273

                                @rushmed

                                Also dein tasmota-display.bin funktioniert.
                                Super vielen Dank!
                                Auch via iobroker bzw. MQTT.

                                Muss mich jetzt endlich mal wieder mit der Entwicklung Umgebung beschäftigen bzw. installieren.
                                Gibt es eine Gute Anleitung für die Installation bzw. wichtiger die richtige Integration von Tasmota in die Umgebung?
                                Entweder für Visual Studio (PlatformIO) oder Arduino!

                                liv-in-skyL R 2 Replies Last reply
                                0
                                • W Wolfi

                                  @rushmed

                                  Also dein tasmota-display.bin funktioniert.
                                  Super vielen Dank!
                                  Auch via iobroker bzw. MQTT.

                                  Muss mich jetzt endlich mal wieder mit der Entwicklung Umgebung beschäftigen bzw. installieren.
                                  Gibt es eine Gute Anleitung für die Installation bzw. wichtiger die richtige Integration von Tasmota in die Umgebung?
                                  Entweder für Visual Studio (PlatformIO) oder Arduino!

                                  liv-in-skyL Offline
                                  liv-in-skyL Offline
                                  liv-in-sky
                                  wrote on last edited by
                                  #274

                                  @wolfi

                                  du glücklicher - ich habe das mit den 7219ern nicht hinbekommen

                                  nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                                  W 1 Reply Last reply
                                  0
                                  • W Wolfi

                                    @rushmed

                                    Also dein tasmota-display.bin funktioniert.
                                    Super vielen Dank!
                                    Auch via iobroker bzw. MQTT.

                                    Muss mich jetzt endlich mal wieder mit der Entwicklung Umgebung beschäftigen bzw. installieren.
                                    Gibt es eine Gute Anleitung für die Installation bzw. wichtiger die richtige Integration von Tasmota in die Umgebung?
                                    Entweder für Visual Studio (PlatformIO) oder Arduino!

                                    R Offline
                                    R Offline
                                    Rushmed
                                    Most Active
                                    wrote on last edited by Rushmed
                                    #275

                                    @wolfi wie gesagt tasmota kompiliere ich mit Gitpod, das ist einfach ein browser-add-on, den Link habe ich weiter oben mit tasmota Anleitung schon gepostet das ist echt einfach.

                                    W 2 Replies Last reply
                                    0
                                    • liv-in-skyL liv-in-sky

                                      @wolfi

                                      du glücklicher - ich habe das mit den 7219ern nicht hinbekommen

                                      W Offline
                                      W Offline
                                      Wolfi
                                      wrote on last edited by
                                      #276

                                      @liv-in-sky
                                      Kann ich dir Helfen?
                                      Brauchst du Infos von mir?

                                      Gruss
                                      Wolfgang

                                      liv-in-skyL 1 Reply Last reply
                                      0
                                      • R Rushmed

                                        @wolfi wie gesagt tasmota kompiliere ich mit Gitpod, das ist einfach ein browser-add-on, den Link habe ich weiter oben mit tasmota Anleitung schon gepostet das ist echt einfach.

                                        W Offline
                                        W Offline
                                        Wolfi
                                        wrote on last edited by
                                        #277

                                        @rushmed sagte in ESP Matrix Anzeige fully IoBroker steuerbar:

                                        Gitpod

                                        ok Danke Gitpod schaue ich mir an

                                        liv-in-skyL 1 Reply Last reply
                                        0
                                        • W Wolfi

                                          @liv-in-sky
                                          Kann ich dir Helfen?
                                          Brauchst du Infos von mir?

                                          Gruss
                                          Wolfgang

                                          liv-in-skyL Offline
                                          liv-in-skyL Offline
                                          liv-in-sky
                                          wrote on last edited by
                                          #278

                                          @wolfi

                                          das ist sehr nett von dir - das teil hat mich heute so geärgert, dass ich mal schauen muss, ob ich morgen nochmal teste - dann melde ich mich nochmal

                                          nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          751

                                          Online

                                          32.4k

                                          Users

                                          81.4k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe