Nibe uplink binding

I tested and can change things like fan speed, general temperature and hotwater and the settings sticks.

Could I provide any kind of logs to assist or do anything else for that matter?

BR
/t

This will be wuite complicated. You will need to find out the URLs that are called from the website. This can be checked via the developer tools that are part of Google Chrome.

E.g. it looks like this for my NIBE VVM320 when I change the ventilation speed to “2”:

Alex,
Sorry for the delay.
This is what my system looks like when I change the fan to option 2 (30%)


I cannot see any difference. The binding uses the same API calls.

Hi,

I am using the NibeUplink binding for quite some time now to graph and tune my F1255 heatpump. But I am wondering if it is possible to set my roomtemperature setpoint?

The API docs indicate that those channels are available as writable channels (NIBE Uplink™)

Table of arameters that can be set by the user and will affect the operation of the system
Id Min Max Step size Description
hot_water_boost 0 1 1 Start a hot water boost, i.e. temporary lux, lasting 3 hours. Set to 1 to start, 0 to stop.
ventilation_boost 0 1 1 Start a ventilation boost, i.e. ventilation speed 4, lasting the system specific return time hours. Set to 1 to start, 0 to stop.
47008 -10 10 1 The parallell adjustment for climate system 4 when heating
47009 -10 10 1 The parallell adjustment for climate system 3 when heating
47010 -10 10 1 The parallell adjustment for climate system 2 when heating
47011 -10 10 1 The parallell adjustment for climate system 1 when heating
47395 5 30 0.5 The target room temperature for climate system 4 when heating
47396 5 30 0.5 The target room temperature for climate system 3 when heating
47397 5 30 0.5 The target room temperature for climate system 2 when heating
47398 5 30 0.5 The target room temperature for climate system 1 when heating
48491 -10 10 1 The parallell adjustment for climate system 8 when heating
48492 -10 10 1 The parallell adjustment for climate system 7 when heating
48493 -10 10 1 The parallell adjustment for climate system 6 when heating
48494 -10 10 1 The parallell adjustment for climate system 5 when heating
48680 5 30 0.5 The target room temperature for climate system 8 when heating
48681 5 30 0.5 The target room temperature for climate system 7 when heating
48682 5 30 0.5 The target room temperature for climate system 6 when heating
48683 5 30 0.5 The target room temperature for climate system 5 when heating
48732 -10 10 1 The parallell adjustment for climate system 8 when cooling
48733 -10 10 1 The parallell adjustment for climate system 7 when cooling
48734 -10 10 1 The parallell adjustment for climate system 6 when cooling
48735 -10 10 1 The parallell adjustment for climate system 5 when cooling
48736 -10 10 1 The parallell adjustment for climate system 4 when cooling
48737 -10 10 1 The parallell adjustment for climate system 3 when cooling
48738 -10 10 1 The parallell adjustment for climate system 2 when cooling
48739 -10 10 1 The parallell adjustment for climate system 1 when cooling
48778 5 35 0.5 The target room temperature for climate system 8 when cooling
48779 5 35 0.5 The target room temperature for climate system 7 when cooling
48780 5 35 0.5 The target room temperature for climate system 6 when cooling
48781 5 35 0.5 The target room temperature for climate system 5 when cooling
48782 5 35 0.5 The target room temperature for climate system 4 when cooling
48783 5 35 0.5 The target room temperature for climate system 3 when cooling
48784 5 35 0.5 The target room temperature for climate system 2 when cooling
48785 5 35 0.5 The target room temperature for climate system 1 when cooling

I’ve also tried adding one as a custom channel, which let’s me read the value.

  - id: climate#47398
    channelTypeUID: nibeuplink:type-number-scale10
    label: Room Sensor Setpoint S1
    description: The target room temperature for climate system 1 when heating
    configuration: {}

Would it be possible to add these channels by default, or create a custom writable channel?

Thanks for all the effort that already went into this binding!

EDIT

Wait I am mixing up API’s! Those are the channels from the 3rd party API they support.

Setting the heating and cooling setpoints should also be possible through the NibeUplink interface/API. For a single climate system it looks like this:
path: /Manage/1.1.1
input id: 47398

It should accept inputs from 5 - 30 degrees with 0.5 degree increments (anything other seems to be rounded to the nearest .5)
For cooling the path is /Manage/1.1.2, input id: 48785, also 0.5 degree increments from 5 - 35 degrees.

^ Marcus

Hi @AlexF,

any thoughts about update the Binding to support MyUplink?

I’m using your current Binding with my F2040-8/VVM320 and ERS20-250, but I received an Email from NIBE, that I could migrate to the newer MyUplink instead of Uplink.
I think they want to support only one firmware and Webportal in the future.

Thanks a lot and keep up the great Work :slight_smile:
Best regards
Tobias

Hi @AzraelMasters

I just received the same notification (maybe because I have the same system).
Unfortunately I did not find much information about the API used by myUplink. I would consider migration if this is possible without any loss of functionality. I know that the “official” API of NibeUplink is very limited this is why I used the internal API that is used by the web frontend. This was quite a lot of effort because I had to reverse engineer without any official documentation.

At the moment my available time is very limited and thus I would only go forward if I have some rough idea how this could be done.

2 Likes

Had some deeper look into it:

The API (Swagger UI) looks quite promising but unfortunately there is no list of channels/parameters that can be read or written. So one need to migrate to retrieve data and I am afraid there is no way back once you did it.

Regarding authentication it seems that there is the option to login without user interaction (Credit Credentials Grant Flow (CCG)) which is also the preferred solution from my point of view. At least I do not want manual interaction every time I restart openhab.

@pacive I checked your binding but you are also still using NibeUplink according to the API Urls you are calling? I am looking for somebody who is already using the new API.

I have looked at that API as well, but like you I have no way to test it as my F750 is only able to connect to the old one (I haven’t gotten any email about upgrading).

But if it works like the old API you can get all parameter IDs and create the channels dynamically. The old one has some quirks regarding how it sends the values however, all values are sent as integers which needs to be scaled, but you don’t get any info on the factor to use. I had to solve that with a combination of some awkward heuristics and static configuration.

If they have solved that (and some other things) better with the new API it should be rather straight forward to create a binding, but I would hesitate to do it blind without being able to test with a real system.

I haven’t done this before. Need to have a look at your binding or some other one which has implemented this.

The old private API had the same issue. It looks like the new API has a v3 endpoint which retrievs scaled data. But even if not this could be managed some way. Based on the datatype it was quite easy to determine if the value is unscaled or scaled by 10 or by 100.

Same for me. It would be great if guys from nibe would at least have some kind of mock system which behaves like a real system. That would life make much easier.

Hi - just some additional hints:

You can register at myUplink with a different e-mail/account and the login here:
click (dev myUplink)

Besides the Swagger already mentioned above, there is some more introductional documentation like authorisation methods and how to retrieve parameters, data points, settings (myUplink Developer Web).

Also found some Postman/mock stuff: click

Hope, that infos may help a bit - a new binding supporting myUplink is much appreciated :slight_smile:

1 Like

Creating a prototype binding wouldn’t be that difficult, the problems comes when testing how it works in practice if we can’t get any real data from the API.

I have already moved over to myuplink. Would be happy to test and maybe help develop!

I started working on a new myUplink binding. Skeleton is ready which means it can authenticate and refresh the token and query for systems/devices registered with the account.
However now it gets complicated as I do not have any real data.

@robjkamp Maybe you could provide me some real response from these endpoints:

https://api.myuplink.com/v2/devices/{deviceId}/points

I do not know if there is any difference in the v3 endpoint but would be nice to see a response as well.

https://api.myuplink.com/v3/devices/{deviceId}/points

And also I would like to see some real data for systems endpoint to complete the autodiscovery service:

https://api.myuplink.com/v2/systems/me?page=1&itemsPerPage=100

/v2/systems/me

when authorized results in

{
  "page": 1,
  "itemsPerPage": 10,
  "numItems": 1,
  "systems": [
    {
      "systemId": "{system_id_guid}",
      "name": "Thuis",
      "securityLevel": "admin",
      "hasAlarm": false,
      "country": "Netherlands",
      "devices": [
        {
          "id": "{emmy_guid}",
          "connectionState": "Connected",
          "currentFwVersion": "9586R5",
          "product": {
            "serialNumber": "06943020335001",
            "name": "VVM 310, 3x400V"
          }
        }
      ]
    }
  ]
}

/v2/devices/{}/points

when authorized results in

[
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40004",
    "parameterName": "Current outd temp (BT1)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:40:23+00:00",
    "value": 6.9,
    "strVal": "6.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40008",
    "parameterName": "Supply line (BT2)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:37:41+00:00",
    "value": 33.3,
    "strVal": "33.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40012",
    "parameterName": "Return line (BT3)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:07:43+00:00",
    "value": 33.1,
    "strVal": "33.1°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40013",
    "parameterName": "Hot water top (BT7)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:55:37+00:00",
    "value": 52.8,
    "strVal": "52.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40014",
    "parameterName": "Hot water char­ging (BT6)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:04:36+00:00",
    "value": 51.9,
    "strVal": "51.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "40045",
    "parameterName": "Cooling (EQ1-BT64)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:40:11+00:00",
    "value": 27.9,
    "strVal": "27.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "40046",
    "parameterName": "Return line (EQ1-BT65)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40047",
    "parameterName": "Supply line (BT61)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40048",
    "parameterName": "Return line (BT62)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40067",
    "parameterName": "Average outdoor temp (BT1)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:57:23+00:00",
    "value": 7.1,
    "strVal": "7.1°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40071",
    "parameterName": "Exter­nal supply line (BT25)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:39:29+00:00",
    "value": 33,
    "strVal": "33°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40079",
    "parameterName": "Current (BE1)",
    "parameterUnit": "A",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0.1,
    "strVal": "0.1A",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40081",
    "parameterName": "Current (BE2)",
    "parameterUnit": "A",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0.1,
    "strVal": "0.1A",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40083",
    "parameterName": "Current (BE3)",
    "parameterUnit": "A",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0.1,
    "strVal": "0.1A",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40121",
    "parameterName": "Add. heat (BT63)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:36:31+00:00",
    "value": 32.7,
    "strVal": "32.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40145",
    "parameterName": "Oil temp­erature (EP15-BT29)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40146",
    "parameterName": "Oil temp­erature (BT29)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "40737",
    "parameterName": "Oper. time cooling (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1753,
    "strVal": "1753h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "40737",
    "parameterName": "Oper. time cooling (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1753,
    "strVal": "1753h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "40782",
    "parameterName": "Re­quested com­pressor freq (EB101)",
    "parameterUnit": "Hz",
    "writable": false,
    "timestamp": "2024-01-05T09:09:19+00:00",
    "value": 0,
    "strVal": "0Hz",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40940",
    "parameterName": "Degree minutes",
    "parameterUnit": "",
    "writable": true,
    "timestamp": "2024-01-05T09:23:19+00:00",
    "value": 100,
    "strVal": "100",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40940",
    "parameterName": "Degree minutes",
    "parameterUnit": "",
    "writable": true,
    "timestamp": "2024-01-05T09:23:19+00:00",
    "value": 100,
    "strVal": "100",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41002",
    "parameterName": "Fan speed (EB101)",
    "parameterUnit": "rpm",
    "writable": false,
    "timestamp": "2024-01-05T09:09:40+00:00",
    "value": 0,
    "strVal": "0rpm",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41011",
    "parameterName": "EEV-ssh-act (EB101)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:03:08+00:00",
    "value": 10.8,
    "strVal": "10.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41017",
    "parameterName": "EEV posi­tion (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41019",
    "parameterName": "EVI-ssh-act (EB101)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:58:23+00:00",
    "value": 11.8,
    "strVal": "11.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41025",
    "parameterName": "EVI posi­tion (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:25+00:00",
    "value": 8,
    "strVal": "8",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41162",
    "parameterName": "Low pres­sure (EB101-EP14-BP8)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T09:44:07+00:00",
    "value": 6.8,
    "strVal": "6.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41163",
    "parameterName": "High pres­sure (EB101-EP14-BP9)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:24:31+00:00",
    "value": 32.3,
    "strVal": "32.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41164",
    "parameterName": "Injec­tion (EB101-BT81)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:02:43+00:00",
    "value": 18.3,
    "strVal": "18.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41167",
    "parameterName": "Evap­orator (EB101-BT84)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:06:02+00:00",
    "value": 24.3,
    "strVal": "24.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "41929",
    "parameterName": "Mode (Smart Price Adaption)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T06:00:00+00:00",
    "value": 2,
    "strVal": "2°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43009",
    "parameterName": "Calcu­lated supply climate system 1",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:53:43+00:00",
    "value": 27.1,
    "strVal": "27.1°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43081",
    "parameterName": "Time factor add heat",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 69.1,
    "strVal": "69.1",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43109",
    "parameterName": "Current hot water mode",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1,
    "strVal": "1",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43115",
    "parameterName": "Hot water: charge set point value",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T09:00:01+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43161",
    "parameterName": "Extern. adjust­ment climate system 1",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "Off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "On",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43437",
    "parameterName": "Heating medium pump speed (GP1)",
    "parameterUnit": "%",
    "writable": false,
    "timestamp": "2024-01-05T09:09:22+00:00",
    "value": 15,
    "strVal": "15%",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44014",
    "parameterName": "Version (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 10678,
    "strVal": "10678",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44032",
    "parameterName": "Slave (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 28,
    "strVal": "28",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44055",
    "parameterName": "Return line (EB101-BT3)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:28:22+00:00",
    "value": 32.7,
    "strVal": "32.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44058",
    "parameterName": "Supply line (EB101-BT12)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:27:42+00:00",
    "value": 32.7,
    "strVal": "32.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44059",
    "parameterName": "Dis­charge (EB101-BT14)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:04:51+00:00",
    "value": 26.6,
    "strVal": "26.6°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44060",
    "parameterName": "Liquid line (EB101-BT15)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:42:22+00:00",
    "value": 27,
    "strVal": "27°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44061",
    "parameterName": "Suction gas (EB101-BT17)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:58:41+00:00",
    "value": 17.9,
    "strVal": "17.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44064",
    "parameterName": "Status com­pressor (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:21+00:00",
    "value": 20,
    "strVal": "off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "20",
        "text": "off",
        "icon": ""
      },
      {
        "value": "40",
        "text": "starts",
        "icon": ""
      },
      {
        "value": "60",
        "text": "runs",
        "icon": ""
      },
      {
        "value": "100",
        "text": "stops",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44069",
    "parameterName": "No. of starts (EB101-EP14)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T02:38:25+00:00",
    "value": 3401,
    "strVal": "3401",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44069",
    "parameterName": "No. of starts (EB101-EP14)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T02:38:25+00:00",
    "value": 3401,
    "strVal": "3401",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44071",
    "parameterName": "Oper. time (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:14:33+00:00",
    "value": 5524,
    "strVal": "5524h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44071",
    "parameterName": "Oper. time (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:14:33+00:00",
    "value": 5524,
    "strVal": "5524h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44073",
    "parameterName": "Oper. time hot water (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:50:32+00:00",
    "value": 1109,
    "strVal": "1109h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44073",
    "parameterName": "Oper. time hot water (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:50:32+00:00",
    "value": 1109,
    "strVal": "1109h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44256",
    "parameterName": "Cooling blocked",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -30000,
    "maxValue": 30000,
    "stepValue": 100,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -30000,
    "maxValue": 30000,
    "stepValue": 100,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -30000,
    "maxValue": 30000,
    "stepValue": 100,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -30000,
    "maxValue": 30000,
    "stepValue": 100,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44270",
    "parameterName": "Calcu­lated cooling supply climate system 1",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 18,
    "strVal": "18°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44362",
    "parameterName": "Outd temp­erature (EB101-BT28)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T07:36:59+00:00",
    "value": 6.7,
    "strVal": "6.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44363",
    "parameterName": "Evap­orator (EB101-BT16)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T09:56:07+00:00",
    "value": 7.7,
    "strVal": "7.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44396",
    "parameterName": "Charge pump speed (GP12)",
    "parameterUnit": "%",
    "writable": false,
    "timestamp": "2024-01-05T09:09:50+00:00",
    "value": 0,
    "strVal": "0%",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44700",
    "parameterName": "Low pres­sure (EB101-BP8)",
    "parameterUnit": "bar",
    "writable": false,
    "timestamp": "2024-01-05T09:09:26+00:00",
    "value": 8.2,
    "strVal": "8.2bar",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44701",
    "parameterName": "Current com­pressor fre­quency (EB101)",
    "parameterUnit": "Hz",
    "writable": false,
    "timestamp": "2024-01-05T09:09:21+00:00",
    "value": 0,
    "strVal": "0Hz",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44702",
    "parameterName": "Prot. mode, com­pressor (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44703",
    "parameterName": "Defrost­ing (EB101-EP14)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-30T11:15:37+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44743",
    "parameterName": "Pump: Heating medium (GP6)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:50+00:00",
    "value": 0,
    "strVal": "Off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "On",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44896",
    "parameterName": "Heating offset (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44898",
    "parameterName": "Pool offset (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44899",
    "parameterName": "Cooling offset (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44908",
    "parameterName": "Status (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:45:10+00:00",
    "value": 30,
    "strVal": "30",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "49993",
    "parameterName": "Int elec add heat",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-27T08:19:31+00:00",
    "value": 4,
    "strVal": "Blocked",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Alarm",
        "icon": ""
      },
      {
        "value": "1",
        "text": "Alarm",
        "icon": ""
      },
      {
        "value": "2",
        "text": "Active",
        "icon": ""
      },
      {
        "value": "3",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "4",
        "text": "Blocked",
        "icon": ""
      },
      {
        "value": "5",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "6",
        "text": "Active",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "49994",
    "parameterName": "Prior­ity",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:19+00:00",
    "value": 10,
    "strVal": "Off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "10",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "20",
        "text": "Hot water",
        "icon": ""
      },
      {
        "value": "30",
        "text": "Heating",
        "icon": ""
      },
      {
        "value": "40",
        "text": "Pool",
        "icon": ""
      },
      {
        "value": "41",
        "text": "Pool 2",
        "icon": ""
      },
      {
        "value": "50",
        "text": "Trans­fer",
        "icon": ""
      },
      {
        "value": "60",
        "text": "Cooling",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "49995",
    "parameterName": "Pump: Heating medium (GP1)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1,
    "strVal": "On",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "On",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "50004",
    "parameterName": "Tempo­rary lux",
    "parameterUnit": "",
    "writable": true,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "on",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  }
]

That means, only the “main” unit will show up. Addons like ERS (ventilation unit) or the outdoor unit (the actual heatpump) will not reported as dedicated units.

and the v3 one results in

[
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40004",
    "parameterName": "Current outd temp (BT1)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:40:23+00:00",
    "value": 6.9,
    "strVal": "6.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40008",
    "parameterName": "Supply line (BT2)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:37:41+00:00",
    "value": 33.3,
    "strVal": "33.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40012",
    "parameterName": "Return line (BT3)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:07:43+00:00",
    "value": 33.1,
    "strVal": "33.1°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40013",
    "parameterName": "Hot water top (BT7)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:55:37+00:00",
    "value": 52.8,
    "strVal": "52.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40014",
    "parameterName": "Hot water char­ging (BT6)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:04:36+00:00",
    "value": 51.9,
    "strVal": "51.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "40045",
    "parameterName": "Cooling (EQ1-BT64)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:40:11+00:00",
    "value": 27.9,
    "strVal": "27.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "40046",
    "parameterName": "Return line (EQ1-BT65)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40047",
    "parameterName": "Supply line (BT61)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40048",
    "parameterName": "Return line (BT62)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40067",
    "parameterName": "Average outdoor temp (BT1)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:57:23+00:00",
    "value": 7.1,
    "strVal": "7.1°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40071",
    "parameterName": "Exter­nal supply line (BT25)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:39:29+00:00",
    "value": 33,
    "strVal": "33°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40079",
    "parameterName": "Current (BE1)",
    "parameterUnit": "A",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0.1,
    "strVal": "0.1A",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40081",
    "parameterName": "Current (BE2)",
    "parameterUnit": "A",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0.1,
    "strVal": "0.1A",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40083",
    "parameterName": "Current (BE3)",
    "parameterUnit": "A",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0.1,
    "strVal": "0.1A",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40121",
    "parameterName": "Add. heat (BT63)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:36:31+00:00",
    "value": 32.7,
    "strVal": "32.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40145",
    "parameterName": "Oil temp­erature (EP15-BT29)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40146",
    "parameterName": "Oil temp­erature (BT29)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "40737",
    "parameterName": "Oper. time cooling (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1753,
    "strVal": "1753h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "40737",
    "parameterName": "Oper. time cooling (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1753,
    "strVal": "1753h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "40782",
    "parameterName": "Re­quested com­pressor freq (EB101)",
    "parameterUnit": "Hz",
    "writable": false,
    "timestamp": "2024-01-05T09:09:19+00:00",
    "value": 0,
    "strVal": "0Hz",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40940",
    "parameterName": "Degree minutes",
    "parameterUnit": "",
    "writable": true,
    "timestamp": "2024-01-05T09:23:19+00:00",
    "value": 100,
    "strVal": "100",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "40940",
    "parameterName": "Degree minutes",
    "parameterUnit": "",
    "writable": true,
    "timestamp": "2024-01-05T09:23:19+00:00",
    "value": 100,
    "strVal": "100",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.01,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41002",
    "parameterName": "Fan speed (EB101)",
    "parameterUnit": "rpm",
    "writable": false,
    "timestamp": "2024-01-05T09:09:40+00:00",
    "value": 0,
    "strVal": "0rpm",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41011",
    "parameterName": "EEV-ssh-act (EB101)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:03:08+00:00",
    "value": 10.8,
    "strVal": "10.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41017",
    "parameterName": "EEV posi­tion (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41019",
    "parameterName": "EVI-ssh-act (EB101)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:12:44+00:00",
    "value": 11.3,
    "strVal": "11.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41025",
    "parameterName": "EVI posi­tion (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:25+00:00",
    "value": 8,
    "strVal": "8",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41162",
    "parameterName": "Low pres­sure (EB101-EP14-BP8)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T09:44:07+00:00",
    "value": 6.8,
    "strVal": "6.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41163",
    "parameterName": "High pres­sure (EB101-EP14-BP9)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:24:31+00:00",
    "value": 32.3,
    "strVal": "32.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41164",
    "parameterName": "Injec­tion (EB101-BT81)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:14:14+00:00",
    "value": 17.8,
    "strVal": "17.8°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "41167",
    "parameterName": "Evap­orator (EB101-BT84)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:06:02+00:00",
    "value": 24.3,
    "strVal": "24.3°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "41929",
    "parameterName": "Mode (Smart Price Adaption)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T06:00:00+00:00",
    "value": 2,
    "strVal": "2°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43009",
    "parameterName": "Calcu­lated supply climate system 1",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:53:43+00:00",
    "value": 27.1,
    "strVal": "27.1°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43081",
    "parameterName": "Time factor add heat",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 69.1,
    "strVal": "69.1",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43109",
    "parameterName": "Current hot water mode",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1,
    "strVal": "1",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43115",
    "parameterName": "Hot water: charge set point value",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T09:00:01+00:00",
    "value": -32768,
    "strVal": "-32768°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43161",
    "parameterName": "Extern. adjust­ment climate system 1",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "Off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "On",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "43437",
    "parameterName": "Heating medium pump speed (GP1)",
    "parameterUnit": "%",
    "writable": false,
    "timestamp": "2024-01-05T09:09:22+00:00",
    "value": 15,
    "strVal": "15%",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44014",
    "parameterName": "Version (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 10678,
    "strVal": "10678",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44032",
    "parameterName": "Slave (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 28,
    "strVal": "28",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44055",
    "parameterName": "Return line (EB101-BT3)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:28:22+00:00",
    "value": 32.7,
    "strVal": "32.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44058",
    "parameterName": "Supply line (EB101-BT12)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:27:42+00:00",
    "value": 32.7,
    "strVal": "32.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44059",
    "parameterName": "Dis­charge (EB101-BT14)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T11:04:51+00:00",
    "value": 26.6,
    "strVal": "26.6°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44060",
    "parameterName": "Liquid line (EB101-BT15)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:42:22+00:00",
    "value": 27,
    "strVal": "27°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44061",
    "parameterName": "Suction gas (EB101-BT17)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T10:58:41+00:00",
    "value": 17.9,
    "strVal": "17.9°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44064",
    "parameterName": "Status com­pressor (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:21+00:00",
    "value": 20,
    "strVal": "off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "20",
        "text": "off",
        "icon": ""
      },
      {
        "value": "40",
        "text": "starts",
        "icon": ""
      },
      {
        "value": "60",
        "text": "runs",
        "icon": ""
      },
      {
        "value": "100",
        "text": "stops",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44069",
    "parameterName": "No. of starts (EB101-EP14)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T02:38:25+00:00",
    "value": 3401,
    "strVal": "3401",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44069",
    "parameterName": "No. of starts (EB101-EP14)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T02:38:25+00:00",
    "value": 3401,
    "strVal": "3401",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44071",
    "parameterName": "Oper. time (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:14:33+00:00",
    "value": 5524,
    "strVal": "5524h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44071",
    "parameterName": "Oper. time (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:14:33+00:00",
    "value": 5524,
    "strVal": "5524h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44073",
    "parameterName": "Oper. time hot water (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:50:32+00:00",
    "value": 1109,
    "strVal": "1109h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44073",
    "parameterName": "Oper. time hot water (EB101-EP14)",
    "parameterUnit": "h",
    "writable": false,
    "timestamp": "2024-01-05T08:50:32+00:00",
    "value": 1109,
    "strVal": "1109h",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44256",
    "parameterName": "Cooling blocked",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -3000,
    "maxValue": 3000,
    "stepValue": 10,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -300,
    "maxValue": 300,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -3000,
    "maxValue": 3000,
    "stepValue": 10,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Cooling 4-pipe",
    "parameterId": "44266",
    "parameterName": "Cooling degree minutes",
    "parameterUnit": "DM",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0DM",
    "smartHomeCategories": [],
    "minValue": -300,
    "maxValue": 300,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44270",
    "parameterName": "Calcu­lated cooling supply climate system 1",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 18,
    "strVal": "18°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44362",
    "parameterName": "Outd temp­erature (EB101-BT28)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T07:36:59+00:00",
    "value": 6.7,
    "strVal": "6.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44363",
    "parameterName": "Evap­orator (EB101-BT16)",
    "parameterUnit": "°C",
    "writable": false,
    "timestamp": "2024-01-05T09:56:07+00:00",
    "value": 7.7,
    "strVal": "7.7°C",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44396",
    "parameterName": "Charge pump speed (GP12)",
    "parameterUnit": "%",
    "writable": false,
    "timestamp": "2024-01-05T09:09:50+00:00",
    "value": 0,
    "strVal": "0%",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44700",
    "parameterName": "Low pres­sure (EB101-BP8)",
    "parameterUnit": "bar",
    "writable": false,
    "timestamp": "2024-01-05T09:09:26+00:00",
    "value": 8.2,
    "strVal": "8.2bar",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44701",
    "parameterName": "Current com­pressor fre­quency (EB101)",
    "parameterUnit": "Hz",
    "writable": false,
    "timestamp": "2024-01-05T09:09:21+00:00",
    "value": 0,
    "strVal": "0Hz",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44702",
    "parameterName": "Prot. mode, com­pressor (EB101)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "Slave 1 (EB101)",
    "parameterId": "44703",
    "parameterName": "Defrost­ing (EB101-EP14)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-30T11:15:37+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44743",
    "parameterName": "Pump: Heating medium (GP6)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:50+00:00",
    "value": 0,
    "strVal": "Off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "On",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44896",
    "parameterName": "Heating offset (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 0.1,
    "enumValues": [],
    "scaleValue": "0.1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44898",
    "parameterName": "Pool offset (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44899",
    "parameterName": "Cooling offset (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "0",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "44908",
    "parameterName": "Status (Smart Price Adaption)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:45:10+00:00",
    "value": 30,
    "strVal": "30",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "49993",
    "parameterName": "Int elec add heat",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-27T08:19:31+00:00",
    "value": 4,
    "strVal": "Blocked",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Alarm",
        "icon": ""
      },
      {
        "value": "1",
        "text": "Alarm",
        "icon": ""
      },
      {
        "value": "2",
        "text": "Active",
        "icon": ""
      },
      {
        "value": "3",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "4",
        "text": "Blocked",
        "icon": ""
      },
      {
        "value": "5",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "6",
        "text": "Active",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "49994",
    "parameterName": "Prior­ity",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2024-01-05T09:09:19+00:00",
    "value": 10,
    "strVal": "Off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "10",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "20",
        "text": "Hot water",
        "icon": ""
      },
      {
        "value": "30",
        "text": "Heating",
        "icon": ""
      },
      {
        "value": "40",
        "text": "Pool",
        "icon": ""
      },
      {
        "value": "41",
        "text": "Pool 2",
        "icon": ""
      },
      {
        "value": "50",
        "text": "Trans­fer",
        "icon": ""
      },
      {
        "value": "60",
        "text": "Cooling",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "49995",
    "parameterName": "Pump: Heating medium (GP1)",
    "parameterUnit": "",
    "writable": false,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 1,
    "strVal": "On",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "Off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "On",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  },
  {
    "category": "NIBEF VVM 310, 3x400V",
    "parameterId": "50004",
    "parameterName": "Tempo­rary lux",
    "parameterUnit": "",
    "writable": true,
    "timestamp": "2023-12-19T06:41:27+00:00",
    "value": 0,
    "strVal": "off",
    "smartHomeCategories": [],
    "minValue": null,
    "maxValue": null,
    "stepValue": 1,
    "enumValues": [
      {
        "value": "0",
        "text": "off",
        "icon": ""
      },
      {
        "value": "1",
        "text": "on",
        "icon": ""
      }
    ],
    "scaleValue": "1",
    "zoneId": null
  }
]

Thanks, looks like v2 and v3 endpoints deliver the same data. Already scaled without need to do some magic :slight_smile:
It also looks like ParameterIds are still the same like before.

Well I checked those channels and in fact the list is quite small. At lot of channels I have are not there although I believe that VVM310 and VVM320 are quite similar.

E.g. heat meter channels are missing (44308, 44302, 44306, 44300, 44298), room temperature (40033) and a lot of settings channels.
Especially those missing heat meter channels is some kind of show stopper for me. It might be that you do not have a room sensor but those heat meters should be built in I believe.

@robjkamp
The /v2/devices/{}/points endpoint allows to specify specific parameter Ids could you try these:

  • 40025
  • 47260
  • 43084
  • 44308
  • 44302
  • 44306
  • 44300
  • 44298
  • 40072
  • 47041

Thanks in advance!