Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • 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

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Hardware
  4. Geräte die laufen mit Tasmota Script

NEWS

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

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

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

Geräte die laufen mit Tasmota Script

Geplant Angeheftet Gesperrt Verschoben Hardware
tasmotascript
27 Beiträge 7 Kommentatoren 7.2k Aufrufe 10 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • WalW Offline
    WalW Offline
    Wal
    Developer
    schrieb am zuletzt editiert von Wal
    #21

    Für das Tuya-Thermostat was neues. Ich konnte jetzt die MQTT-Objekte direkt abonnieren, deshalb ein abgeändertes Skript.
    Tasmotaskript Firmware Version 9.1.0.1 als Download hinzugefügt. Es funktioniert bis auf die Heizzeiten alles, die müssen am Thermostat eingegeben oder über ioBroker gesteuert werden. Wichtig für das Skript ist, das ein eindeutiger Name als Topic in den MQTT-Einstellungen angegeben wird z.B. "Wohnzimmer".

    Gruß
    Walter

    DoorIO-Adapter
    wioBrowser-Adapter und wioBrowser

    1 Antwort Letzte Antwort
    0
    • WalW Offline
      WalW Offline
      Wal
      Developer
      schrieb am zuletzt editiert von
      #22

      Habe mir den BRESSER Smart Home 7-Kanal Tuya Thermo-Hygrometer geholt.
      Es können bis zu 7 externe Sensoren angelernt werden.
      Tuya-Convert habe ich nicht getestet, sondern gleich seriell Tasmota geflasht und in den Sonoff-Adapter eingebunden.
      Bresser2.png Bresser1.png

      Skript:

      >D
      tin=0
      tout1=0
      tout2=0
      tout3=0
      tout4=0
      tout5=0
      tout6=0
      tout7=0
      hin=0
      hout1=0
      hout2=0
      hout3=0
      hout4=0
      hout5=0
      hout6=0
      hout7=0
      >E
      tin=TuyaReceived#DpType2Id1/10
      hin=TuyaReceived#DpType2Id2
      tout1=TuyaReceived#DpType2Id102/10
      hout1=TuyaReceived#DpType2Id103
      tout2=TuyaReceived#DpType2Id104/10
      hout2=TuyaReceived#DpType2Id105
      tout3=TuyaReceived#DpType2Id106/10
      hout3=TuyaReceived#DpType2Id107
      tout4=TuyaReceived#DpType2Id108/10
      hout4=TuyaReceived#DpType2Id109
      tout5=TuyaReceived#DpType2Id110/10
      hout5=TuyaReceived#DpType2Id111
      tout6=TuyaReceived#DpType2Id112/10
      hout6=TuyaReceived#DpType2Id113
      tout7=TuyaReceived#DpType2Id114/10
      hout7=TuyaReceived#DpType2Id115
      >T
      if chg[tin]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Indoor.Temperature":%1tin%}
      }
      if chg[hin]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Indoor.Humidity":%1hin%}
      }
      if chg[tout1]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_1":%1tout1%}
      }
      if chg[hout1]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_1":%1hout1%}
      }
      if chg[tout2]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_2":%1tout2%}
      }
      if chg[hout2]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_2":%1hout2%}
      }
      if chg[tout3]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_3":%1tout3%}
      }
      if chg[hout3]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_3":%1hout3%}
      }
      if chg[tout4]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_4":%1tout4%}
      }
      if chg[hout4]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_4":%1hout4%}
      }
      if chg[tout5]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_5":%1tout5%}
      }
      if chg[hout5]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_5":%1hout5%}
      }
      if chg[tout6]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_6":%1tout6%}
      }
      if chg[hout6]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_6":%1hout6%}
      }
      if chg[tout7]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_7":%1tout7%}
      }
      if chg[hout7]>0 {
      =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_7":%1hout7%}
      }
      >W
      TempIndoor{m} %1tin% °C
      HumIndoor{m} %0hin% %%
      TempOutdoor1{m} %1tout1% °C
      HumOutdoor1{m} %0hout1% %%
      TempOutdoor2{m} %1tout2% °C
      HumOutdoor2{m} %0hout2% %%
      TempOutdoor3{m} %1tout3% °C
      HumOutdoor3{m} %0hout3% %%
      TempOutdoor4{m} %1tout4% °C
      HumOutdoor4{m} %0hout4% %%
      TempOutdoor5{m} %1tout5% °C
      HumOutdoor5{m} %0hout5% %%
      TempOutdoor6{m} %1tout6% °C
      HumOutdoor6{m} %0hout6% %%
      TempOutdoor7{m} %1tout7% °C
      HumOutdoor7{m} %0hout7% %%
      

      Gruß
      Walter

      DoorIO-Adapter
      wioBrowser-Adapter und wioBrowser

      F 1 Antwort Letzte Antwort
      0
      • WalW Wal

        Habe mir den BRESSER Smart Home 7-Kanal Tuya Thermo-Hygrometer geholt.
        Es können bis zu 7 externe Sensoren angelernt werden.
        Tuya-Convert habe ich nicht getestet, sondern gleich seriell Tasmota geflasht und in den Sonoff-Adapter eingebunden.
        Bresser2.png Bresser1.png

        Skript:

        >D
        tin=0
        tout1=0
        tout2=0
        tout3=0
        tout4=0
        tout5=0
        tout6=0
        tout7=0
        hin=0
        hout1=0
        hout2=0
        hout3=0
        hout4=0
        hout5=0
        hout6=0
        hout7=0
        >E
        tin=TuyaReceived#DpType2Id1/10
        hin=TuyaReceived#DpType2Id2
        tout1=TuyaReceived#DpType2Id102/10
        hout1=TuyaReceived#DpType2Id103
        tout2=TuyaReceived#DpType2Id104/10
        hout2=TuyaReceived#DpType2Id105
        tout3=TuyaReceived#DpType2Id106/10
        hout3=TuyaReceived#DpType2Id107
        tout4=TuyaReceived#DpType2Id108/10
        hout4=TuyaReceived#DpType2Id109
        tout5=TuyaReceived#DpType2Id110/10
        hout5=TuyaReceived#DpType2Id111
        tout6=TuyaReceived#DpType2Id112/10
        hout6=TuyaReceived#DpType2Id113
        tout7=TuyaReceived#DpType2Id114/10
        hout7=TuyaReceived#DpType2Id115
        >T
        if chg[tin]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Indoor.Temperature":%1tin%}
        }
        if chg[hin]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Indoor.Humidity":%1hin%}
        }
        if chg[tout1]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_1":%1tout1%}
        }
        if chg[hout1]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_1":%1hout1%}
        }
        if chg[tout2]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_2":%1tout2%}
        }
        if chg[hout2]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_2":%1hout2%}
        }
        if chg[tout3]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_3":%1tout3%}
        }
        if chg[hout3]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_3":%1hout3%}
        }
        if chg[tout4]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_4":%1tout4%}
        }
        if chg[hout4]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_4":%1hout4%}
        }
        if chg[tout5]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_5":%1tout5%}
        }
        if chg[hout5]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_5":%1hout5%}
        }
        if chg[tout6]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_6":%1tout6%}
        }
        if chg[hout6]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_6":%1hout6%}
        }
        if chg[tout7]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Temperature_7":%1tout7%}
        }
        if chg[hout7]>0 {
        =>publish stat/%topic%/RESULT {"Sensor.Outdoor.Humidity_7":%1hout7%}
        }
        >W
        TempIndoor{m} %1tin% °C
        HumIndoor{m} %0hin% %%
        TempOutdoor1{m} %1tout1% °C
        HumOutdoor1{m} %0hout1% %%
        TempOutdoor2{m} %1tout2% °C
        HumOutdoor2{m} %0hout2% %%
        TempOutdoor3{m} %1tout3% °C
        HumOutdoor3{m} %0hout3% %%
        TempOutdoor4{m} %1tout4% °C
        HumOutdoor4{m} %0hout4% %%
        TempOutdoor5{m} %1tout5% °C
        HumOutdoor5{m} %0hout5% %%
        TempOutdoor6{m} %1tout6% °C
        HumOutdoor6{m} %0hout6% %%
        TempOutdoor7{m} %1tout7% °C
        HumOutdoor7{m} %0hout7% %%
        
        F Offline
        F Offline
        Flatlander
        schrieb am zuletzt editiert von
        #23

        @wal Hallo Walter, wie hast Du denn eine Wetterstation geflasht ?
        Ich beziehe mich aus Deinen Post vom 6.11.22. Den hatte ich gefunden, da ich auf der Suche nach einer Lösung bin, die Werte meine Wetterstation einzulesen.

        WalW 1 Antwort Letzte Antwort
        0
        • F Flatlander

          @wal Hallo Walter, wie hast Du denn eine Wetterstation geflasht ?
          Ich beziehe mich aus Deinen Post vom 6.11.22. Den hatte ich gefunden, da ich auf der Suche nach einer Lösung bin, die Werte meine Wetterstation einzulesen.

          WalW Offline
          WalW Offline
          Wal
          Developer
          schrieb am zuletzt editiert von Wal
          #24

          @flatlander ,
          ganz normal mit einem usb seriell stick.
          Hier die blakadder Seite ganz unten ist das pinout.

          edit: geht aber auch mittlerweile ohne flashen mit dem Tuya Adapter.

          Gruß
          Walter

          DoorIO-Adapter
          wioBrowser-Adapter und wioBrowser

          F 1 Antwort Letzte Antwort
          0
          • WalW Wal

            @flatlander ,
            ganz normal mit einem usb seriell stick.
            Hier die blakadder Seite ganz unten ist das pinout.

            edit: geht aber auch mittlerweile ohne flashen mit dem Tuya Adapter.

            F Offline
            F Offline
            Flatlander
            schrieb am zuletzt editiert von
            #25

            @wal Aha, vielen Dank. Aber ich blick's noch nicht recht: Ist das das Pinout des Chips im Bresser ?
            Wie bist Du da physisch rangekommen ?
            Gruß Tom.

            WalW 1 Antwort Letzte Antwort
            0
            • F Flatlander

              @wal Aha, vielen Dank. Aber ich blick's noch nicht recht: Ist das das Pinout des Chips im Bresser ?
              Wie bist Du da physisch rangekommen ?
              Gruß Tom.

              WalW Offline
              WalW Offline
              Wal
              Developer
              schrieb am zuletzt editiert von
              #26

              @flatlander ,
              aufgeschraubt. ;-)

              Gruß
              Walter

              DoorIO-Adapter
              wioBrowser-Adapter und wioBrowser

              F 1 Antwort Letzte Antwort
              0
              • WalW Wal

                @flatlander ,
                aufgeschraubt. ;-)

                F Offline
                F Offline
                Flatlander
                schrieb am zuletzt editiert von
                #27

                @wal OK, sollte nicht so schwer sein. Und dann lacht mich gleich der Chip an ?
                Gruß Tom.

                1 Antwort Letzte Antwort
                0
                Antworten
                • In einem neuen Thema antworten
                Anmelden zum Antworten
                • Älteste zuerst
                • Neuste zuerst
                • Meiste Stimmen


                Support us

                ioBroker
                Community Adapters
                Donate

                626

                Online

                32.4k

                Benutzer

                81.5k

                Themen

                1.3m

                Beiträge
                Community
                Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                ioBroker Community 2014-2025
                logo
                • Anmelden

                • Du hast noch kein Konto? Registrieren

                • Anmelden oder registrieren, um zu suchen
                • Erster Beitrag
                  Letzter Beitrag
                0
                • Home
                • Aktuell
                • Tags
                • Ungelesen 0
                • Kategorien
                • Unreplied
                • Beliebt
                • GitHub
                • Docu
                • Hilfe