homebridge-vallox
v1.0.30
Published
A short description about what your plugin does.
Readme
Homebridge Vallox Plugin

This pluging adds your Vallox ventilation unit to HomeKit.
Tested with ValloPlus 270 MV.
Install Development Dependencies
Using a terminal, navigate to the project folder and run this command to install the development dependencies:
npm installBuild Plugin
TypeScript needs to be compiled into JavaScript before it can run. The following command will compile the contents of your src directory and put the resulting code into the dist folder.
npm run buildLink To Homebridge
Run this command so your global install of Homebridge can discover the plugin in your development environment:
npm linkYou can now start Homebridge, use the -D flag so you can see debug log messages in your plugin:
homebridge -DVersioning Your Plugin
Given a version number MAJOR.MINOR.PATCH, such as 1.4.3, increment the:
- MAJOR version when you make breaking changes to your plugin,
- MINOR version when you add functionality in a backwards compatible manner, and
- PATCH version when you make backwards compatible bug fixes.
You can use the npm version command to help you with this:
# major update / breaking changes
npm version major
# minor update / new features
npm version update
# patch / bugfixes
npm version patchPublish Package
When you are ready to publish your plugin to npm, make sure you have removed the private attribute from the package.json file then run:
npm publishIf you are publishing a scoped plugin, i.e. @username/homebridge-xxx you will need to add --access=public to command the first time you publish.
