• 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.

MMM-Tado wrong units

Scheduled Pinned Locked Moved Troubleshooting
28 Posts 3 Posters 4.0k Views 4 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.
  • S Offline
    sdetweil @Stoffbeuteluwe
    last edited by Jun 6, 2020, 5:16 AM

    @Stoffbeuteluwe weird… i’ll be back on in about 6 hours, do you know how to use the debugger?
    ctrl-shift-i on teh keyboard, select the sources tab, navigate the left tree to find the module and filename, click
    shows in middle window

    scroll down to one of the if (self.config.units lines (make sure u have that type unit in the tado data)
    click the number on the start of the line, it should turn blue

    hit refresh

    the code will stop there
    mouse over the self and a box will pop up showing what self points to, then config
    same… units should say metric

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    S 1 Reply Last reply Jun 7, 2020, 5:23 AM Reply Quote 0
    • S Offline
      sdetweil @Stoffbeuteluwe
      last edited by Jun 6, 2020, 5:17 AM

      @Stoffbeuteluwe said in MMM-Tado wrong units:

      but I am not sure with the line 26

      nothing… it will copy the system units to the module units info

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      1 Reply Last reply Reply Quote 0
      • W Offline
        WouterEekhout
        last edited by WouterEekhout Jun 6, 2020, 10:51 AM Jun 6, 2020, 10:49 AM

        @Stoffbeuteluwe I’ve updated the code with the suggestions of @sdetweil . For now I put it into a separate branch. If this solutions works for you, I will push it to the master branch.

        Execute the following:

        git pull
        git checkout incorrect_pointer_in_getdom
        

        Will you let us know if this solved your problem?

        S 1 Reply Last reply Jun 6, 2020, 6:56 PM Reply Quote 0
        • S Offline
          Stoffbeuteluwe Project Sponsor @WouterEekhout
          last edited by Jun 6, 2020, 6:56 PM

          @WouterEekhout sorry does not work
          98078648-D1EF-4A1B-B1F4-B0B0CB9913B5.jpeg

          Last login: Sat Jun  6 20:48:53 on ttys000
          patrickhahn@Patricks-Mini ~ % cd ~/MagicMirror/modules
          patrickhahn@Patricks-Mini modules % git clone https://github.com/WouterEekhout/MMM-Tado
          Cloning into 'MMM-Tado'...
          remote: Enumerating objects: 47, done.
          remote: Counting objects: 100% (47/47), done.
          remote: Compressing objects: 100% (39/39), done.
          remote: Total 152 (delta 22), reused 23 (delta 6), pack-reused 105
          Receiving objects: 100% (152/152), 841.64 KiB | 973.00 KiB/s, done.
          Resolving deltas: 100% (50/50), done.
          patrickhahn@Patricks-Mini modules % cd MMM-Tado
          patrickhahn@Patricks-Mini MMM-Tado % npm install
          npm WARN deprecated simple-oauth2@2.5.2: simple-oauth2 v2 is no longer supported. Please upgrade to v3 for further support
          npm WARN deprecated mkdirp@0.5.1: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)
          npm WARN deprecated wreck@14.2.0: This module has moved and is now available at @hapi/wreck. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.
          npm WARN deprecated boom@7.3.0: This module has moved and is now available at @hapi/boom. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.
          npm WARN deprecated bourne@1.1.2: This module has moved and is now available at @hapi/bourne. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.
          npm WARN deprecated hoek@6.1.3: This module has moved and is now available at @hapi/hoek. Please update your dependencies as this version is no longer maintained an may contain bugs and security issues.
          npm notice created a lockfile as package-lock.json. You should commit this file.
          added 42 packages from 446 contributors and audited 42 packages in 5.628s
          
          1 package is looking for funding
            run `npm fund` for details
          
          found 1 low severity vulnerability
            run `npm audit fix` to fix them, or `npm audit` for details
          patrickhahn@Patricks-Mini MMM-Tado % git pull
          git checkout incorrect_pointer_in_getdom
          Already up to date.
          Branch 'incorrect_pointer_in_getdom' set up to track remote branch 'incorrect_pointer_in_getdom' from 'origin'.
          Switched to a new branch 'incorrect_pointer_in_getdom'
          patrickhahn@Patricks-Mini MMM-Tado % 
          
          
          1 Reply Last reply Reply Quote 0
          • S Offline
            Stoffbeuteluwe Project Sponsor @sdetweil
            last edited by Jun 7, 2020, 5:23 AM

            @sdetweil it says undefined

            W 1 Reply Last reply Jun 7, 2020, 9:04 AM Reply Quote 0
            • W Offline
              WouterEekhout @Stoffbeuteluwe
              last edited by Jun 7, 2020, 9:04 AM

              @Stoffbeuteluwe I’m assuming self.config.units is undefined on line 26. If that is the case then MagicMirror is having trouble reading in your global units configuration. Are you experiencing the same problem with other modules?

              For your information, I am from the Netherlands and I also use the metric units. I tried your configurations settings from the following and it works for me.

              @Stoffbeuteluwe said in MMM-Tado wrong units:

              @sdetweil Hello, after module update same problem
              and your fix don’t work anymore…can you help me again?

              If you just want to get the module running and forget about problem replace line 26 to the following:

              this.config.units = 'metric';
              

              Be sure you are on the master branch before replacing.

              S 1 Reply Last reply Jun 7, 2020, 6:23 PM Reply Quote 0
              • S Offline
                Stoffbeuteluwe Project Sponsor @WouterEekhout
                last edited by Jun 7, 2020, 6:23 PM

                @WouterEekhout Hi my other modules work but this is not working and I don’t know why :thinking_face:
                I will try to change the line 26…thanks for you help

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 3
                • 3 / 3
                3 / 3
                • First post
                  26/28
                  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