virtual thermostat only whole numbers

Discussions about Z-Way software and Z-Wave technology in general
Post Reply
cbnidk
Posts: 41
Joined: 14 May 2015 11:25

virtual thermostat only whole numbers

Post by cbnidk »

hi

my virtual thermostat cannot stand xx.5
only whole numbers 22 23 24 not 22.5 23.5 24.5

I run 3.0.6 on raspberry

cb
User avatar
PoltoS
Posts: 7565
Joined: 26 Jan 2011 19:36

Re: virtual thermostat only whole numbers

Post by PoltoS »

Will check it.
cbnidk
Posts: 41
Joined: 14 May 2015 11:25

Re: virtual thermostat only whole numbers

Post by cbnidk »

Hi

This is not fix jet, I now use 3.1.1
and problem with virtual thermostat is still xx,5 can't be set only whole numbers
User avatar
PoltoS
Posts: 7565
Joined: 26 Jan 2011 19:36

Re: virtual thermostat only whole numbers

Post by PoltoS »

I'll make sure this is fixed in upcoming releases
jarek
Posts: 29
Joined: 09 Oct 2017 11:18

Re: virtual thermostat only whole numbers

Post by jarek »

cbnidk wrote:
02 Jul 2020 10:11
hi

my virtual thermostat cannot stand xx.5
only whole numbers 22 23 24 not 22.5 23.5 24.5

I run 3.0.6 on raspberry

cb
for the time being, you can change it directly in the configuration file :)

1. stop service:
sudo /etc/init.d/z-way-server stop
2. Open config file:
locations: /opt/z-way-server/automation/storage/configjson[some numbers].json
3. Find section with name of your thermostat, mine is "Bedroom heater") and add "step: 1", also you can change min and max value:

Code: Select all

    "ZWayVDev_zway_18-0-67-1": {
      "deviceType": "thermostat",
      "probeType": "thermostat_set_point",
      "metrics": {
        "scaleTitle": "°C",
        "level": 21,
        "min": 10,
        "max": 28,
        "step": 1,
        "icon": "thermostat",
        "title": "Bedroom heater",
        "isFailed": false,
        "modificationTime": 1601801583,
        "lastLevel": 21
      },
4. Save file and start server:
sudo /etc/init.d/z-way-server start
Post Reply