Code Monkey home page Code Monkey logo

Comments (2)

aklambeth avatar aklambeth commented on July 2, 2024

The underlying Hive api isn't very intuitive when it comes to setting the water to always off, it looks like the setState method can't do this but there is an onOffState method which can. After some investigating I found that the following code will do what you want.


var Hive = require('bg-hive-api');
var hive = new Hive('your login', 'your password');
var HotWaterControl = require('bg-hive-api/hotWaterControl');

hive.on('login', function (context) {

    // Create an instance of the hot water controller
    var water = new HotWaterControl(context);

    water.once('accepted', function (response) {
        console.log('Water is off');
        hive.Logout();
    });

    water.Call({
        'onOffState': {
            'PUT': {
                'onOffState': 'OFF'
            }
        }
    });
    
});

//Log in
hive.Login();

Counter-intuitively setting the onOffState to On will set the water back to Scheduled therefore to explicitly set the water to on use
water.SetState(water.Mode.Manual);

And back to schedule
water.SetState(water.Mode.Schedule);

as per the documentation. I'll need to handle this is in code so the setState method works as expected.

from bg-hive-api.

jonbev avatar jonbev commented on July 2, 2024

Thanks for getting back to me, really appreciate your work on this.

from bg-hive-api.

Related Issues (7)

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.