- Connects to various RESOL VBus devices
- Processes live and recorded VBus data streams
- Discovers LAN-enabled RESOL devices on the local network
- Allows to send parameterization commands to a controller
- Synchronizes recorded VBus data from a RESOL datalogger to your local file system
- Converts recorded VBus data into human or machine readable formats, optionally allowing to filter the output
You can find the work-in-progress documentation for this project here:
http://danielwippermann.github.io/resol-vbus/
The JSDoc-generated documentation is located here:
http://danielwippermann.github.io/resol-vbus/jsdoc/classes.list.html
If you want to use this module in your own application, you can just install it from the npm registry:
⌘ npm install --save resol-vbus
If you want to contribute to it you might want to check out the latest version from GitHub:
⌘ git clone https://github.com/danielwippermann/resol-vbus.git
⌘ cd resol-vbus
⌘ npm install
⌘ node examples/<name>/index.js
To start a single run of the test suite just enter the following command into your shell:
⌘ gulp
In addition to that the project is configured to watch its own files for modification and rerun the documentation generator and test suite every time you hit save on a file. To run that just enter the following command into your shell:
⌘ gulp watch
- All current RESOL controllers with VBus
- RESOL DL2 Datalogger
- RESOL DL3 Datalogger
- RESOL KM2 Communication module
- RESOL VBus/LAN interface adapter
- RESOL VBus/USB interface adapter
- RESOL VBus.net
- RESOL VBus Google Group
- RESOL VBus Protocol Specification
- RESOL VBus Packet List
- RESOL VBus Recording File Format
- RESOL VBus Specification File Format v1
- RESOL VBus over TCP Specification
- RESOL DL2 (v1) Data Download API
- RESOL DL2 (v2) & DL3 Data Download API
- The
FileSystemRecorder
class sometimes writes invalid JSON into its "SyncState.json" file causing it to not being able to restore and recover from that when the app using the recorder restarts (e.g. the "vbustouch-proxy" example). - The
ConfigurationOptimizers
do not yet detect the firmware version running on the controller to be configured. That sometimes causes configuration loads and saves to fail because unknown values are read from or written to (e.g. using the "customizer" example on a DeltaSol MX with firmware version 1.11 or below).
- Remove current
ConfigurationOptimizer
constructs in favor of RESOL's official support.
- This version contains several breaking changes! You have been warned...
- Refactor code to make use of ES2018 features (using Babel to back-support up to Node.js 6)
- Remove custom
Promise
implementation in favor of built-in, native one. Promise
return values no longer provide thefinally
anddone
methods.- Remove
utils.promise
,utils.Promise
andutils.cancelablePromise
. - Add
reportProgress
andcheckCanceled
options toConnectionCustomizer#transceive{Configuration,Value}
as a replacement to the previously usedcancelablePromise
solution.
- Add RESOL DeltaSol C configuration optimizer.
- Add support for VBus-over-TCP wrapped in TLS.
- Add
Buffer
support toConnection#(get|set)ValueById
for values larger than 32-bit. - Add
Connection#getCaps1
. - Add bulk value transaction support to
Connection
class. - Add support to generate and parse "type 9" comment records using
VBusRecordingConverter
. - Make it easier to create a
Specification
from aSpecificationFile
. - Extend
vbustouch-proxy
example with text data logging feature. - Update dependencies.
- Some minor bug fixes.
- Use VSF binary file to load VBus specification data
- Add support to read and write raw data in VBus recordings
- Extend
VBusRecordingConverter
to support fast topology-only scan - Code clean up
- Several minor bug fixes
- Update VBus specification data
- Several minor bug fixes
- Improve configuration optimizers and their discovery
- Update VBus specification data
- Add configuration optimizers for RESOL DeltaSol SLT
- Add BlockType support
- Update VBus specification data
- Add configuration optimizers for RESOL DeltaSol MX and BS/4 v2
- Add a simple JSON live data server example
- Add some documentation
- Several bug fixes
- Add
vbustouch-proxy
example - Add support for rounding floating point numbers
- Fix a floating point bug caused by
setRawValue
- Added support for setting packet field values
- Several bug fixes
- Finalized support for customizing controller configuration.
- Several bug fixes.
- Completed Recorder class by adding support for recording
- Added unit conversion to VBus specification
- Several bug fixes.
- Extended Converter and VBusRecordingConverter to support object mode in stream (for performance reason)
- Fixed several bugs
- Increased test coverage and completed documentation.
First release to the NPM registry.
- Thorsten Müller
- Paul Hanna
- Sabine Käß
RESOL, VBus, VBus.net and others are trademarks or registered trademarks of RESOL - Elektronische Regelungen GmbH.
All other trademarks are the property of their respective owners.
The MIT License (MIT)
Copyright (c) 2013-2018, Daniel Wippermann.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.