Table of Contents
- About The Project
- Getting Started
- Contributing
- License
- Contact
In order to use this app you need a RESOL heat exchanger system with a VBus/Lan adapter. This small node application allows you to integrate your RESOL system into any home automation system like HomeAssistant with a bit of work.
In order to use the application you need node.js and npm installed on your system OR you could user the provided Dockerfile to build a docker image.
-
Clone the repo
git clone https://github.com/CoMPlest/resol-json.git
-
Install any dependencies with npm
cd resol-json npm install
-
Edit the configuration file
src/config.js
const config = { httpPort: 3333, loggingInterval: 10000, loggingFilename: path.resolve(__dirname, 'live-data.json'), /* Here you can specify a live-data file */ connectionClassName: 'TcpConnection', connectionOptions: { host: '<YOUR_VBUS_IP>', password: 'vbus', /* Default password should by vbus */ } };
-
Start your application
npm start
-
Go to
http://localhost:3333/api/v1/live-data
to see live data
Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the GPLv3 License. See LICENSE.txt
for more information.
AAron Szekelyhidi - [email protected]
Project Link: https://github.com/CoMPlest/resol-json