• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Tado module?

Scheduled Pinned Locked Moved Requests
35 Posts 5 Posters 27.2k Views 5 Watching
Loading More Posts
  • 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.
  • C Offline
    charliwest
    last edited by Nov 16, 2016, 12:36 PM

    I tweaked the bash script to the api @krisalexroberts suggested as it takes a lot less to do it, and at @dinkybluebug245’s suggestion added the extra readings…although not sure how the pi will read the hex values? But it works on mac

    USERNAME=you@your.email
    PASSWORD=yourPassword
    curl --silent “https://my.tado.com/mobile/1.9/getCurrentState?username=“$USERNAME”&password=“$PASSWORD”” > temp
    insideTemp=$(grep -o “insideTemp." temp| awk ‘{print substr($1,13,4)}’)
    setPointTemp=$(grep -o "setPointTemp.
    ” temp| awk ‘{print substr($1,15,4)}’)
    heatingOn=$(if grep -q “"heatingOn":true” temp; then
    echo ‘\xf0\x9f\x94\xa5’
    else
    echo ‘\xf0\x9f\x9a\xab’
    fi)
    echo “$insideTemp” / “$setPointTemp” / “$heatingOn”

    D 2 Replies Last reply Nov 16, 2016, 4:11 PM Reply Quote 0
    • D Offline
      dinkybluebug245 @charliwest
      last edited by Nov 16, 2016, 4:11 PM

      @charliwest - so how does this all get written up as a magic mirror module? do you know?

      1 Reply Last reply Reply Quote 0
      • C Offline
        charliwest
        last edited by Nov 16, 2016, 4:13 PM

        Yeah no idea about nodejs stuff, spoke to a friend today who is hoping to build a magicmirror (I still havent had time to set mine up at all). He is keen to have a look at this with me. We will hopefully sit down over a couple of beers next week and see if we can bash something out.
        Anyone else who already knows more about modules happy for them to take the above and make it work…
        @dinkybluebug245 did you test the above, even though only a bash script, still pretty cool

        S 1 Reply Last reply Nov 16, 2016, 4:36 PM Reply Quote 0
        • S Offline
          strawberry 3.141 Project Sponsor Module Developer @charliwest
          last edited by Nov 16, 2016, 4:36 PM

          @charliwest I would have some sparetime tonight, therefore I could help out if someone with a tado acc would like to join me

          Please create a github issue if you need help, so I can keep track

          K 1 Reply Last reply Nov 16, 2016, 5:20 PM Reply Quote 0
          • K Offline
            krisalexroberts @strawberry 3.141
            last edited by Nov 16, 2016, 5:20 PM

            @strawberry-3.141 i have availability tonight

            D 1 Reply Last reply Nov 16, 2016, 9:13 PM Reply Quote 0
            • D Offline
              dinkybluebug245 @krisalexroberts
              last edited by Nov 16, 2016, 9:13 PM

              @strawberry-3-141 - Hello - I can help over the weekend, and next week - evenings this week Im busy

              1 Reply Last reply Reply Quote 0
              • S Offline
                strawberry 3.141 Project Sponsor Module Developer
                last edited by Nov 17, 2016, 10:01 PM

                would be great to get someone with other devices than a heating unit

                Please create a github issue if you need help, so I can keep track

                D K 2 Replies Last reply Nov 17, 2016, 10:06 PM Reply Quote 0
                • D Offline
                  dinkybluebug245 @strawberry 3.141
                  last edited by Nov 17, 2016, 10:06 PM

                  @strawberry-3.141 can’t help with that. But if you need some else to test tado heating api. I can help.

                  1 Reply Last reply Reply Quote 0
                  • K Offline
                    krisalexroberts @strawberry 3.141
                    last edited by Nov 17, 2016, 10:09 PM

                    @strawberry-3.141 I’ll be getting radiator thermostats in the next few weeks but no cooling

                    1 Reply Last reply Reply Quote 1
                    • D Offline
                      dinkybluebug245 @charliwest
                      last edited by dinkybluebug245 Nov 18, 2016, 8:10 PM Nov 18, 2016, 8:08 PM

                      @charliwest This didnt work for me…

                      I got this error:

                      tado.sh: line 5: unexpected EOF while looking for matching `"’
                      tado.sh: line 12: syntax error: unexpected end of file

                      the contents of tado.sh, is:

                      USERNAME=xxx
                      PASSWORD=xxxx
                      curl --silent “https://my.tado.com/mobile/1.9/getCurrentState?username=“$USERNAME”&password=“$PASSWORD”” > temp
                      insideTemp=$(grep -o “insideTemp." temp| awk ‘{print substr($1,13,4)}’)
                      setPointTemp=$(grep -o "setPointTemp.” temp| awk ‘{print substr($1,15,4)}’)
                      heatingOn=$(if grep -q ““heatingOn”:true” temp; then
                      echo '\xf0\x9f\x94\xa5’
                      else
                      echo '\xf0\x9f\x9a\xab’
                      fi)
                      echo “$insideTemp” / “$setPointTemp” / “$heatingOn”

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 2 / 4
                      2 / 4
                      • First post
                        11/35
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy