Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. hygrometer (luftfeuchte) - hilfe bei integration

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    hygrometer (luftfeuchte) - hilfe bei integration

    This topic has been deleted. Only users with topic management privileges can see it.
    • liv-in-sky
      liv-in-sky @OpenSourceNomad last edited by liv-in-sky

      @opensourcenomad

      ich hätte mal eine bitte an dich - könntest du mir bei esphome helfen. ich habe ein 1637 segment anzeige angeschlossen und würde gerne über mqtt werte an das display senden. das überfordert mich gerade.

      wie geht das, dass mqtt empfängt und dann den wert anzeigt

      das habe ich - aber wie verbinde ich den empfang von mqtt mit dem schreiben des displays - im moment wird 33 ausgegeben

      mqtt:
        broker: 192.168.178.59
        port: 1506
        topic_prefix: esp7segment/sensors
        id: mqtt_client
      
         
      
      text_sensor:
          - platform: wifi_info
            ip_address:
             name: "ESP IP Address"
            mac_address:
             name: "ESP Mac Wifi Address"
      
      
      display:
          platform: tm1637
          id: tm1637_display
          clk_pin: D6
          dio_pin: D5
          lambda: |-
            it.print("33");
      
      OpenSourceNomad 1 Reply Last reply Reply Quote 0
      • OpenSourceNomad
        OpenSourceNomad Most Active @liv-in-sky last edited by OpenSourceNomad

        @liv-in-sky said in hygrometer (luftfeuchte) - hilfe bei integration:

        wie geht das, dass mqtt empfängt

        mittels mqtt subscribe component

        # Example configuration entry
        sensor:
          - platform: mqtt_subscribe
            name: "Data from topic"
            id: mysensor
            topic: the/topic
        

        und dann den wert anzeigt

        via lambda das display füllen wie in der tm1637 component beschrieben:

              // Print a right-padded sensor value with 0 digits after the decimal
              it.printf("S%3.0f", id(my_sensor).state);
              // Result: "S 42
        
        liv-in-sky 1 Reply Last reply Reply Quote 1
        • liv-in-sky
          liv-in-sky @OpenSourceNomad last edited by liv-in-sky

          @opensourcenomad ⭐ ⭐ ⭐ ⭐ ⭐

          vielen dank - läuft wie eine eins

          falls noch jmd sowas braucht - hier ein "yaml" für anzeige eines mqtt wertes auf einem TM1637-7-segment-display

          sensor:
           - platform: mqtt_subscribe
             name: "Data from topic"
             id: mysensor
             topic: esp7segment/value
            
          mqtt:
           broker: 192.168.178.59
           port: 1506
           topic_prefix: esp7segment/sensors
           id: mqtt_client
           on_message:
            - topic: esp7segment/value
              then:
                 - logger.log: id(mysensor).state
          
          
          text_sensor:
             - platform: wifi_info
               ip_address:
                name: "ESP IP Address"
               mac_address:
                name: "ESP Mac Wifi Address"
          
          
          display:
             platform: tm1637
             id: tm1637_display
             clk_pin: D3
             dio_pin: D5
             lambda: |-
                it.printf("%3.0f ", id(mysensor).state);
          
          

          FredF 1 Reply Last reply Reply Quote 1
          • FredF
            FredF Most Active Forum Testing @liv-in-sky last edited by

            @liv-in-sky
            Da ich mich auch gerade mit den Xiaomis und ESPhome beschäftige, habe ich mir den neuen ESPhome Adapter von @Dutchman installiert...
            Funktioniert schon super und kommt mir gelegen, da ich kein MQTT betreiben will.
            https://github.com/iobroker-community-adapters/ioBroker.esphome

            liv-in-sky OpenSourceNomad 3 Replies Last reply Reply Quote 2
            • liv-in-sky
              liv-in-sky @FredF last edited by

              @fredf danke - kenn ich nicht - werd ich mir absehen

              1 Reply Last reply Reply Quote 0
              • liv-in-sky
                liv-in-sky @FredF last edited by

                @fredf

                @Dutchman

                kann im forum nix finden und auch leider nicht installieren - code 25

                FredF 1 Reply Last reply Reply Quote 0
                • FredF
                  FredF Most Active Forum Testing @liv-in-sky last edited by

                  @liv-in-sky sagte in hygrometer (luftfeuchte) - hilfe bei integration:

                  kann im forum nix finden und auch leider nicht installieren - code 25

                  Stimmt im Forum finde ich auch nichts, aber auf discord hat @Dutchman das gepostet.

                  code 25

                  kA, bei mir hat die Installation geklappt 🤔

                  liv-in-sky 1 Reply Last reply Reply Quote 0
                  • liv-in-sky
                    liv-in-sky @FredF last edited by liv-in-sky

                    @fredf über "katze" und link von github ?

                    $ ./iobroker url "https://github.com/iobroker-community-adapters/ioBroker.esphome"
                    Info: Can not get current GitHub commit, we remember master branch only. Status: 422 (No commit found for SHA: master)
                    install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master
                    NPM version: 6.14.8
                    npm install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master --loglevel error --prefix "/opt/iobroker" (System call)
                    npm 
                    ERR! code E404
                    npm 
                    ERR! 404 Not Found - GET https://codeload.github.com/iobroker-community-adapters/ioBroker.esphome/legacy.tar.gz/masternpm ERR! 404 npm ERR! 404  'https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master' is not in the npm registry.npm 
                    ERR! 404 Your package name is not valid, because npm 
                    ERR! 404  1. name can only contain URL-friendly charactersnpm ERR!
                    404  2. name can no longer contain capital lettersnpm ERR! 404 npm ERR! 404
                    Note that you can also install from anpm ERR! 404
                    tarball, folder, http url, or git url.
                    
                    npm ERR! A complete log of this run can be found in:npm ERR!     /home/iobroker/.npm/_logs/2021-02-25T14_44_32_777Z-debug.log
                    ERROR: host.iobroker59 Cannot install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master: 1
                    ERROR: process exited with code 25
                    

                    FredF 1 Reply Last reply Reply Quote 0
                    • FredF
                      FredF Most Active Forum Testing @liv-in-sky last edited by

                      @liv-in-sky
                      Das ist der richtige Link für die Katze:
                      https://github.com/iobroker-community-adapters/ioBroker.esphome.git

                      liv-in-sky 1 Reply Last reply Reply Quote 0
                      • liv-in-sky
                        liv-in-sky @FredF last edited by

                        @fredf sagte in hygrometer (luftfeuchte) - hilfe bei integration:

                        https://github.com/iobroker-community-adapters/ioBroker.esphome.git

                        danke - aber leider selbes problem mit diesem link

                        $ ./iobroker url "https://github.com/iobroker-community-adapters/ioBroker.esphome.git"
                        Info: Can not get current GitHub commit, we remember master branch only. Status: 422 (No commit found for SHA: master)
                        install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master
                        NPM version: 6.14.8
                        npm install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master --loglevel error --prefix "/opt/iobroker" (System call)
                        npm 
                        ERR! code E404
                        npm ERR!
                        404 Not Found - GET https://codeload.github.com/iobroker-community-adapters/ioBroker.esphome/legacy.tar.gz/masternpm ERR! 404 npm 
                        ERR! 404  'https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master' is not in the npm registry.npm ERR! 404 Your package name is not valid, because npm ERR! 
                        404  1. name can only contain URL-friendly charactersnpm ERR! 404
                         2. name can no longer contain capital lettersnpm ERR! 404 npm ERR! 404 Note that you can also install from a
                        npm ERR! 404 tarball, folder, http url, or git url.
                        
                        npm ERR! A complete log of this run can be found in:npm ERR!     /home/iobroker/.npm/_logs/2021-02-25T14_47_50_620Z-debug.log
                        ERROR: host.iobroker59 Cannot install https://github.com/iobroker-community-adapters/ioBroker.esphome/tarball/master: 1
                        ERROR: process exited with code 25
                        

                        FredF 1 Reply Last reply Reply Quote 0
                        • FredF
                          FredF Most Active Forum Testing @liv-in-sky last edited by

                          @liv-in-sky Komisch, nochmal auf einem weiteren System probiert:


                          ESPhome install.gif

                          liv-in-sky 1 Reply Last reply Reply Quote 0
                          • liv-in-sky
                            liv-in-sky @FredF last edited by

                            @fredf muss da noch irgendwas anderes installiert sein ?

                            habe mal ein paar andere adapter upgedatet - funktioniert - (um internet verbindung zu testen)

                            @Dutchman - hast du eine idee ?

                            FredF Dutchman 2 Replies Last reply Reply Quote 0
                            • OpenSourceNomad
                              OpenSourceNomad Most Active @FredF last edited by

                              @fredf said in hygrometer (luftfeuchte) - hilfe bei integration:

                              Funktioniert schon super und kommt mir gelegen, da ich kein MQTT betreiben will.

                              Wer einmal den Absprung von MQTT geschafft hat wird nie wieder zurück wollen 😂

                              Dutchman 1 Reply Last reply Reply Quote 0
                              • FredF
                                FredF Most Active Forum Testing @liv-in-sky last edited by

                                @liv-in-sky sagte in hygrometer (luftfeuchte) - hilfe bei integration:

                                muss da noch irgendwas anderes installiert sein ?

                                Nicht das ich wüsste...
                                Bekomme langsam ein schlechtes Gewissen hier den Fred gekapert zu haben...

                                liv-in-sky 1 Reply Last reply Reply Quote 0
                                • liv-in-sky
                                  liv-in-sky @FredF last edited by

                                  @fredf absolut kein thema - zum einem habe ich ein anderes thema aufgemacht und zum anderen ist dieser thread soweit fertig - die hydro-sache läuft sehr stabil und ich bin happy damit

                                  vielleicht macht ja dutchman noch einen forumsbeitrag dafür auf, wenn die zeit reif ist

                                  1 Reply Last reply Reply Quote 0
                                  • Dutchman
                                    Dutchman Developer Most Active Administrators @liv-in-sky last edited by Dutchman

                                    @liv-in-sky sagte in hygrometer (luftfeuchte) - hilfe bei integration:

                                    @fredf muss da noch irgendwas anderes installiert sein ?

                                    habe mal ein paar andere adapter upgedatet - funktioniert - (um internet verbindung zu testen)

                                    @Dutchman - hast du eine idee ?

                                    Lol mein esphome Adapter ist noch nichtmal veröffentlicht aber cool das er bereits gefunden wird 😉

                                    Lass uns das mal in nem separaten Thread oder Discord adressieren gehört nicht ganz zu dem topic hier.

                                    Sorry bin nicht so oft im Forum aktiv wurde gerade darauf hingewiesen das hier ne frage für mich war 🙈

                                    1 Reply Last reply Reply Quote 0
                                    • Dutchman
                                      Dutchman Developer Most Active Administrators @OpenSourceNomad last edited by

                                      @opensourcenomad sagte in hygrometer (luftfeuchte) - hilfe bei integration:

                                      @fredf said in hygrometer (luftfeuchte) - hilfe bei integration:

                                      Funktioniert schon super und kommt mir gelegen, da ich kein MQTT betreiben will.

                                      Wer einmal den Absprung von MQTT geschafft hat wird nie wieder zurück wollen 😂

                                      Oh doch, wer einmal Adapter in Strukturen bringen kan und websocket versteht wil nie wieder mit mqtt arbeiten 😉

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

                                      Support us

                                      ioBroker
                                      Community Adapters
                                      Donate

                                      503
                                      Online

                                      31.7k
                                      Users

                                      79.8k
                                      Topics

                                      1.3m
                                      Posts

                                      hygrometer luftfeuchtigkeit
                                      13
                                      112
                                      9587
                                      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