Code Monkey home page Code Monkey logo

Comments (4)

parnic avatar parnic commented on June 3, 2024

Each message's response is +1 from the message ID. If you'll notice SLSetHeatSetPoint has a getResponseId() that returns MSG_ID (12528) + 1, which is 12529. index.js catches that and fires the setPointChanged event with the parsed response from the equipment:

this.emit('setPointChanged', new messages.SLSetHeatSetPointMessage(msg));

Can you share the code you're using that isn't working properly? My expectation is that setPointChanged's argument has the values you're looking for, but there may be a bug.

from node-screenlogic.

parnic avatar parnic commented on June 3, 2024

Note that if you're still using code similar to #64, that won't work as the library functions off named events rather than promises currently. https://github.com/parnic/node-screenlogic/blob/main/example.js shows how to interact with the library.

from node-screenlogic.

alonweinstein avatar alonweinstein commented on June 3, 2024

This is running in an AWS lambda, so there's some additional code around the relevant code itself but I'm pasting it as-is here to give context:

    const body = JSON.parse(event.body)
    const { userName, password, bodyType, temperature } = body;
    
    const remote = new ScreenLogic.RemoteLogin(userName);

    const p = new Promise(( resolve, reject)  => {
        remote.on('gatewayFound', function(unit) {
            remote.close();
            
            if (unit && unit.gatewayFound) {
              console.log('unit ' + remote.systemName + ' found at ' + unit.ipAddr + ':' + unit.port);
              const client = new ScreenLogic.UnitConnection(unit.port, unit.ipAddr, password);
              client.on('loggedIn', function() {
                client.setSetPoint(0, bodyType, temperature);
              }).on('setPointChanged', function(ev) {
                // console.log(JSON.stringify(ev));
                client.close();
                
                resolve({
                    statusCode: 200,
                    headers: { "Content-Type": "text/plain" },
                    body: JSON.stringify(ev)
                });
              })
              client.connect();
            } else {
              console.log('no unit found by that name');
            }
          });
          
          remote.connect();
    });

    return p;

What I'm doing:

  • Creating a RemoteLogin
  • Finding the unit
  • Connecting to the unit remotely
  • Waiting for the loggedIn event
  • Call setSetPoint
  • Waiting for the setPointChanged event -- which is where I get non-parsed response

from node-screenlogic.

parnic avatar parnic commented on June 3, 2024

Ah, ok, I see what's going on. This event doesn't provide the new temperature value in its response. From the Pentair equipment, we get the message in your initial post:

[0,0,241,48,0,0,0,0]

The first 2 being the sender id, 0, the second 2 being the message id little-endian (48 << 8 + 241 = 12529), and the final 4 being the size of the payload for the response (0). To get the new temperature, you would probably want to issue a getPoolStatus() and extract the values from there.

from node-screenlogic.

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.