Socket
Socket
Sign inDemoInstall

homematic-js-rpc

Package Overview
Dependencies
3
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    homematic-js-rpc

lightweight Javascript interface for Homematic XML-RPC


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Install size
216 kB
Created
Weekly downloads
 

Readme

Source

#homematic-js-rpc :house: lightweight Javascript interface for Homematic XML-RPC

npm version Dependency Status

npm install homematic-js-rpc

###Basic Usage

const homematic = new (require('homematic-js-rpc'))('20.1.0.50', '2001');
homematic.setValue("LEQ123456:1", "LEVEL", "0.3", (error, response) => {
});
homematic.getValue("LEQ123456:1", "LEVEL", (error,response) => {
});

###Tests Find more examples in "test" directory.

Enter you homematic server connection in package.json, and run some tests!

  "homematic": {
    "host": "192.168.0.10",
    "port": "2001",
    "devices": {
      "bedroomDimLight": "LEQ123456:1",
      "keymatic": "KEQ123456:1"
    }
  }

run a single test from commandline with:

mocha test/dimmer.spec.js -g "getValue should return 0"

Keywords

FAQs

Last updated on 09 Jan 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc