Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. [DEPRECATED] Abkündigung Adapter ioBroker.info

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    [DEPRECATED] Abkündigung Adapter ioBroker.info

    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      schweiger2 @Homoran last edited by

      @homoran @Thomas-Braun

      Vielen Dank euch beiden

      1 Reply Last reply Reply Quote 0
      • Dr. Bakterius
        Dr. Bakterius Most Active last edited by

        Ich hatte den Info-Adapter eigentlich nur noch für die Prozessortemperatur herangezogen. Die gibt es nicht im System soviel ich weiß. Aber mit lm-sensors und einem kleinen Bash-Skript habe ich die auch so in ioBroker verfügbar und der info-Adapter konnte gelöscht werden.

        Homoran 1 Reply Last reply Reply Quote 0
        • Homoran
          Homoran Global Moderator Administrators @Dr. Bakterius last edited by

          @dr-bakterius je nach Hardware und OS braucht man kein Zusatzprogramm

          pi@ioBrokerpi5:~ $ cat /sys/class/thermal/thermal_zone0/temp
          48500
          
          R Dr. Bakterius 2 Replies Last reply Reply Quote 0
          • R
            Rushmed Most Active @Homoran last edited by

            @homoran Cool, wie bekomm' ich das per Blockly in einen Datenpunkt?

            Homoran 1 Reply Last reply Reply Quote 0
            • Homoran
              Homoran Global Moderator Administrators @Rushmed last edited by

              @rushmed sagte in [DEPRECATED] Abkündigung Adapter ioBroker.info:

              @homoran Cool, wie bekomm' ich das per Blockly in einen Datenpunkt?

              hab ich noch nie versucht. in meiner Proxmox vm auf dem nuc kann ich es nicht testen

              1 Reply Last reply Reply Quote 0
              • Dr. Bakterius
                Dr. Bakterius Most Active @Homoran last edited by

                @homoran sagte in [DEPRECATED] Abkündigung Adapter ioBroker.info:

                je nach Hardware und OS braucht man kein Zusatzprogramm

                Danke, aber so wie du fahre ich ioBroker unter Proxmox. Für andere aber sicher hilfreich.

                1 Reply Last reply Reply Quote 0
                • Dr. Bakterius
                  Dr. Bakterius Most Active last edited by

                  Falls jemand das Bash-Skript braucht:

                  #!/bin/bash
                  
                  # Aktuelle CPU Temperatur ermitteln und an ioBroker senden
                  
                  # Schleife für 4 Messungen pro Minute
                  i=1
                  while [ $i -lt 5 ]
                  do
                  	# Sensoren abfragen und Ergebnis auf den Wert beschneiden
                  	wert=$(sensors | grep 'Package id 0:' | awk '{print $4}' | awk '{print substr($0, 2, length($0) - 6)}')
                  	# In Datenpunkt von ioBroker schreiben
                  	erg=$(curl -s http://192.168.1.101:8082/set/0_userdata.0.CPU_Temperatur?value=$wert)
                  	# warten
                  	sleep 15
                  	i=$[$i+1]
                  done
                  

                  Dieses wird per cron jede Minute aufgerufen und sendet alle 15 Sekunden die Temperatur an ioBroker. Die Abfrageprozedur und der Datenpunkt muss auf das eigene System angepasst werden.

                  1 Reply Last reply Reply Quote 1
                  • R
                    Rushmed Most Active last edited by

                    Hallo,

                    in der Host Ansicht finde ich die Systembetriebszeit.
                    Ist die auch irgendwo als Datenpunkt hinterlegt?
                    b7237c6b-f84e-47c7-93e1-8ee54707a1f3-grafik.png

                    mcm1957 1 Reply Last reply Reply Quote 0
                    • mcm1957
                      mcm1957 @Rushmed last edited by

                      @rushmed
                      Schau mal in die States des Hosts:

                      b62353f8-df70-4c3a-935e-3744dd2201d0-image.png

                      R 1 Reply Last reply Reply Quote 0
                      • R
                        Rushmed Most Active @mcm1957 last edited by

                        @mcm57 Da finde ich nur die ioBroker Betriebszeit.

                        mcm1957 1 Reply Last reply Reply Quote 0
                        • mcm1957
                          mcm1957 @Rushmed last edited by

                          @rushmed
                          Ok, dachte du suchst die.

                          R O 2 Replies Last reply Reply Quote 0
                          • R
                            Rushmed Most Active @mcm1957 last edited by

                            @mcm57 Trotzdem danke!

                            1 Reply Last reply Reply Quote 0
                            • O
                              Oli @mcm1957 last edited by

                              @mcm57

                              in der Host Ansicht sind noch folgende Systeminformationen hinterlegt:

                              Plattform: docker (official image - v8.0.0)
                              Betriebssystem: linux
                              Architektur: x64
                              CPUs: 4
                              Geschwindigkeit: 2001 MHz
                              Modell: Intel(R) Celeron(R) CPU  J1900  @ 1.99GHz
                              RAM: 7.6 GB
                              

                              Ist es mögliche diese als States des Hosts anzulegen?

                              mcm1957 1 Reply Last reply Reply Quote 0
                              • mcm1957
                                mcm1957 @Oli last edited by

                                @oli said in [DEPRECATED] Abkündigung Adapter ioBroker.info:

                                @mcm57

                                in der Host Ansicht sind noch folgende Systeminformationen hinterlegt:

                                Plattform: docker (official image - v8.0.0)
                                Betriebssystem: linux
                                Architektur: x64
                                CPUs: 4
                                Geschwindigkeit: 2001 MHz
                                Modell: Intel(R) Celeron(R) CPU  J1900  @ 1.99GHz
                                RAM: 7.6 GB
                                

                                Ist es mögliche diese als States des Hosts anzulegen?

                                Ich kennen den Code von admin / js-controlelr nicht und kann diese Frage leider nicht beantworten.

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

                                  Der Info Adapter zeigt mir immer noch zuverlässig an wenn es Updates für Node.js gibt.
                                  Systeminformationen.PNG

                                  Kennt einer hiefür eine Alternative?

                                  Thomas Braun haus-automatisierung 2 Replies Last reply Reply Quote 1
                                  • Thomas Braun
                                    Thomas Braun Most Active @UweRLP last edited by

                                    @uwerlp

                                    Dein Paketmanager. Der spült dir bei regelmäßiger Verwendung (macht man ja eh...) auch immer die aktuelle Version an.

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

                                      @uwerlp sagte in [DEPRECATED] Abkündigung Adapter ioBroker.info:

                                      Der Info Adapter zeigt mir immer noch zuverlässig an wenn es Updates für Node.js gibt.
                                      Kennt einer hiefür eine Alternative?

                                      Im Übersichts-Tab sieht man das doch genauso

                                      Screenshot 2024-04-05 at 08.49.12.png

                                      UweRLP 1 Reply Last reply Reply Quote 0
                                      • UweRLP
                                        UweRLP @Thomas Braun last edited by

                                        @thomas-braun sagte in [DEPRECATED] Abkündigung Adapter ioBroker.info:

                                        Dein Paketmanager.

                                        Bin mit Windows unterwegs

                                        @haus-automatisierung sagte:

                                        Im Übersichts-Tab sieht man das doch genauso

                                        Screenshot 2024-04-05 at 08.49.12.png

                                        Oh, danke für den Hinweis 👍

                                        Thomas Braun mcm1957 2 Replies Last reply Reply Quote 0
                                        • Thomas Braun
                                          Thomas Braun Most Active @UweRLP last edited by

                                          @uwerlp sagte in [DEPRECATED] Abkündigung Adapter ioBroker.info:

                                          Bin mit Windows unterwegs

                                          Mein Beileid.
                                          Aber auch dort hat man die Vorteile erkannt. Nennt sich glaube ich winget.

                                          1 Reply Last reply Reply Quote 0
                                          • mcm1957
                                            mcm1957 @UweRLP last edited by

                                            @uwerlp
                                            Wenn ich mich nicht irre aktualisisert der Windows Installer mittlerweile nodeJS. Nur der Update des js-controllers ist noch nicht drinnen.

                                            Gaspode UweRLP 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            1.0k
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            abkündigung deprecated
                                            29
                                            125
                                            15429
                                            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