Skip to content

Commit

Permalink
Update jeedom-api.js
Browse files Browse the repository at this point in the history
  • Loading branch information
NebzHB authored Jan 20, 2024
1 parent 03ff16c commit 0a28971
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/jeedom-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -1031,6 +1031,15 @@ JeedomClient.prototype.ParseGenericType = function(EqLogic, cmds) {
}
result_cmd.services.windowMoto[i].slider = cmds[i];
break;
case 'WINDOW_MOVING' :
if (!result_cmd.services.windowMoto) {
result_cmd.services.windowMoto = [];
}
if (!result_cmd.services.windowMoto[i]) {
result_cmd.services.windowMoto[i] = {};
}
result_cmd.services.windowMoto[i].moving = cmds[i];
break;
/** ************* THERMOSTAT ***********************/
case 'THERMOSTAT_STATE' :
if (!result_cmd.services.thermostat) {
Expand Down

0 comments on commit 0a28971

Please sign in to comment.