Skip to content
  • Home
  • 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
ioBroker Logo

Community Forum

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

NEWS

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    22
    1
    1.2k

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

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    14
    1
    2.5k

Geräte die laufen mit Tasmota Script

Scheduled Pinned Locked Moved Hardware
tasmotascript
27 Posts 7 Posters 7.2k Views 10 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.
  • WalW Offline
    WalW Offline
    Wal
    Developer
    wrote on last edited by 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 Reply Last reply
    0
    • WalW Offline
      WalW Offline
      Wal
      Developer
      wrote on last edited by
      #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 Reply Last reply
      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
        wrote on last edited by
        #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 Reply Last reply
        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
          wrote on last edited by 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 Reply Last reply
          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
            wrote on last edited by
            #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 Reply Last reply
            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
              wrote on last edited by
              #26

              @flatlander ,
              aufgeschraubt. ;-)

              Gruß
              Walter

              DoorIO-Adapter
              wioBrowser-Adapter und wioBrowser

              F 1 Reply Last reply
              0
              • WalW Wal

                @flatlander ,
                aufgeschraubt. ;-)

                F Offline
                F Offline
                Flatlander
                wrote on last edited by
                #27

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

                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

                352

                Online

                32.5k

                Users

                81.7k

                Topics

                1.3m

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

                • Don't have an account? Register

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