node-homeassistant
node-homeassistant copied to clipboard
Node.js wrapper for the home-assistant websocket api
Tiny issue in the subscribe function, I won't bother making a PR for it. [Line 145](https://github.com/mawalu/node-homeassistant/blob/af8408a905c6a6e4af19a0a548c1b579041b4271/index.js#L145) is ```if(options.event) data.event_type = event``` and should be ```if(options.event) data.event_type = options.event``` When I...
Bumps [ws](https://github.com/websockets/ws) from 6.0.0 to 7.4.6. Release notes Sourced from ws's releases. 7.4.6 Bug fixes Fixed a ReDoS vulnerability (00c425ec). A specially crafted value of the Sec-Websocket-Protocol header could be...
I am trying this but I can't get boolean or input_text to update/turn on/off.. ``` ha.call({ domain: 'input_boolean', service: 'input_boolean.turn_off', entity_id: 'input_boolean.testing' }) ``` EDIT: Sorry.. i figrured it out...