koalazak / dorita980

Unofficial iRobot Roomba and Braava (i7/i7+, 980, 960, 900, e5, 690, 675, m6, etc) node.js library (SDK) to control your robot
MIT License
931 stars 147 forks source link

getRobotState last command shows regions as [Object] not full details #186

Closed dmz006 closed 3 months ago

dmz006 commented 3 months ago

Running the following: myRobotViaLocal.on('connect', init);

function init () { myRobotViaLocal.getRobotState(['batPct', 'bbchg3']).then((actualState) => { console.log(actualState); myRobotViaLocal.end(); }); }

I get the full state details but lastCommand (when last command submitted cleaning request for all regions in the house, individually selected): lastCommand: { command: 'start', initiator: 'rmtApp', time: 1710026220, ordered: 1, pmap_id: 'y2PgGOh8REGTkpKjo2vdcg', regions: [ [Object], [Object], [Object], [Object], [Object], [Object], [Object], [Object] ], user_pmapv_id: '230314T173508' },

This is on an s9+ - not sure easiest way to get firmware version info; but most command seem to run; and all other objects in stats expand out.

bloomkd46 commented 3 months ago

Try running

myRobotViaLocal.on('connect', init);

function init () {
myRobotViaLocal.getRobotState(['batPct', 'bbchg3']).then((actualState) => {
console.log(JSON.stringify(actualState, null, 2));
myRobotViaLocal.end();
});
}

you need to run JSON.stringify() to see the contents of the nested objects. (The extra 2 argument is to make the JSON easier to read)

dmz006 commented 3 months ago

That got it, thank you