npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

pimatic-solvisremote

v0.0.5

Published

Reading SolvisRemote and showing values in pimatic

Readme

pimatic-solvisremote

SolvisRemote plugin for Pimatic to get values from a SolvisMax solar heating system

The plugin is only tested with a SolvisMax 6 gas with solar panels. It should also work with a new SolvisMax 7.

Plugin Configuration

Edit your config.json and include the following lines in the plugins section.

{
  "plugin": "solvisremote"
}

It is possible to enable debugging

{
  "plugin": "solvisremote",
  "debug": true
}

Device Configuration

Devices must be added manually to the device section of your pimatic config.

Global device configuration

{
  "id": "SolvisRemote",
  "name": "SolvisRemote",
  "class": "SolvisRemotedevice",
  "ip": "192.168.178.61",
  "user": "solvis",
  "pass": "solvis",
  "interval": 10,
  "xLink": "http://192.168.178.61/schema.html",
  ...
}

Sensor/In/Out/State configuration

To get values with pimatic like temperature from "S1", add following lines after "xLink":

"s1": {
  "label": "Warmwasserpuffer"
},

To get the state of the solar pump add these lines:

"a1_state": {
  "label": "Solaranlage"
},

Only added values are displayed. So it is possible to build your own SolvisMax environment. All possible values are listet in device-config-schema.

The "label"-attribute makes your values more readable. Best way to collect the data for your environment is to open SolvisRemote in a browser and open the system scheme in the mobile view. Have a look at the sourcecode of the "schemam.html". Scroll down to the BODY-tag and you'll find the needed information.

Full example

Here is an full example of a SolvisMax 6 with gas and solarpanels

{
  "id": "SolvisRemote",
  "name": "SolvisRemote",
  "class": "SolvisRemotedevice",
  "ip": "192.168.178.61",
  "user": "solvis",
  "pass": "solvis",
  "interval": 10,
  "xLink": "http://192.168.178.61/schema.html",
  "s1": {
    "label": "Warmwasserpuffer"
  },
  "s2": {
    "label": "Warmwassertemperatur"
  },
  "s3": {
    "label": "Speicherreferenz"
  },
  "s4": {
    "label": "Heizungspuffer_oben"
  },
  "s5": {
    "label": "Solarvorlauftemperatur"
  },
  "s6": {
    "label": "Solarrücklauftemperatur"
  },
  "s8": {
    "label": "Kollektortemperatur"
  },
  "s9": {
    "label": "Heizungspuffer_unten"
  },
  "s10": {
    "label": "Außentemperatur"
  },
  "s11": {
    "label": "Zirkulationstemperatur"
  },
  "s12": {
    "label": "Vorlauftemperatur"
  },
  "s18": {
    "label": "Warmwasser-Durchfluss"
  },
  "a1_state": {
    "label": "Solaranlage"
  },
  "a2_state": {
    "label": "Warmwasserpumpe"
  },
  "a3_state": {
    "label": "Heizkreispumpe"
  },
  "a5_state": {
    "label": "Zirkulationspumpe"
  },
  "a12_state": {
    "label": "Nachheizung"
  }
}

Useful tips, I think ;-)

Rules

It's possible to write own alarm rules like sending a mail if solar buffer is full. It looks like:

{
  "id": "alarm_solarpuffer",
  "name": "Alarm_Solarpuffer",
  "rule": "when $SolvisRemote.s1 >= 90 and $SolvisRemote.s3 >= 80 then execute \"curl -s --digest http://solvis_user:solvis_pass@solvis_ip/display.bmp -o /tmp/display.bmp && echo '<img src=cid:display.bmp>' | mutt -s 'SolvisMax - Solarpuffer voll' -e 'set content_type=text/html' -a /tmp/display.bmp -- [email protected]\"",
  "active": true,
  "logging": true
},

You just need the pimatic-shell-execute plugin, mutt as mailer and curl. The example greps the display.bmp with curl from SolvisMax and send it as attachment with mutt to the given mail address.

IFrame

Plugin pimatic-iframe makes it easy to get an overview of your heating system

"http://solvis_ip/schema.html" shows the environment and values from your SolvisMax. No refresh needed. Zoom to 0.6 works for me.

"http://solvis_ip/display.bmp" shows the current display view of your SolvisMax. Refresh to 10 seconds works for me.