Code Monkey home page Code Monkey logo

Comments (4)

gchenuet avatar gchenuet commented on September 27, 2024

Hi @shaman79,

I'll check this issue and keep you in touch.
Thanks,

Guillaume

from nest-datagraph.

shaman79 avatar shaman79 commented on September 27, 2024

Hi @gchenuet, can it be that the problem is caused by different sampling period? I am polling every 5 minutes, not every hour as suggested in install procedure. Thanks.

from nest-datagraph.

fusenuk avatar fusenuk commented on September 27, 2024

This is due to the 24 hour polling period being assumed in the PHP files such as getHeat.php and getPresence.php

Example line of code is

$sql_array["rows"][] = array("c" => array(array("v" => $date_array), array("v" => intval($row["auto_away"])), array("v" => (24 - $row["auto_away"]))));

which if you are polling every 5 minutes like myself and @shaman79 shaman79 are then you need to divide $row["auto_away"] by 12 so it turns into

$sql_array["rows"][] = array("c" => array(array("v" => $date_array), array("v" => round($row["auto_away"] / 12, 2)), array("v" => (24 - round($row["nest_heat_state"] / 12, 2)))));

A proper way would be to have the polling period set in the config file and then do a calculation for how many polling intervals go into 24 hours then divide the value by that calculated number.

from nest-datagraph.

gchenuet avatar gchenuet commented on September 27, 2024

I haven't time (and Nest Thermostat) to maintain this project.
Feel free to open a PR to fix it :)

Thanks.

from nest-datagraph.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.