autopower / thermeq3

Boiler actor device for ELV/EQ-3 MAX! cube
GNU General Public License v3.0
19 stars 13 forks source link

thermeq3 - control of Max! wireless thermostatic radiator valves #5

Closed dominator99 closed 8 years ago

dominator99 commented 8 years ago

Anyone had any experience of this software as I'm not getting any response to PM's from author

https://github.com/autopower/thermeq3

autopower commented 8 years ago

Hello, feel free to post message on FB profile https://www.facebook.com/autopow/ as I don't see any message from you here.

dominator99 commented 8 years ago

Here's my original response to your Arduino forum post: Hi autopower

just came across this posting & it looks really interesting.

I've just aquired an Arduino Yun, Max! cube & 5 wireless radiator thermostats & I'm interested in controlling my gas boiler as per your post.

I currently control a gas boiler/heat pump system using an Arduino Mega 2560 with 13 DS18B20 digital temps sensors. Two of these sensors replaces my 'normal' roomstat (one measures room temp from inside roomstat housing & the other at floor level. A third sensor measures outside air temp. I use an algorithm to adjust the required room temp constantly in real time & 'fire' the gas boiler or heat pump accordingly.

Unfortunately, these 2 room temp sensors are located in a South facing living room which experiences solar gain meaning the CH can be prevented from coming on even when other North facing rooms need heating.

Your system seems to offer a way around this problem by using individual or 'sum of' thermostat valve opening to turn the CH on, overriding the 2 temp sensors.

My big problem is understanding your system (I'm a retired mechanical engineer & my coding is limited to simple Arduino IDE)

" python-openssl library opkg update; opkg install python-openssl" - I don't understand this; can you explain (simple please)

"python code, upload into /root/ files nsm.py and config.py " - I run my Arduino sketches under Windows 7 so how can I copy the 2 files above into the /root folder ? I have Ubuntu installed on my Win 7 as a virtual machine if that's of any use.

autopower commented 8 years ago

Hello,

dominator99 commented 8 years ago

Thanks for that. Look forward to your new readme

dominator99 commented 8 years ago

Hi Michal

I copied files nsm.py and config.py into the root of my Yun SD card; is this correct?

I uploaded your sketch to the Yun.

I changed the ip address in config.py to my Max! cube to 192.168.0.222 (as detailed on the back of the cube) using:

192.168.0.29/data/put/stp.max_ip = 192.168.0.222

192.168.0.29 is the address of my Yun

When I boot the Yun I do not see the flashing LED you mention.

When I run the serial monitor I get error messages:

Unable to connect: retrying (1)... Unable to connect: retrying (2)... Unable to connect: retrying (3)... Unable to connect: retrying (4)... Unable to connect: is the sketch using the bridge?

Please help!

Regards

Chris

On 06/12/2015 17:48, Michal Cheben wrote:

Hello,

  • opkg issue: run this command on yun, so you must telnet/ssh to your yun as root
  • python code in /root, copy files to /root directory of your yun nsm.py is closely coupled with arduino yun, you don't need any linux distro on your local machine (Win7). I'll write down more comprehensive readme soon.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-162331627.

autopower commented 8 years ago

Hello, to change ip address in your config.py just edit file to look like:

stp.max_ip = "192.168.0.222"
stp.fromaddr = "devices@foo.local"
stp.toaddr = "user@foo.local"
stp.mailserver = "mail.foo.local"
stp.mailport = 25
stp.frompwd = "this.is.password"
stp.devname = "hellmostat"
stp.timeout = 10

Please take a look at readme I think that install script simplifies some steps. If you need trace down what going on with nsm.py use log file located in /mnt/sda1 or /mnt/sdb1 or error file in /root directory

dominator99 commented 8 years ago

Hi again Michal

I managed to figure that out yesterday & now get the 4 sec red & green LED flashing referred to in your readme. I also get the green LED flashing when the 'bridge' is established; - so far so good!

I've wired up a breadboard as per your instructions except I'm simulating a 5V relay with a yellow LED.

I changed the value of :- "valve": ["valve_pos", 35], to "valve": ["valve_pos", 5], & "valves": ["valves", 1],
to "valves": ["valves", 5], in file nsm.py (I have 5 valves) by manually editing the nsm.py file using Wordpad & restarting your Arduino sketch 'thermeq3.ino' but can't get my '5V relay' yellow LED to light with at least 1 valve open?

I also noticed that some of the names used in README.md don't appear in nsm.py

for example:

Heating also can be started if sum of radiator valves positions are geater than num_of_valves * stp.per_switch, where stp.per_switch is value in %. So if you have 10 valves in house and stp.per_switch=8, and sum of these valves positions are 80+, relay is switched on. You can turn on this feature by stp.preference="per" in python code. If you need only simple total value, set stp.preference="total" and setup total_switch variable.

I assume "valves": ["valves", 1] is used for 1 valve not num_of_valves

I can't find stp.per_switch, orstp.per_switch` is this "valve": ["valve_pos", 35] meaning valve open 35%?

I haven't checked for any other typos as I'm still bogged down at the start but everything seems to be going in the right direction; albeit slowly.

PS remember I'm a retired professional mechanical engineer not a coder!! :)

Thanks for your interest in helping - I'm surprised nobody else has joined the discussion of these wireless thermostats!

Regards

Chris

On 12/12/2015 09:32, Michal Cheben wrote:

Hello, to change ip address in your config.py just edit file to look like:

|stp.max_ip = "192.168.0.222" stp.fromaddr = "devices@foo.local" stp.toaddr = "user@foo.local" stp.mailserver = "mail.foo.local" stp.mailport = 25 stp.frompwd = "this.is.password" stp.devname = "hellmostat" stp.timeout = 10 |

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-164132915.

dominator99 commented 8 years ago

Hi again Michal

I managed to figure that out yesterday & now get the 4 sec red & green LED flashing referred to in your readme. I also get the green LED flashing when the 'bridge' is established; - so far so good!

I've wired up a breadboard as per your instructions except I'm simulating a 5V relay with a yellow LED.

I changed the value of :- "valve": ["valve_pos", 35], to "valve": ["valve_pos", 5], & "valves": ["valves", 1],
to "valves": ["valves", 5], in file nsm.py (I have 5 valves) by manually editing the nsm.py file using Wordpad & restarting your Arduino sketch 'thermeq3.ino' but can't get my '5V relay' yellow LED to light with at least 1 valve open?

I also noticed that some of the names used in README.md don't appear in nsm.py

for example:

Heating also can be started if sum of radiator valves positions are geater than num_of_valves * stp.per_switch, where stp.per_switch is value in %. So if you have 10 valves in house and stp.per_switch=8, and sum of these valves positions are 80+, relay is switched on. You can turn on this feature by stp.preference="per" in python code. If you need only simple total value, set stp.preference="total" and setup total_switch variable.

I assume "valves": ["valves", 1] is used for 1 valve not num_of_valves

I can't find stp.per_switch, orstp.per_switch` is this "valve": ["valve_pos", 35] meaning valve open 35%?

I haven't checked for any other typos as I'm still bogged down at the start but everything seems to be going in the right direction; albeit slowly.

PS remember I'm a retired professional mechanical engineer not a coder!! :)

Thanks for your interest in helping - I'm surprised nobody else has joined the discussion of these wireless thermostats!

PPS In your README.md file you quote:

How to debug?

Python code produce 3 files:

Where are these 3 files stored? I couldn't find them on my SD card or are they hidden?

Regards

Chris

On 12/12/2015 09:32, Michal Cheben wrote:

Hello, to change ip address in your config.py just edit file to look like:

|stp.max_ip = "192.168.0.222" stp.fromaddr = "devices@foo.local" stp.toaddr = "user@foo.local" stp.mailserver = "mail.foo.local" stp.mailport = 25 stp.frompwd = "this.is.password" stp.devname = "hellmostat" stp.timeout = 10 |

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-164132915.

autopower commented 8 years ago

Hello Chris, yes, readme is little bit outdated. I'll post update, meanwhile:

Keep posting me with updates, it helps me to clarify and rewrite readme.

PS: as a mechanical engineer you are doing very well, trust me, I'm engineer also :)

dominator99 commented 8 years ago

Hi Michal

Had a nightmare 2 days with the Yun where it bricked itself for no apparent reason; factory reset wouldn't work but after a lot of Googling managed to reset it.

When I run your thermeq3 sketch after about 10 secs I get the disco light scene.

I've attached 2 logs & bridge to see if you can shed any light on the problem; all the csv files are empty

Regards

Chris

On 12/12/2015 13:47, Michal Cheben wrote:

Hello Chris, yes, readme is little bit outdated. I'll post update, meanwhile:

  • valve_pos is valve position in % when heating is started, in "per" mode
  • valves is number how many valves must be over valve_pos to start heating, in "per" mode
  • total_switch is similar to valve_pos but for sum of all valves, e.g. if sum is over total_switch then heating is switched on, you must be in "total" mode
  • mode is switched with "preference"="per" or ="total"
  • log files are in /mnt/sda1 or /mnt/sdb1, to clarify type this command |cd /mnt|ls -al| and post results here.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-164152131.

16:09:54 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1526, in doLoop() File "/root/nsm.py", line 1440, in doLoop time.sleep(stp.intervals["slp"][0]) KeyboardInterrupt 16:41:36 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1526, in doLoop() File "/root/nsm.py", line 1399, in doLoop if tryRead("beta", "no", False).upper() == "YES": AttributeError: 'NoneType' object has no attribute 'upper'

2015/12/13 15:50:20 - thermeq3 - INFO - --> V139 started with PID=1851 <-- 2015/12/13 15:50:29 - thermeq3 - ERROR - Error loading bridge file, using defaults! 2015/12/13 15:50:29 - thermeq3 - DEBUG - Queqing [S] 2015/12/13 15:50:29 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/13 15:50:29 - thermeq3 - DEBUG - Sending message [S] 2015/12/13 15:50:51 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 15:50:51 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 15:50:51 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/13 15:50:53 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 15:50:53 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 15:50:53 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 15:50:53 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 15:50:54 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 15:50:54 - thermeq3 - DEBUG - Creating new daily key: 13-12-2015 2015/12/13 15:50:54 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/13 15:50:59 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 15:50:59 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/13 15:50:59 - thermeq3 - ERROR - Unable to get latest version info - URLError = unknown url type: https 2015/12/13 15:51:05 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 15:51:05 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 15:51:06 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 15:51:06 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 15:51:28 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 15:51:29 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 15:51:29 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 15:51:29 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 15:51:29 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 15:51:29 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 15:51:29 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 15:53:22 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 15:53:22 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 15:53:22 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 15:53:22 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 15:53:23 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 15:55:16 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 15:55:16 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 15:55:16 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 15:55:16 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 15:55:16 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 15:57:09 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 15:57:09 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 15:57:09 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 15:57:09 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 15:57:09 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 15:59:02 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 15:59:02 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 15:59:02 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 15:59:02 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 15:59:02 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:00:56 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:00:56 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:00:56 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:00:56 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:00:56 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:01:31 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:01:32 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 16:01:32 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 16:01:32 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 16:09:54 - thermeq3 - INFO - --> V139 started with PID=1970 <-- 2015/12/13 16:10:00 - thermeq3 - INFO - CW [msg] empty, using default [] 2015/12/13 16:10:02 - thermeq3 - INFO - CW [command] empty, using default [] 2015/12/13 16:10:02 - thermeq3 - INFO - CW [daily] empty, using default [] 2015/12/13 16:10:03 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/13 16:10:03 - thermeq3 - DEBUG - Creating new daily key: 13-12-2015 2015/12/13 16:10:03 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/13 16:10:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:10:08 - thermeq3 - DEBUG - Queqing [S] 2015/12/13 16:10:08 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/13 16:10:09 - thermeq3 - DEBUG - Sending message [S] 2015/12/13 16:10:31 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:10:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:10:32 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/13 16:10:32 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:10:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:10:32 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:10:32 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:10:32 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:10:33 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/13 16:10:33 - thermeq3 - ERROR - Unable to get latest version info - URLError = unknown url type: https 2015/12/13 16:10:38 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:10:38 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 16:10:39 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 16:10:39 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 16:11:01 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:11:01 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:11:02 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:11:02 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:11:02 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:11:02 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:11:02 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:12:55 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:12:55 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:12:55 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:12:55 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:12:55 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:13:12 - thermeq3 - INFO - --> V139 started with PID=2782 <-- 2015/12/13 16:13:19 - thermeq3 - INFO - CW [command] empty, using default [] 2015/12/13 16:13:20 - thermeq3 - INFO - CW [daily] empty, using default [] 2015/12/13 16:13:21 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/13 16:13:21 - thermeq3 - DEBUG - Creating new daily key: 13-12-2015 2015/12/13 16:13:21 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/13 16:13:26 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:13:26 - thermeq3 - DEBUG - Queqing [S] 2015/12/13 16:13:26 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/13 16:13:27 - thermeq3 - DEBUG - Sending message [S] 2015/12/13 16:13:49 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:13:49 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:13:49 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/13 16:13:50 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:13:50 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:13:50 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:13:50 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:13:50 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:13:50 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:13:50 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:13:50 - thermeq3 - ERROR - Unable to get latest version info - URLError = unknown url type: https 2015/12/13 16:13:55 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:13:56 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 16:13:56 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 16:13:56 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 16:14:19 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:14:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:14:19 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:14:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:14:20 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:14:20 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:14:20 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:16:13 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:16:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:16:13 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:16:13 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:16:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:18:06 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:18:06 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:18:06 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:18:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:18:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:19:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:19:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:19:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:19:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:20:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:21:53 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:21:53 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:21:53 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:21:53 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:21:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:25:44 - thermeq3 - INFO - --> V139 started with PID=1756 <-- 2015/12/13 16:25:50 - thermeq3 - INFO - CW [msg] empty, using default [] 2015/12/13 16:25:52 - thermeq3 - INFO - CW [command] empty, using default [] 2015/12/13 16:25:52 - thermeq3 - INFO - CW [daily] empty, using default [] 2015/12/13 16:25:53 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/13 16:25:53 - thermeq3 - DEBUG - Creating new daily key: 13-12-2015 2015/12/13 16:25:53 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/13 16:25:58 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:25:58 - thermeq3 - DEBUG - Queqing [S] 2015/12/13 16:25:58 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/13 16:25:58 - thermeq3 - DEBUG - Sending message [S] 2015/12/13 16:26:21 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:26:21 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:26:22 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/13 16:26:22 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:26:22 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:26:22 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:26:22 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:26:22 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:26:23 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:26:23 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:26:23 - thermeq3 - ERROR - Unable to get latest version info - URLError = unknown url type: https 2015/12/13 16:26:28 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:26:28 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 16:26:29 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 16:26:29 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 16:26:51 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:26:51 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:26:52 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:26:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:26:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:26:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:26:52 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:28:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:28:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:28:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:28:45 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:28:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:30:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:30:39 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:30:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:30:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:30:39 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:32:32 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:32:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:32:32 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:32:32 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:32:32 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:41:36 - thermeq3 - INFO - --> V139 started with PID=1717 <-- 2015/12/13 16:41:44 - thermeq3 - INFO - CW [command] empty, using default [] 2015/12/13 16:41:44 - thermeq3 - INFO - CW [daily] empty, using default [] 2015/12/13 16:41:45 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/13 16:41:45 - thermeq3 - DEBUG - Creating new daily key: 13-12-2015 2015/12/13 16:41:45 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/13 16:41:50 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:41:50 - thermeq3 - DEBUG - Queqing [S] 2015/12/13 16:41:50 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/13 16:42:01 - thermeq3 - DEBUG - Sending message [S] 2015/12/13 16:42:24 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:42:24 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:42:24 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/13 16:42:24 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:42:24 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:42:24 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:42:24 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:42:24 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:42:25 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:42:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:42:25 - thermeq3 - ERROR - Unable to get latest version info - URLError = unknown url type: https 2015/12/13 16:42:31 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 16:42:31 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 16:42:31 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 16:42:31 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 16:42:54 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:42:54 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:42:54 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 16:42:54 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 16:42:54 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:42:54 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:42:54 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:44:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:44:48 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:44:48 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:44:48 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:44:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:46:41 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:46:41 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:46:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:46:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:46:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:48:34 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:48:34 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:48:35 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:48:35 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:48:35 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 16:50:28 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 16:50:28 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 16:50:28 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 16:50:28 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 16:50:28 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:02:50 - thermeq3 - INFO - --> V139 started with PID=2740 <-- 2015/12/13 17:02:57 - thermeq3 - INFO - CW [command] empty, using default [] 2015/12/13 17:02:58 - thermeq3 - INFO - CW [daily] empty, using default [] 2015/12/13 17:02:58 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/13 17:02:59 - thermeq3 - DEBUG - Creating new daily key: 13-12-2015 2015/12/13 17:02:59 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/13 17:03:04 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 17:03:04 - thermeq3 - DEBUG - Queqing [S] 2015/12/13 17:03:04 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/13 17:03:04 - thermeq3 - DEBUG - Sending message [S] 2015/12/13 17:03:27 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:03:27 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:03:27 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/13 17:03:27 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 17:03:27 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 17:03:27 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:03:27 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:03:27 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:03:28 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 17:03:28 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 17:03:28 - thermeq3 - ERROR - Unable to get latest version info - URLError = unknown url type: https 2015/12/13 17:03:34 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 17:03:34 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 17:03:34 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 17:03:34 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 17:03:57 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:03:57 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:03:57 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/13 17:03:57 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 382, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/13 17:03:57 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:03:57 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:03:57 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:05:50 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:05:50 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:05:50 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:05:50 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:05:51 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:07:44 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:07:44 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:07:44 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:07:44 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:07:44 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:09:37 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:09:37 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:09:37 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:09:37 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:09:37 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:11:30 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:11:30 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:11:30 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:11:30 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:11:31 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:13:24 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:13:24 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:13:24 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:13:24 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:13:24 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:14:00 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 17:14:00 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 17:14:01 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 17:14:01 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 17:15:23 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:15:24 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:15:24 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:15:24 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:15:24 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:17:17 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:17:17 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:17:17 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:17:17 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:17:17 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:19:10 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:19:10 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:19:10 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:19:10 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:19:10 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:21:03 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:21:03 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:21:03 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:21:03 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:21:04 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:22:57 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:22:57 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:22:57 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:22:57 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:22:57 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:24:03 - thermeq3 - DEBUG - Bridge file saved. 2015/12/13 17:24:03 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/13 17:24:04 - thermeq3 - DEBUG - OWW interval updated to [720, 2160, 2160] 2015/12/13 17:24:04 - thermeq3 - DEBUG - Ignore interval updated to 45 2015/12/13 17:24:57 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:24:57 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:24:57 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:24:57 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:24:57 - thermeq3 - DEBUG - Sending message [E] 2015/12/13 17:26:50 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 148] No route to host 2015/12/13 17:26:50 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 796, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 148] No route to host

2015/12/13 17:26:50 - thermeq3 - DEBUG - Queqing [E] 2015/12/13 17:26:50 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/13 17:26:50 - thermeq3 - DEBUG - Sending message [E]

openwinlist={} ignore_opened=45 valve_pos=5 interval=90 autoupdate=True error=69 total_switch=150 uptime=0:26:58 current_status={} preference=per msg= status=defaults heattime={"total": [0, 0.0], {datetime.datetime.date(datetime.datetime.now()).strftime("%d-%m-%Y"): [0, time.time()]} beta=no heattime_string=0:00:00 totalerrors=0 app_uptime=0:21:07 command= daily= no_oww=0 valves=1

autopower commented 8 years ago

Please download new version of nsm.py and replace old one with this version. To copy files to yun you can use - for example - winscp. As I see from your log file, there is no route to MAX!Cube, if you are browse your arduino with some browser, there is a ping utility (configure click, advanced configuration click, menu network, diagnostics, there ping address). Put your max!cube address to the box and click ping.This is check if your yun pings packets around. If not, there is a problem. Can you paste your config.py here? Just edit it, because config.py contains password for mail services (according to log file, you don't set email addresses and email credentials).

dominator99 commented 8 years ago

Hi Michal

Please find attached latest error & status reports for your perusal & advice where I'm going wrong.

I currently have a flashing green (loop) LED & a permanently lit red (error) LED

Regards

Chris

2015/12/20 15:07:40 - thermeq3 - INFO - --> V146 started with PID=13554 <-- 2015/12/20 15:15:56 - thermeq3 - INFO - --> V146 started with PID=15413 <-- 2015/12/20 15:25:56 - thermeq3 - INFO - --> V146 started with PID=17655 <-- 2015/12/20 15:35:56 - thermeq3 - INFO - --> V146 started with PID=19905 <-- 2015/12/20 15:45:56 - thermeq3 - INFO - --> V146 started with PID=22147 <-- 2015/12/20 15:55:56 - thermeq3 - INFO - --> V146 started with PID=24396 <-- 2015/12/20 16:05:56 - thermeq3 - INFO - --> V146 started with PID=26638 <-- 2015/12/20 16:15:56 - thermeq3 - INFO - --> V146 started with PID=28887 <-- 2015/12/20 16:25:56 - thermeq3 - INFO - --> V146 started with PID=31129 <-- 2015/12/20 16:35:56 - thermeq3 - INFO - --> V146 started with PID=924 <-- 2015/12/20 16:45:56 - thermeq3 - INFO - --> V147 started with PID=3312 <-- 2015/12/20 16:46:03 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{"total": [0, 0.0], {datetime.datetime.date(datetime.datetime.now()).strftime("%d-%m-%Y"): [0, time.time()]}] 2015/12/20 16:46:05 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/20 16:46:05 - thermeq3 - DEBUG - Creating new daily key: 20-12-2015 2015/12/20 16:46:05 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/20 16:46:11 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 16:46:11 - thermeq3 - DEBUG - Queqing [S] 2015/12/20 16:46:11 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/20 16:46:11 - thermeq3 - DEBUG - Sending message [S] 2015/12/20 16:46:28 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:46:28 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:46:28 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/20 16:46:28 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/20 16:46:28 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/20 16:46:28 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:46:28 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:46:28 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:46:29 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/20 16:46:29 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/20 16:46:30 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/20 16:46:36 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 16:46:36 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 16:46:37 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 16:46:37 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 16:46:37 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2011/09/08 16:54:41 - thermeq3 - INFO - --> V147 started with PID=1533 <-- 2011/09/08 16:54:50 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{"total": [0, 0.0], {datetime.datetime.date(datetime.datetime.now()).strftime("%d-%m-%Y"): [0, time.time()]}] 2015/12/20 16:48:54 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/20 16:48:55 - thermeq3 - DEBUG - Creating new daily key: 20-12-2015 2015/12/20 16:48:55 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/20 16:49:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 16:49:01 - thermeq3 - DEBUG - Queqing [S] 2015/12/20 16:49:01 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/20 16:49:01 - thermeq3 - DEBUG - Sending message [S] 2015/12/20 16:49:18 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:49:18 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:49:18 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/20 16:49:18 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/20 16:49:18 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/20 16:49:18 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:49:18 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:49:18 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:49:18 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/20 16:49:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/20 16:49:20 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/20 16:49:26 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 16:49:27 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 16:49:28 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 16:49:28 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 16:49:28 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 16:49:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:49:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:49:45 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/20 16:49:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/20 16:49:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:49:45 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:49:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:51:33 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:51:33 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:51:33 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:51:33 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:51:33 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:53:20 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:53:20 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:53:20 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:53:20 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:53:20 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:55:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:55:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:55:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:55:07 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:55:07 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:56:54 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:56:54 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:56:54 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:56:54 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:56:55 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:58:42 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 16:58:42 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 16:58:42 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 16:58:42 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 16:58:42 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 16:59:49 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 16:59:49 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 16:59:50 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 16:59:50 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 16:59:50 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 17:00:37 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:00:37 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:00:37 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:00:37 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:00:37 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:18:33 - thermeq3 - INFO - --> V147 started with PID=1778 <-- 2015/12/20 17:18:40 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{"total": [0, 0.0], {datetime.datetime.date(datetime.datetime.now()).strftime("%d-%m-%Y"): [0, time.time()]}] 2015/12/20 17:18:42 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/20 17:18:43 - thermeq3 - DEBUG - Creating new daily key: 20-12-2015 2015/12/20 17:18:43 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/20 17:18:49 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 17:18:49 - thermeq3 - DEBUG - Queqing [S] 2015/12/20 17:18:49 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/20 17:18:49 - thermeq3 - DEBUG - Sending message [S] 2015/12/20 17:19:06 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:19:06 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:19:06 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/20 17:19:19 - thermeq3 - ERROR - Error connecting to mail server pop3.virginmedia.com:995. Error code: Connection unexpectedly closed 2015/12/20 17:19:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2015/12/20 17:19:19 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:19:19 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:19:19 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:19:31 - thermeq3 - ERROR - Error connecting to mail server pop3.virginmedia.com:995. Error code: Connection unexpectedly closed 2015/12/20 17:19:31 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2015/12/20 17:19:32 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/20 17:19:39 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 17:19:39 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 17:19:40 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 17:19:40 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 17:19:40 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 17:19:57 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:19:57 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:20:07 - thermeq3 - ERROR - Error connecting to mail server pop3.virginmedia.com:995. Error code: Connection unexpectedly closed 2015/12/20 17:20:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2015/12/20 17:20:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:20:07 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:20:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:21:55 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:21:55 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:21:55 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:21:55 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:21:55 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:23:42 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:23:42 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:23:42 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:23:42 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:23:42 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:25:29 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:25:29 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:25:29 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:25:29 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:25:30 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:27:17 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:27:17 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:27:17 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:27:17 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:27:17 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:29:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:29:05 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:29:05 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:29:05 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:29:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:29:42 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 17:29:43 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 17:29:44 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 17:29:44 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 17:29:44 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 17:31:01 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:31:01 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:31:02 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:31:02 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:31:02 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:32:49 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:32:50 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:32:50 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:32:50 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:32:51 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:34:38 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:34:38 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:34:38 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:34:38 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:34:39 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:36:26 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:36:26 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:36:26 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:36:27 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:36:27 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:38:14 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:38:14 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:38:15 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:38:15 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:38:15 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:39:52 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 17:39:53 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 17:39:54 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 17:39:54 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 17:39:55 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 17:40:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:40:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:40:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:40:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:40:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:42:00 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:42:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:42:00 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:42:00 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:42:01 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:43:48 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:43:48 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:43:49 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:43:49 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:43:49 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:45:36 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:45:37 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:45:37 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:45:37 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:45:37 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:47:25 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:47:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:47:25 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:47:25 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:47:26 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:49:13 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:49:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:49:13 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:49:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:49:14 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:50:21 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 17:50:21 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 17:50:23 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 17:50:23 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 17:50:23 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 17:51:10 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:51:10 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:51:11 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:51:11 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:51:11 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:52:58 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:52:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:52:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:52:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:52:59 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:54:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:54:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:54:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:54:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:54:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:56:35 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:56:35 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:56:35 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:56:36 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:56:36 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 17:58:23 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 17:58:23 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 17:58:24 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 17:58:24 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 17:58:24 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:00:11 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:00:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:00:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:00:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:00:12 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:00:49 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 18:00:50 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 18:00:51 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 18:00:51 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 18:00:51 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 18:02:08 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:02:09 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:02:09 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:02:09 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:02:09 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:03:57 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:03:57 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:03:57 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:03:57 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:03:58 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:05:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:05:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:05:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:05:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:05:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:07:33 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:07:33 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:07:34 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:07:34 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:07:34 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:09:21 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:09:22 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:09:22 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:09:22 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:09:22 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:10:59 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 18:10:59 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 18:11:00 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 18:11:01 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 18:11:01 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 18:11:18 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:11:18 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:11:19 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:11:19 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:11:19 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:13:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:13:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:13:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:13:07 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:13:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:14:55 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:14:55 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:16:27 - thermeq3 - INFO - --> V147 started with PID=14782 <-- 2015/12/20 18:16:34 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{"total": [0, 0.0], {datetime.datetime.date(datetime.datetime.now()).strftime("%d-%m-%Y"): [0, time.time()]}] 2015/12/20 18:16:36 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/20 18:16:37 - thermeq3 - DEBUG - Creating new daily key: 20-12-2015 2015/12/20 18:16:37 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/20 18:16:43 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 18:16:43 - thermeq3 - DEBUG - Queqing [S] 2015/12/20 18:16:43 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/20 18:16:44 - thermeq3 - DEBUG - Sending message [S] 2015/12/20 18:17:01 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:17:01 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:17:01 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/20 18:17:13 - thermeq3 - ERROR - Error connecting to mail server pop3.virginmedia.com:995. Error code: Connection unexpectedly closed 2015/12/20 18:17:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2015/12/20 18:17:13 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:17:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:17:14 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:17:25 - thermeq3 - ERROR - Error connecting to mail server pop3.virginmedia.com:995. Error code: Connection unexpectedly closed 2015/12/20 18:17:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2015/12/20 18:17:27 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/20 18:17:33 - thermeq3 - DEBUG - Bridge file saved. 2015/12/20 18:17:33 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/20 18:17:34 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 93% 2015/12/20 18:17:35 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/20 18:17:35 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/20 18:17:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:17:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:18:04 - thermeq3 - ERROR - Error connecting to mail server pop3.virginmedia.com:995. Error code: Connection unexpectedly closed 2015/12/20 18:18:04 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2015/12/20 18:18:05 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:18:05 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:18:05 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:19:22 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:19:23 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:19:23 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:19:23 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:19:23 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:21:11 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:21:11 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:21:11 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:21:11 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:21:12 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:22:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:22:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:22:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:23:00 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:23:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:24:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:24:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:24:48 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:24:48 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:24:49 - thermeq3 - DEBUG - Sending message [E] 2015/12/20 18:26:36 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 146] Connection refused 2015/12/20 18:26:36 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 146] Connection refused

2015/12/20 18:26:36 - thermeq3 - DEBUG - Queqing [E] 2015/12/20 18:26:36 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/20 18:26:37 - thermeq3 - DEBUG - Sending message [E]

status=defaults ignore_opened=36 svpnmw=80 interval=90 autoupdate=True error=183 total_switch=150 uptime=1:00:56 current_status={} valve_pos=5 msg= ignored={} profile=time heattime={"total": [0, 0.0], {datetime.datetime.date(datetime.datetime.now()).strftime("%d-%m-%Y"): [0, time.time()]} beta=no preference=per app_uptime=0:01:00 totalerrors=0 heattime_string=0:00:00 command= daily= no_oww=0 mode=auto valves=1

16:09:54 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1526, in doLoop() File "/root/nsm.py", line 1440, in doLoop time.sleep(stp.intervals["slp"][0]) KeyboardInterrupt 16:41:36 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1526, in doLoop() File "/root/nsm.py", line 1399, in doLoop if tryRead("beta", "no", False).upper() == "YES": AttributeError: 'NoneType' object has no attribute 'upper' 16:47:36 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:47:27 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:35:42 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:45:37 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:55:37 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:05:37 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:53:26 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 00:48:14 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 00:58:14 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:53:27 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 10:13:25 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 10:23:25 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 10:33:25 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:54:26 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 11:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 12:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 12:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 12:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 12:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 12:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 12:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 13:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 13:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 13:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 13:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 13:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 13:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 14:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 14:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 14:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 14:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 14:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 14:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 15:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 15:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 15:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 15:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 15:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 15:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 16:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 17:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 17:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 17:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 17:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 17:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 17:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 18:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 18:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 18:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 18:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 18:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 18:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 19:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 19:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 19:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 19:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 19:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 19:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 20:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:03:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:13:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:23:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:33:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:43:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() File "/root/nsm.py", line 1609, in prepare updateStatus("start") NameError: global name 'updateStatus' is not defined 21:53:44 Redirection active Traceback (most recent call last): File "/root/nsm.py", line 1654, in prepare() Fi

autopower commented 8 years ago

Your MAX!Cube refusing connection: "error: [Errno 146] Connection refused". Can you check Max!Cube IP and port for me? It's 192.168.0.222? MAX! software is correctly communicating with MAX!Cube?

dominator99 commented 8 years ago

Hi

I can ping 195.168.0.222 successfully & wireless radstats seem to be talking to Max! cube

Which port should I be checking?

Regards

Chris

On 20/12/2015 18:34, Michal Cheben wrote:

Your MAX!Cube refusing connection: "error: [Errno 146] Connection refused". Can you check Max!Cube IP and port for me? It's 192.168.0.222? MAX! software https://max.eq-3.de/login.jsp#download is correctly communicating with MAX!Cube?

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166146065.

autopower commented 8 years ago

Default port is 62910 Can you ping 192.168.0.222 from yun? And telnet to max!cube: telnet 192.168.0.222 62910 from yun?

dominator99 commented 8 years ago

I have ports Java Max 62910 & Java Max 23272 listed in Windows 7 firewall as allowed (private & public) Is that OK?

Regards

Chris

On 20/12/2015 18:47, Michal Cheben wrote:

Default port is 62910

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166146687.

autopower commented 8 years ago

Can you ping 192.168.0.222 from yun? And telnet to max!cube: telnet 192.168.0.222 62910 from yun? Check: https://github.com/autopower/thermeq3/tree/master/install/diag

dominator99 commented 8 years ago

I can ping from Yun but telnet fails with:

root@ArduinoYun:~# telnet 192.168.0.222 62910 telnet: can't connect to remote host (192.168.0.222): Connection refused

I also tried from Windows 7 & got:

Microsoft Telnet> open 192.168.0.222 62910 Connecting To 192.168.0.222...Could not open connection to the host, on port 62910: Connect failed

Any ideas?

Regards

Chris

On 20/12/2015 18:59, Michal Cheben wrote:

Can you ping 192.168.0.222 from yun? And telnet to max!cube: |telnet 192.168.0.222 62910| from yun?

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166147456.

autopower commented 8 years ago

if you can correctly ping max!cube from win and from yun, there must be another port on max!cube in use, please check port 80 on 192.168.0.222. Can you scan open ports on max!cube? For example with: http://www.advanced-port-scanner.com/ Or use your favourite port scanner.

dominator99 commented 8 years ago

Hi

see attached port scan results - does this mean port 22 is the only open port on the Max! cube wireless connection?

192.168.0.3 is the Max! cube wired connection

Regards

Chris

On 20/12/2015 19:28, Michal Cheben wrote:

if you can correctly ping max!cube from win and from yun, there must be another port on max!cube in use, please check port 80 on 192.168.0.222. Can you scan open ports on max!cube? For example with: http://www.advanced-port-scanner.com/ Or use your favourite port scanner.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166148807.

autopower commented 8 years ago

Hello Chris, just to be sure. Do you have these devices:

dominator99 commented 8 years ago

Hi Michal

After another Yun 'bricking' I finally got Yun working again, followed your readme.md instructions & voila it worked well for 5 minutes anyway!

On my bench simulation I have the loop (green) LED, the red (error) LED, the blue (status) LED & the yellow (relay) LED set up on a breadboard. Initially the green LED was flashing (indicating system was running) then the blue & Yellow LED's lit (indicating the relay was ON) but after a few minutes the blue & yellow LED's turned OFF & the red error LED lit. I rebooted the Yun but same problem.

I've attached logs for your perusal

For the Max! cube I used the address: 192.168.0.3 in config.py (this is the only address reported by the port scanner but I would have expected 2 IP addresses, 1 for wired & 1 for wireless like the Yun).

For the Yun the port scanner reported 2 IP addresses, 192.168.0.5 (wired) & 192.168.0.12 (wireless)

2 steps forward 1 step back but going in the right direction :)

Regards

Chris

On 21/12/2015 07:26, Michal Cheben wrote:

Hello Chris, just to be sure. Do you have these devices:

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166221802.

Lounge party wall Radstat,Lounge party wall Radstat,Radiator Thermostat 1,Radiator Thermostat 1,Lounge gable end Radstat,Lounge gable end Radstat,Radiator Thermostat 1,Radiator Thermostat 1,Radstat Lottie's room,Radstat Lottie's room,Radstat spare room,Radstat spare room,Bathroom Radstat,Bathroom Radstat, 22/12/2015 23:29:14,0,65,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:30:55,1,65,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:32:35,1,65,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:34:15,1,65,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:35:57,1,65,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:37:37,1,52,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:39:27,1,52,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:41:08,1,52,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0, 22/12/2015 23:42:49,1,34,22.0,34,21.5,54,22.0,0,19.0,0,17.0,0,255,0,17.0,

2015/12/22 18:11:45 - thermeq3 - INFO - --> V147 started with PID=989 <-- 2015/12/22 18:11:51 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{'total': [0, 0.0], '22-12-2015': [0, 1450807905.3984958]}] 2015/12/22 23:28:52 - thermeq3 - ERROR - Error loading bridge file, using defaults! 2015/12/22 23:28:52 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:28:56 - thermeq3 - DEBUG - Creating new daily key: 22-12-2015 2015/12/22 23:28:56 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/22 23:29:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:01 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 23:29:02 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 23:29:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:09 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:29:09 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:29:09 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:29:09 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:29:14 - thermeq3 - DEBUG - defaults, 35% at 1 valve(s). 2015/12/22 23:29:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:29:19 - thermeq3 - INFO - heating started due to room Lounge gable end wall, valve Lounge gable end Radstat@[54, 22.0, 21.8] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Queqing [H] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Message queue=['H'] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Sending message [H] 2015/12/22 23:30:55 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:30:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:32:35 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:32:35 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:34:15 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:34:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:35:56 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:35:57 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:37:37 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:37:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:39:15 - thermeq3 - INFO - Total heat counter updated to 0:09:54 2015/12/22 23:39:21 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:39:21 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:39:22 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:39:22 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:39:23 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:39:27 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:39:27 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:41:08 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:41:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:49 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:42:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 34% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:56 - thermeq3 - INFO - heating stopped. 2015/12/22 23:42:56 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:42:56 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:42:57 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:42:58 - thermeq3 - INFO - Total heat counter updated to 0:13:36 2015/12/22 23:44:50 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:44:51 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:44:51 - thermeq3 - DEBUG - No key LEQ0430745 in d_W. Key added. 2015/12/22 23:44:52 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:44:53 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:44:53 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:44:53 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:44:54 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:46:46 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:46:46 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:46:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:48:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:48:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:48:40 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:49:48 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:49:48 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:49:49 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:49:49 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:49:50 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:50:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:50:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:50:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:50:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:50:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:52:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:52:05 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:52:05 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:53:58 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:53:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:53:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:55:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:55:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:55:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:55:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:55:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:57:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:57:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:57:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:59:38 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:59:38 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:59:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:59:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:59:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:00:10 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:00:11 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Day reading warnings value=4 2015/12/23 00:00:11 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 00:00:13 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 00:00:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:24 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:25 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:00:43 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:00:43 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:00:44 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 18:11:31 - thermeq3 - INFO - --> V147 started with PID=1178 <-- 2015/12/22 18:11:41 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:42 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Sending message [S] 2015/12/23 00:02:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:02:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:02:59 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/23 00:02:59 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:00 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:03:01 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:03:01 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 00:03:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:08 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/23 00:03:09 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 00:03:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:03:17 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:03:17 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:03:17 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:03:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:03:40 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:05:34 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:05:34 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:05:34 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:05:34 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:05:35 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:07:27 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:07:27 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:07:27 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:07:27 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:07:28 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:09:20 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:09:20 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:09:20 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:11:13 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:11:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:11:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:13:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:13:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:45 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:13:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:13:46 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:13:46 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:13:47 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:14:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:14:39 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:14:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:14:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:14:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:16:32 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:16:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:16:32 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:16:32 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:16:33 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:18:25 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:18:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:18:25 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Sending message [E]

status=idle ignore_opened=34 svpnmw=75 interval=90 autoupdate=1 error=48 total_switch=150 uptime=0:12:22 current_status={"Lottie's bedroom": {'124620': ["Radstat Lottie's room", '0', '17.0', '0.0', '1']}, 'Bathroom': {'127360': ['Bathroom Radstat', '0', '17.0', '0.0', '1']}, 'Dining room': {'124286': ['Radiator Thermostat 1', '34', '21.5', '0.0', '1']}, 'Lounge gable end wall': {'127C1F': ['Lounge gable end Radstat', '54', '22.0', '21.8', '1']}, 'Spare room': {'124393': ['Radstat spare room', '0', '255', '255', '1']}, 'Study': {'12433C': ['Radiator Thermostat 1', '0', '19.0', '0.0', '1']}, 'Lounge party wall': {'127D37': ['Lounge party wall Radstat', '34', '22.0', '21.4', '1']}} valve_pos=35 msg= ignored={} profile=time heattime={'total': [816, 1450827778.6278901], '22-12-2015': [815, 1450827778.6290532]} beta=no preference=per app_uptime=6:02:08 totalerrors=0 heattime_string=0:13:36 command= daily=0:13:35 no_oww=0 mode=auto valves=2

autopower commented 8 years ago

Hello Chris, this is just guess, find out these lines in nsm.py:

# on some system use code below:
# self.client_socket.setblocking(0)

and uncomment second one. Code will look like:

# on some system use code below:
self.client_socket.setblocking(0)

and also change value in line:

self.timeout = 10

to 15.

dominator99 commented 8 years ago

Hi Michal

Turned system on this morning & instead of the solid ref (error) LED I got the 'disco' lights.

Tried your suggested mod below but after reboot still get the disco lights.

Why did it appear to work for the first 5 minutes yesterday?

PS

In my nsm.py the lines read:

|# on some system use code below: # var.client_socket.setblocking(0) not ||# on some system use code below: # self.client_socket.setblocking(0) I changed mine to read: ||# on some system use code below: var.client_socket.setblocking(0) PPS I rebooted the Max! cube & the 'disco' lights have not returned (yet!) I'll report back later Many thanks again for getting me this far |

Regards

Chris

On 23/12/2015 07:39, Michal Cheben wrote:

Hello Chris, this is just guess, find out these lines in nsm.py:

|# on some system use code below: # self.client_socket.setblocking(0) |

and uncomment second one. Code will look like:

|# on some system use code below: self.client_socket.setblocking(0) |

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166826503.

autopower commented 8 years ago

Can you post or mail log file, error log (if any)? Disco lights comes only if 'quit' command received.

dominator99 commented 8 years ago

Hi Michal

attached files as requested - there are no entries in the error log (take that as a good sign)

Regards

Chris

On 23/12/2015 13:55, Michal Cheben wrote:

Can you post or mail mailto:autopowerdevice@gmail.com log file, error log (if any)? Disco lights comes only if 'quit' command received.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166900680.

2015/12/22 18:11:45 - thermeq3 - INFO - --> V147 started with PID=989 <-- 2015/12/22 18:11:51 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{'total': [0, 0.0], '22-12-2015': [0, 1450807905.3984958]}] 2015/12/22 23:28:52 - thermeq3 - ERROR - Error loading bridge file, using defaults! 2015/12/22 23:28:52 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:28:56 - thermeq3 - DEBUG - Creating new daily key: 22-12-2015 2015/12/22 23:28:56 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/22 23:29:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:01 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 23:29:02 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 23:29:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:09 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:29:09 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:29:09 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:29:09 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:29:14 - thermeq3 - DEBUG - defaults, 35% at 1 valve(s). 2015/12/22 23:29:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:29:19 - thermeq3 - INFO - heating started due to room Lounge gable end wall, valve Lounge gable end Radstat@[54, 22.0, 21.8] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Queqing [H] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Message queue=['H'] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Sending message [H] 2015/12/22 23:30:55 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:30:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:32:35 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:32:35 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:34:15 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:34:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:35:56 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:35:57 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:37:37 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:37:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:39:15 - thermeq3 - INFO - Total heat counter updated to 0:09:54 2015/12/22 23:39:21 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:39:21 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:39:22 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:39:22 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:39:23 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:39:27 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:39:27 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:41:08 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:41:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:49 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:42:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 34% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:56 - thermeq3 - INFO - heating stopped. 2015/12/22 23:42:56 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:42:56 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:42:57 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:42:58 - thermeq3 - INFO - Total heat counter updated to 0:13:36 2015/12/22 23:44:50 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:44:51 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:44:51 - thermeq3 - DEBUG - No key LEQ0430745 in d_W. Key added. 2015/12/22 23:44:52 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:44:53 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:44:53 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:44:53 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:44:54 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:46:46 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:46:46 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:46:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:48:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:48:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:48:40 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:49:48 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:49:48 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:49:49 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:49:49 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:49:50 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:50:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:50:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:50:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:50:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:50:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:52:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:52:05 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:52:05 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:53:58 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:53:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:53:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:55:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:55:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:55:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:55:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:55:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:57:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:57:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:57:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:59:38 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:59:38 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:59:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:59:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:59:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:00:10 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:00:11 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Day reading warnings value=4 2015/12/23 00:00:11 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 00:00:13 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 00:00:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:24 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:25 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:00:43 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:00:43 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:00:44 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 18:11:31 - thermeq3 - INFO - --> V147 started with PID=1178 <-- 2015/12/22 18:11:41 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:42 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Sending message [S] 2015/12/23 00:02:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:02:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:02:59 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/23 00:02:59 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:00 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:03:01 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:03:01 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 00:03:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:08 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/23 00:03:09 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 00:03:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:03:17 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:03:17 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:03:17 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:03:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:03:40 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:05:34 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:05:34 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:05:34 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:05:34 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:05:35 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:07:27 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:07:27 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:07:27 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:07:27 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:07:28 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:09:20 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:09:20 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:09:20 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:11:13 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:11:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:11:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:13:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:13:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:45 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:13:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:13:46 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:13:46 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:13:47 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:14:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:14:39 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:14:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:14:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:14:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:16:32 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:16:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:16:32 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:16:32 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:16:33 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:18:25 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:18:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:18:25 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:20:18 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:20:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:20:19 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:20:19 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:20:19 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:22:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:22:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:22:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:22:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:22:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:23:50 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:23:50 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:23:51 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:23:51 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:23:52 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:24:14 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:24:14 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:24:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:24:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:24:15 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:26:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:26:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:26:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:26:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:26:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:28:00 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:28:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:28:01 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:28:01 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:28:01 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:29:54 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:29:54 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:29:54 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:29:54 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:29:55 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:31:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:31:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:31:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:31:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:31:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:33:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:33:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:33:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:33:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:33:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:34:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:34:18 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:34:19 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:34:20 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:34:20 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:35:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:35:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:35:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:35:13 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:35:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:37:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:37:06 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:37:06 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:37:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:37:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:38:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:38:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:38:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:38:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:39:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:40:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:40:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:40:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:40:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:40:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:42:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:42:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:42:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:42:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:42:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:44:23 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:44:23 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:44:24 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:44:24 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:44:25 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:44:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:44:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:44:48 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:44:48 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:44:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:46:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:46:41 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:46:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:46:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:46:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 18:11:27 - thermeq3 - INFO - --> V147 started with PID=1007 <-- 2015/12/22 18:11:38 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:39 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:39 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:39 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 18:11:44 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 18:11:45 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 18:11:51 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 18:11:52 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 18:11:52 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 96% 2015/12/23 09:00:47 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:00:47 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/23 09:00:52 - thermeq3 - DEBUG - idle, 35% at 1 valve(s). 2015/12/23 09:00:52 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 0.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 0.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Study [12433C] Study radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 0.0'C # 0.0'C (+) 2015/12/23 09:01:29 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 09:01:30 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 09:01:30 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 09:01:30 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 09:01:31 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 09:01:38 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:01:44 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:01:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:01:46 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 96% 2015/12/23 09:01:46 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:01:47 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/23 09:02:51 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:02:51 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 0.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 0.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Study [12433C] Study radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 0.0'C # 0.0'C (+) 2015/12/23 09:04:32 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:04:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 1% @ 20.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 19.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:06:13 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:06:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 1% @ 20.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:07:54 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:07:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:09:35 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:09:36 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:11:16 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:11:17 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:12:00 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:12:00 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:12:02 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:12:02 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:12:02 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:12:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:13:07 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:13:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:14:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:14:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:16:29 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:16:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:18:10 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:18:11 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:19:51 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:19:52 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:21:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:21:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:22:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:22:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:22:17 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:22:17 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:22:17 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:22:18 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:23:22 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:23:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:25:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:25:04 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:26:44 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:26:45 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:28:25 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:28:26 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:30:06 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:30:07 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:31:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:31:48 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:32:31 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:32:31 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:32:32 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:32:32 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:32:33 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:32:33 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:33:37 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:33:38 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:35:18 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:35:19 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:36:59 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:37:00 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:38:40 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:38:41 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:40:22 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:40:22 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:42:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:42:03 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:42:46 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:42:46 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:42:47 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:42:47 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:42:48 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:42:48 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:43:52 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:43:53 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:45:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:45:34 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:47:14 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:47:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:48:56 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:48:56 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:50:37 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:50:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:52:18 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:52:18 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:53:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:53:01 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:53:02 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:53:02 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:53:02 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:53:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:54:07 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:54:07 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:55:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:55:48 - thermeq3 - DEBUG - Actual position

dominator99 commented 8 years ago

Just after I sent the below I noticed the log file wasn't updating since I sent below.

Now when trying tu run WinSCP I get an error message:

Error changing directory to '/mnt/sda1'

Command 'cd "/mnt/sda1"' failed with return code 0 and error message -ash: groups: not found.

I assume this is the reason as sda1 (micro SD card) can't be mounted.

I tried rebooting Yun & Max! cube several times but still the same problem.

I also can't trigger the relay with the radstat 'boost' as before.

I assume all these issues are connected

Any suggestions?

regards

Chris

Hi Michal

attached files as requested - there are no entries in the error log (take that as a good sign)

Regards

Chris

On 23/12/2015 13:55, Michal Cheben wrote:

Can you post or mail mailto:autopowerdevice@gmail.com log file, error log (if any)? Disco lights comes only if 'quit' command received.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166900680.

2015/12/22 18:11:45 - thermeq3 - INFO - --> V147 started with PID=989 <-- 2015/12/22 18:11:51 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{'total': [0, 0.0], '22-12-2015': [0, 1450807905.3984958]}] 2015/12/22 23:28:52 - thermeq3 - ERROR - Error loading bridge file, using defaults! 2015/12/22 23:28:52 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:28:56 - thermeq3 - DEBUG - Creating new daily key: 22-12-2015 2015/12/22 23:28:56 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/22 23:29:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:01 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 23:29:02 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 23:29:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:09 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:29:09 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:29:09 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:29:09 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:29:14 - thermeq3 - DEBUG - defaults, 35% at 1 valve(s). 2015/12/22 23:29:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:29:19 - thermeq3 - INFO - heating started due to room Lounge gable end wall, valve Lounge gable end Radstat@[54, 22.0, 21.8] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Queqing [H] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Message queue=['H'] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Sending message [H] 2015/12/22 23:30:55 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:30:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:32:35 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:32:35 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:34:15 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:34:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:35:56 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:35:57 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:37:37 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:37:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:39:15 - thermeq3 - INFO - Total heat counter updated to 0:09:54 2015/12/22 23:39:21 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:39:21 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:39:22 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:39:22 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:39:23 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:39:27 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:39:27 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:41:08 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:41:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:49 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:42:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 34% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:56 - thermeq3 - INFO - heating stopped. 2015/12/22 23:42:56 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:42:56 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:42:57 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:42:58 - thermeq3 - INFO - Total heat counter updated to 0:13:36 2015/12/22 23:44:50 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:44:51 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:44:51 - thermeq3 - DEBUG - No key LEQ0430745 in d_W. Key added. 2015/12/22 23:44:52 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:44:53 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:44:53 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:44:53 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:44:54 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:46:46 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:46:46 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:46:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:48:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:48:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:48:40 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:49:48 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:49:48 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:49:49 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:49:49 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:49:50 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:50:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:50:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:50:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:50:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:50:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:52:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:52:05 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:52:05 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:53:58 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:53:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:53:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:55:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:55:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:55:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:55:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:55:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:57:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:57:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:57:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:59:38 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:59:38 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:59:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:59:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:59:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:00:10 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:00:11 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Day reading warnings value=4 2015/12/23 00:00:11 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 00:00:13 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 00:00:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:24 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:25 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:00:43 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:00:43 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:00:44 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 18:11:31 - thermeq3 - INFO - --> V147 started with PID=1178 <-- 2015/12/22 18:11:41 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:42 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Sending message [S] 2015/12/23 00:02:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:02:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:02:59 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/23 00:02:59 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:00 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:03:01 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:03:01 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 00:03:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:08 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/23 00:03:09 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 00:03:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:03:17 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:03:17 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:03:17 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:03:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:03:40 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:05:34 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:05:34 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:05:34 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:05:34 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:05:35 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:07:27 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:07:27 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:07:27 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:07:27 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:07:28 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:09:20 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:09:20 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:09:20 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:11:13 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:11:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:11:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:13:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:13:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:45 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:13:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:13:46 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:13:46 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:13:47 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:14:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:14:39 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:14:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:14:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:14:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:16:32 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:16:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:16:32 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:16:32 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:16:33 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:18:25 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:18:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:18:25 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:20:18 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:20:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:20:19 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:20:19 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:20:19 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:22:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:22:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:22:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:22:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:22:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:23:50 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:23:50 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:23:51 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:23:51 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:23:52 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:24:14 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:24:14 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:24:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:24:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:24:15 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:26:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:26:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:26:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:26:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:26:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:28:00 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:28:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:28:01 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:28:01 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:28:01 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:29:54 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:29:54 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:29:54 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:29:54 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:29:55 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:31:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:31:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:31:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:31:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:31:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:33:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:33:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:33:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:33:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:33:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:34:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:34:18 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:34:19 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:34:20 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:34:20 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:35:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:35:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:35:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:35:13 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:35:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:37:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:37:06 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:37:06 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:37:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:37:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:38:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:38:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:38:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:38:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:39:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:40:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:40:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:40:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:40:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:40:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:42:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:42:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:42:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:42:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:42:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:44:23 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:44:23 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:44:24 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:44:24 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:44:25 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:44:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:44:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:44:48 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:44:48 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:44:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:46:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:46:41 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:46:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:46:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:46:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 18:11:27 - thermeq3 - INFO - --> V147 started with PID=1007 <-- 2015/12/22 18:11:38 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:39 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:39 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:39 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 18:11:44 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 18:11:45 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 18:11:51 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 18:11:52 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 18:11:52 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 96% 2015/12/23 09:00:47 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:00:47 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/23 09:00:52 - thermeq3 - DEBUG - idle, 35% at 1 valve(s). 2015/12/23 09:00:52 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 0.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 0.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Study [12433C] Study radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 0.0'C # 0.0'C (+) 2015/12/23 09:01:29 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 09:01:30 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 09:01:30 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 09:01:30 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 09:01:31 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 09:01:38 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:01:44 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:01:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:01:46 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 96% 2015/12/23 09:01:46 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:01:47 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/23 09:02:51 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:02:51 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 0.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 0.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Study [12433C] Study radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 0.0'C # 0.0'C (+) 2015/12/23 09:04:32 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:04:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 1% @ 20.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 19.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:06:13 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:06:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 1% @ 20.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:07:54 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:07:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:09:35 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:09:36 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:11:16 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:11:17 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:12:00 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:12:00 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:12:02 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:12:02 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:12:02 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:12:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:13:07 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:13:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:14:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:14:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:16:29 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:16:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:18:10 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:18:11 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:19:51 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:19:52 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:21:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:21:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:22:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:22:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:22:17 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:22:17 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:22:17 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:22:18 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:23:22 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:23:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:25:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:25:04 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:26:44 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:26:45 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:28:25 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:28:26 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:30:06 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:30:07 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:31:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:31:48 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:32:31 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:32:31 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:32:32 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:32:32 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:32:33 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:32:33 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:33:37 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:33:38 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:35:18 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:35:19 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:36:59 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:37:00 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:38:40 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:38:41 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:40:22 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:40:22 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:42:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:42:03 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:42:46 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:42:46 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:42:47 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:42:47 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:42:48 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:42:48 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:43:52 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:43:53 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:45:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:45:34 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:47:14 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:47:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:48:56 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:48:56 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:50:37 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:50:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:52:18 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:52:18 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:53:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:53:01 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:53:02 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:53:02 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:53:02 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:53:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:54:07 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:54:07 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathro

dominator99 commented 8 years ago

Update

Also just noticed that the FAT32 & Ext4 partitions of the SD card don't have drive letters assigned when I check SD card using Aomei partition assistant under Windows 7. Is this OK?

Just after I sent the below I noticed the log file wasn't updating since I sent below.

Now when trying tu run WinSCP I get an error message:

Error changing directory to '/mnt/sda1'

Command 'cd "/mnt/sda1"' failed with return code 0 and error message -ash: groups: not found.

I assume this is the reason as sda1 (micro SD card) can't be mounted.

I tried rebooting Yun & Max! cube several times but still the same problem.

I also can't trigger the relay with the radstat 'boost' as before.

I assume all these issues are connected

Any suggestions?

regards

Chris

Hi Michal

attached files as requested - there are no entries in the error log (take that as a good sign)

Regards

Chris

On 23/12/2015 13:55, Michal Cheben wrote:

Can you post or mail mailto:autopowerdevice@gmail.com log file, error log (if any)? Disco lights comes only if 'quit' command received.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166900680.

2015/12/22 18:11:45 - thermeq3 - INFO - --> V147 started with PID=989 <-- 2015/12/22 18:11:51 - thermeq3 - ERROR - Bridge error codeword [heattime] value [{'total': [0, 0.0], '22-12-2015': [0, 1450807905.3984958]}] 2015/12/22 23:28:52 - thermeq3 - ERROR - Error loading bridge file, using defaults! 2015/12/22 23:28:52 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:28:52 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:28:56 - thermeq3 - DEBUG - Creating new daily key: 22-12-2015 2015/12/22 23:28:56 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/22 23:29:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:01 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 23:29:02 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 23:29:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:29:09 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:29:09 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:29:09 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:29:09 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:29:14 - thermeq3 - DEBUG - defaults, 35% at 1 valve(s). 2015/12/22 23:29:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:29:19 - thermeq3 - INFO - heating started due to room Lounge gable end wall, valve Lounge gable end Radstat@[54, 22.0, 21.8] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Queqing [H] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Message queue=['H'] 2015/12/22 23:29:20 - thermeq3 - DEBUG - Sending message [H] 2015/12/22 23:30:55 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:30:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:32:35 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:32:35 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:34:15 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:34:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:35:56 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:35:57 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 65% @ 22.0'C # 21.4'C (+) 2015/12/22 23:37:37 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:37:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:39:15 - thermeq3 - INFO - Total heat counter updated to 0:09:54 2015/12/22 23:39:21 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:39:21 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:39:22 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:39:22 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:39:23 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:39:27 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:39:27 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:41:08 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:41:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 52% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:49 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2015/12/22 23:42:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Radiator Thermostat 1@ 34% @ 21.5'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 54% @ 22.0'C # 21.8'C (+) Room: Spare room [124393] Radstat spare room @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Radiator Thermostat 1@ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 34% @ 22.0'C # 21.4'C (+) 2015/12/22 23:42:56 - thermeq3 - INFO - heating stopped. 2015/12/22 23:42:56 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 23:42:56 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 23:42:57 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 23:42:58 - thermeq3 - INFO - Total heat counter updated to 0:13:36 2015/12/22 23:44:50 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:44:51 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:44:51 - thermeq3 - DEBUG - No key LEQ0430745 in d_W. Key added. 2015/12/22 23:44:52 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:44:53 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:44:53 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:44:53 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:44:54 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:46:46 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:46:46 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/22 23:46:46 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/22 23:46:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:46:47 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:48:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:48:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:48:40 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:48:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:49:48 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 23:49:48 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 23:49:49 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/22 23:49:49 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/22 23:49:50 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 23:50:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:50:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:50:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:50:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:50:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:52:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:52:05 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:52:05 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:52:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:53:58 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:53:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:53:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:53:59 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:55:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:55:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:55:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:55:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:55:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:57:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:57:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:57:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:57:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 23:59:38 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/22 23:59:38 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/22 23:59:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/22 23:59:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/22 23:59:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:00:10 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:00:11 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:00:11 - thermeq3 - DEBUG - Day reading warnings value=4 2015/12/23 00:00:11 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 00:00:12 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 00:00:13 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 00:00:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:24 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:00:25 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:00:43 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:00:43 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:00:44 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/22 18:11:31 - thermeq3 - INFO - --> V147 started with PID=1178 <-- 2015/12/22 18:11:41 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:42 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:43 - thermeq3 - DEBUG - Sending message [S] 2015/12/23 00:02:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:02:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:02:59 - thermeq3 - DEBUG - No key 000000 in d_W. Key added. 2015/12/23 00:02:59 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:00 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:03:01 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 00:03:01 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 00:03:02 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 00:03:08 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:08 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/23 00:03:09 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 00:03:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:03:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:03:17 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:03:17 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:03:17 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:03:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:03:40 - thermeq3 - ERROR - Error connecting to mail server mail.foo.local:25. Error code: [Errno -2] Name or service not known 2015/12/23 00:03:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 309, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/lib/python2.7/smtplib.py", line 284, in _get_socket return socket.create_connection((port, host), timeout) File "/usr/lib/python2.7/socket.py", line 553, in create_connection for res in getaddrinfo(host, port, 0, SOCK_STREAM): gaierror: [Errno -2] Name or service not known

2015/12/23 00:03:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:03:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:05:34 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:05:34 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:05:34 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:05:34 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:05:35 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:07:27 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:07:27 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:07:27 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:07:27 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:07:28 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:09:20 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:09:20 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:09:20 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:09:21 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:11:13 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:11:13 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:11:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:11:14 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:13:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:13:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:13:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:13:45 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:13:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:13:46 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:13:46 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:13:47 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:14:39 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:14:39 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:14:39 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:14:39 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:14:40 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:16:32 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:16:32 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:16:32 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:16:32 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:16:33 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:18:25 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:18:25 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:18:25 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:18:26 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:20:18 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:20:19 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:20:19 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:20:19 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:20:19 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:22:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:22:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:22:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:22:12 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:22:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:23:50 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:23:50 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:23:51 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:23:51 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:23:52 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:24:14 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:24:14 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:24:14 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:24:14 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:24:15 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:26:07 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:26:07 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:26:07 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:26:08 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:26:08 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:28:00 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:28:00 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:28:01 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:28:01 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:28:01 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:29:54 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:29:54 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:29:54 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:29:54 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:29:55 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:31:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:31:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:31:47 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:31:47 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:31:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:33:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:33:40 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:33:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:33:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:33:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:34:18 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:34:18 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:34:19 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:34:20 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:34:20 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:35:12 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:35:12 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:35:12 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:35:13 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:35:13 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:37:05 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:37:06 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:37:06 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:37:06 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:37:06 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:38:59 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:38:59 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:38:59 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:38:59 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:39:00 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:40:52 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:40:52 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:40:52 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:40:52 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:40:53 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:42:45 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:42:45 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:42:45 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:42:46 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:42:46 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:44:23 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 00:44:23 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 00:44:24 - thermeq3 - INFO - Current temperature in Bratislava is 3, humidity 100% 2015/12/23 00:44:24 - thermeq3 - DEBUG - OWW interval updated to [780, 2340, 2340] 2015/12/23 00:44:25 - thermeq3 - DEBUG - Valve ignore interval updated to 34 2015/12/23 00:44:47 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:44:47 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:44:48 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:44:48 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:44:48 - thermeq3 - DEBUG - Sending message [E] 2015/12/23 00:46:40 - thermeq3 - ERROR - Error opening connection to MAX Cube. Error: [Errno 149] Operation already in progress 2015/12/23 00:46:41 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 882, in openMAX var.client_socket.connect((stp.max_ip, 62910)) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) error: [Errno 149] Operation already in progress

2015/12/23 00:46:41 - thermeq3 - DEBUG - Queqing [E] 2015/12/23 00:46:41 - thermeq3 - DEBUG - Message queue=['E'] 2015/12/23 00:46:41 - thermeq3 - DEBUG - Sending message [E] 2015/12/22 18:11:27 - thermeq3 - INFO - --> V147 started with PID=1007 <-- 2015/12/22 18:11:38 - thermeq3 - DEBUG - Bridge file loaded. 2015/12/22 18:11:39 - thermeq3 - DEBUG - Queqing [S] 2015/12/22 18:11:39 - thermeq3 - DEBUG - Message queue=['S'] 2015/12/22 18:11:39 - thermeq3 - DEBUG - Sending message [S] 2015/12/22 18:11:44 - thermeq3 - INFO - Zero sized stderr log file, nothing'll be send 2015/12/22 18:11:45 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/22 18:11:51 - thermeq3 - DEBUG - Bridge file saved. 2015/12/22 18:11:52 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/22 18:11:52 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 96% 2015/12/23 09:00:47 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:00:47 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/23 09:00:52 - thermeq3 - DEBUG - idle, 35% at 1 valve(s). 2015/12/23 09:00:52 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 0.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 0.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Study [12433C] Study radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 0.0'C # 0.0'C (+) 2015/12/23 09:01:29 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2015/12/23 09:01:30 - thermeq3 - INFO - 22-12-2015 heating daily summary: 0:13:35 2015/12/23 09:01:30 - thermeq3 - DEBUG - Deleting old daily key: 22-12-2015 2015/12/23 09:01:30 - thermeq3 - DEBUG - Creating new daily key: 23-12-2015 2015/12/23 09:01:31 - thermeq3 - DEBUG - Day reading warnings value=0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 127C1F has value 0 2015/12/23 09:01:31 - thermeq3 - DEBUG - Valve: 12433C has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124620 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124393 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 127360 has value 0 2015/12/23 09:01:32 - thermeq3 - DEBUG - Valve: 124286 has value 0 2015/12/23 09:01:38 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:01:44 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:01:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:01:46 - thermeq3 - INFO - Current temperature in Bratislava is 4, humidity 96% 2015/12/23 09:01:46 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:01:47 - thermeq3 - DEBUG - Valve ignore interval updated to 36 2015/12/23 09:02:51 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:02:51 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 0.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 0.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Study [12433C] Study radstat @ 0% @ 0.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 0.0'C # 0.0'C (+) 2015/12/23 09:04:32 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:04:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 1% @ 20.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 19.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:06:13 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:06:14 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 1% @ 20.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:07:54 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:07:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:09:35 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:09:36 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:11:16 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:11:17 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:12:00 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:12:00 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:12:02 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:12:02 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:12:02 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:12:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:13:07 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:13:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:14:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:14:49 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:16:29 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:16:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:18:10 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:18:11 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:19:51 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:19:52 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:21:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:21:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:22:16 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:22:16 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:22:17 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:22:17 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:22:17 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:22:18 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:23:22 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:23:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:25:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:25:04 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:26:44 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:26:45 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:28:25 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:28:26 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:30:06 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:30:07 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:31:48 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:31:48 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:32:31 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:32:31 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:32:32 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:32:32 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:32:33 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:32:33 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:33:37 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:33:38 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:35:18 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:35:19 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:36:59 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:37:00 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:38:40 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:38:41 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:40:22 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:40:22 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:42:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:42:03 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:42:46 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:42:46 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:42:47 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:42:47 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:42:48 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:42:48 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:43:52 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:43:53 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:45:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:45:34 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:47:14 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:47:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:48:56 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:48:56 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:50:37 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:50:37 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:52:18 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2015/12/23 09:52:18 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Radstat Lottie's room@ 0% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom Radstat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room radstat @ 8% @ 20.0'C # 0.0'C (+) Room: Lounge gable end wall [127C1F] Lounge gable end Radstat@ 0% @ 20.0'C # 0.0'C (+) Room: Spare room [124393] Spare room radstat @ 0% @ 255'C # 255'C (+) Room: Study [12433C] Study radstat @ 3% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Lounge party wall Radstat@ 0% @ 20.0'C # 0.0'C (+) 2015/12/23 09:53:01 - thermeq3 - DEBUG - Bridge file saved. 2015/12/23 09:53:01 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2015/12/23 09:53:02 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2015/12/23 09:53:02 - thermeq3 - INFO - Current temperature in Bratislava is 5, humidity 96% 2015/12/23 09:53:02 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2015/12/23 09:53:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2015/12/23 09:54:07 - thermeq3 - DEBUG - idle,

autopower commented 8 years ago

I'm little bit confused with your setup (max!cube with wifi interface, no mount point for usb/sd card), can you open yun ssh port for me? Please change password to default, so I can check whats going on.

autopower commented 8 years ago

Check out diag.sh And https://github.com/autopower/thermeq3/tree/master/install/diag

dominator99 commented 8 years ago

Hi Michal

sorry about delay but my Yun has 'bricked' permanently this time & I can't reset to factory settings. I've ordered a new one & will get back to you when up & running again

Regards

Chris

On 23/12/2015 20:31, Michal Cheben wrote:

Check out diag.sh https://github.com/autopower/thermeq3/blob/master/install/diag/diag.sh

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-166985304.

dominator99 commented 8 years ago

Hi Michal

I've had the thermeq3 running on the bench successfully for the last few days & have a couple of questions.

  1. How do I get a full days set of readings from the csv file (like hellmostat_20160110-000822.csv) for graphing purposes? The csv files seems to be created randomly. The above file has about 20 minutes of readings & hellmostat_20160110-115032.csv has no readings at all after approx6 hours running time!
  2. What is the meaning of the value after the # sign in: [124286] Dining room stat @ 0% @ 20.0'C # /21.5'C (+)/

Regards

Chris

autopower commented 8 years ago

Hi Chris, ad 1) file you mentioned is from 10/jan/2010, 00:08:22. This file will be closed at midnight. Second one (10/jan/2016 = 20160110) was created 11:50:32. Files are created at midnight or after restart, so if you restarted app (or app crashed) during the day, new file is created. Check for other file from same day. And if there are any of them, please check error file and/or errors in log. ad 2) # sign followed by value is current temperature, as read from valve. Sometimes is 0, because of design of eq3 system.

m

dominator99 commented 8 years ago

Thanks Michal

Regards

Chris

On 10/01/2016 17:48, Michal Cheben wrote:

Hi Chris, ad 1) file you mentioned is from 10/jan/2010, 00:08:22. This file will be closed at midnight. Second one (10/jan/2016 = 20160110) was created 11:50:32. Files are created at midnight or after restart, so if you restarted app (or app crashed) during the day, new file is created. Check for other file from same day. And if there are any of them, please check error file and/or errors in log. ad 2) # sign followed by value is current temperature, as read from valve. Sometimes is 0, because of design of eq3 system.

m

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-170374073.

autopower commented 8 years ago

You are welcome.

dominator99 commented 8 years ago

Hi Michal

All seems to be working normally (finally!)

Have you given any thought to creating graphs from the csv files? [I find graphs much easier to read than csv files :) ] Would Google Charts lend itself to this?

dominator99 commented 8 years ago

Hi Michal

system did not shut down tonight as normal (arround 00:08:00) but continued to run heating. I rebooted Yun but same behaviour; is this normal or because of low outside temps here (approx 2C)?

thanks in anticipation

autopower commented 8 years ago

Hello Chris, would you be so kind and attach log?

dominator99 commented 8 years ago

Hi Michal

see log attached as requested. Any thoughts on the graphing of csv data

Regards

Chris

On 15/01/2016 07:32, Michal Cheben wrote:

Hello Chris, would you be so kind and attach log?

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-171893143.

2016/01/12 00:00:02 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:00:02 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 34% @ 21.5'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 90% @ 23.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 35% @ 20.0'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @100% @ 23.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 61% @ 21.5'C # 21.1'C (+) 2016/01/12 00:01:42 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:01:42 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 34% @ 21.5'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 66% @ 22.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 35% @ 20.0'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @100% @ 22.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 73% @ 22.0'C # 21.1'C (+) 2016/01/12 00:03:21 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:03:21 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 54% @ 22.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 66% @ 22.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @100% @ 22.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 73% @ 22.0'C # 21.1'C (+) 2016/01/12 00:05:01 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:05:01 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 54% @ 22.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 66% @ 22.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @100% @ 22.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 73% @ 22.0'C # 21.1'C (+) 2016/01/12 00:06:41 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:06:41 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 54% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 66% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 88% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 73% @ 19.0'C # 21.1'C (+) 2016/01/12 00:07:47 - thermeq3 - INFO - Total heat counter updated to 1 day, 9:23:06 2016/01/12 00:07:47 - thermeq3 - INFO - 11-01-2016 heating daily summary: 8:29:58 2016/01/12 00:07:47 - thermeq3 - DEBUG - Deleting old daily key: 11-01-2016 2016/01/12 00:07:47 - thermeq3 - DEBUG - Creating new daily key: 12-01-2016 2016/01/12 00:07:48 - thermeq3 - DEBUG - Day reading warnings value=148 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 127D37 has value 0 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 124393 has value 8 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 12433C has value 1 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 127360 has value 11 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 127C1F has value 28 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 124286 has value 96 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 1171C4 has value 0 2016/01/12 00:07:48 - thermeq3 - DEBUG - Valve: 124620 has value 23 2016/01/12 00:07:53 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 00:07:59 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 00:07:59 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 00:08:00 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 00:08:00 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 00:08:00 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 00:08:00 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 00:08:34 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:08:34 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:08:40 - thermeq3 - INFO - heating stopped. 2016/01/12 00:08:40 - thermeq3 - DEBUG - Queqing [S] 2016/01/12 00:08:40 - thermeq3 - DEBUG - Message queue=['S'] 2016/01/12 00:08:41 - thermeq3 - DEBUG - Sending message [S] 2016/01/12 00:08:41 - thermeq3 - INFO - Total heat counter updated to 1 day, 9:23:59 2016/01/12 00:10:16 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:10:16 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:11:56 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:11:56 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:13:36 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:13:36 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:15:16 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:15:16 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:16:56 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:16:56 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:18:02 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2016/01/12 00:18:08 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 00:18:08 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 00:18:09 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 00:18:09 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 00:18:09 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 00:18:09 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 00:18:44 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:18:44 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:20:23 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:20:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:22:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:22:03 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:23:43 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:23:43 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:25:23 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:25:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:27:03 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:27:03 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:28:15 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 00:28:15 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 00:28:16 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 00:28:16 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 00:28:16 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 00:28:16 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 00:28:50 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:28:50 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 0% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:30:30 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:30:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 30% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:32:10 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:32:10 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 30% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:33:50 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:33:50 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 14% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 30% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:35:30 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 00:35:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 14% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 41% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2016/01/12 00:35:35 - thermeq3 - INFO - heating started due to room Study, valve Study stat@[47, 20.5, 24.7] 2016/01/12 00:35:36 - thermeq3 - DEBUG - Queqing [H] 2016/01/12 00:35:36 - thermeq3 - DEBUG - Message queue=['H'] 2016/01/12 00:35:36 - thermeq3 - DEBUG - Sending message [H] 2016/01/12 00:37:11 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 00:37:11 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 24% @ 17.0'C # 0.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 0% @ 19.0'C # 21.7'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 14% @ 19.0'C # 0.0'C (+) Room: Spare room [124393] Spare room stat @ 34% @ 18.0'C # 18.1'C (+) Room: Study [12433C] Study stat @ 47% @ 20.5'C # 24.7'C (+) Room: Lounge party wall [127D37] Party wall stat @ 41% @ 19.0'C # 25.2'C (+) Room: Landing [1171C4] Landing stat @ 0% @ 19.0'C # 21.1'C (+) 2015/10/03 13:54:33 - thermeq3 - INFO - --> V147 started with PID=1224 <-- 2015/10/03 13:54:45 - thermeq3 - DEBUG - Bridge file loaded. 2015/10/03 13:54:45 - thermeq3 - INFO - 12-01-2016 heating daily summary: 0:00:53 2015/10/03 13:54:45 - thermeq3 - DEBUG - Deleting old daily key: 12-01-2016 2015/10/03 13:54:45 - thermeq3 - ERROR - Can't close CSV file! 2015/10/03 13:54:46 - thermeq3 - DEBUG - Creating new daily key: 03-10-2015 2015/10/03 13:54:46 - thermeq3 - DEBUG - Day reading warnings value=0 2016/01/12 11:13:44 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:13:44 - thermeq3 - DEBUG - Queqing [S] 2016/01/12 11:13:44 - thermeq3 - DEBUG - Message queue=['S'] 2016/01/12 11:13:44 - thermeq3 - DEBUG - Sending message [S] 2016/01/12 11:13:48 - thermeq3 - INFO - 03-10-2015 heating daily summary: 0:00:00 2016/01/12 11:13:48 - thermeq3 - DEBUG - Deleting old daily key: 03-10-2015 2016/01/12 11:13:49 - thermeq3 - DEBUG - Creating new daily key: 12-01-2016 2016/01/12 11:13:49 - thermeq3 - DEBUG - Day reading warnings value=0 2016/01/12 11:13:54 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:14:07 - thermeq3 - ERROR - Error connecting to mail server smtp.virginmedia.com:465. Error code: Connection unexpectedly closed 2016/01/12 11:14:08 - thermeq3 - ERROR - Traceback: Traceback (most recent call last): File "/root/nsm.py", line 442, in sendEmail server = smtplib.SMTP(stp.mailserver, stp.mailport) File "/usr/lib/python2.7/smtplib.py", line 249, in init (code, msg) = self.connect(host, port) File "/usr/lib/python2.7/smtplib.py", line 310, in connect (code, msg) = self.getreply() File "/usr/lib/python2.7/smtplib.py", line 361, in getreply raise SMTPServerDisconnected("Connection unexpectedly closed") SMTPServerDisconnected: Connection unexpectedly closed

2016/01/12 11:14:09 - thermeq3 - ERROR - Unable to get latest version info - HTTPError = Not Found 2016/01/12 11:14:15 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:14:15 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 11:14:16 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 11:14:16 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 81% 2016/01/12 11:14:16 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 11:14:16 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 11:14:20 - thermeq3 - DEBUG - idle, 35% at 1 valve(s). 2016/01/12 11:14:20 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:14:26 - thermeq3 - INFO - heating started due to room Spare room, valve Spare room stat @[43, 18.0, 17.8] room Landing, valve Landing stat@[37, 20.0, 0.0] 2016/01/12 11:14:26 - thermeq3 - DEBUG - Queqing [H] 2016/01/12 11:14:26 - thermeq3 - DEBUG - Message queue=['H'] 2016/01/12 11:14:26 - thermeq3 - DEBUG - Sending message [H] 2016/01/12 11:16:01 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:16:01 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:17:41 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:17:41 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:19:21 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:19:21 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:21:01 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:21:01 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:22:41 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:22:41 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:24:17 - thermeq3 - INFO - Total heat counter updated to 1 day, 9:33:49 2016/01/12 11:24:23 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:24:23 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 11:24:24 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 11:24:24 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 81% 2016/01/12 11:24:24 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 11:24:24 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 11:24:28 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:24:28 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:26:08 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:26:09 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 9% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:27:48 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:27:48 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 8% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 13% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:29:28 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:29:28 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 7% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:31:08 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:31:08 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 7% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:32:48 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:32:48 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 5% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:34:25 - thermeq3 - INFO - Total heat counter updated to 1 day, 9:43:56 2016/01/12 11:34:30 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:34:31 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 11:34:31 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 11:34:31 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 81% 2016/01/12 11:34:31 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 11:34:32 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 11:34:36 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:34:36 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 4% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 37% @ 20.0'C # 0.0'C (+) 2016/01/12 11:36:16 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:36:16 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 3% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 19.0'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:37:55 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:37:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:39:35 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:39:35 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:41:15 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:41:15 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:42:55 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:42:55 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:44:32 - thermeq3 - INFO - Total heat counter updated to 1 day, 9:54:02 2016/01/12 11:44:38 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:44:38 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 11:44:39 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 11:44:39 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 11:44:39 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 11:44:39 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 11:44:43 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:44:43 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:46:23 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:46:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:48:03 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:48:03 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:49:43 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:49:43 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:51:23 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:51:23 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 3% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:53:02 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:53:02 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 3% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:54:39 - thermeq3 - INFO - Total heat counter updated to 1 day, 10:04:08 2016/01/12 11:54:45 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 11:54:45 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 11:54:46 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 11:54:46 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 11:54:46 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 11:54:46 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 11:54:50 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:54:50 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 3% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:56:30 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:56:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 4% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:58:10 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:58:10 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 5% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 11:59:50 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 11:59:50 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 5% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:01:30 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 12:01:30 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 6% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:03:10 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 12:03:10 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 7% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 43% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:04:46 - thermeq3 - INFO - Total heat counter updated to 1 day, 10:14:14 2016/01/12 12:04:52 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 12:04:52 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 12:04:53 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 12:04:53 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 12:04:53 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 12:04:53 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 12:04:58 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/12 12:04:58 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 7% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:05:04 - thermeq3 - INFO - heating stopped. 2016/01/12 12:05:04 - thermeq3 - DEBUG - Queqing [S] 2016/01/12 12:05:04 - thermeq3 - DEBUG - Message queue=['S'] 2016/01/12 12:05:04 - thermeq3 - DEBUG - Sending message [S] 2016/01/12 12:05:05 - thermeq3 - INFO - Total heat counter updated to 1 day, 10:14:32 2016/01/12 12:06:40 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:06:40 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 9% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:08:20 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:08:20 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 23% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 9% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:10:00 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:10:00 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 9% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:11:40 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:11:40 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:13:19 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:13:19 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:15:02 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 12:15:02 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 12:15:03 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 12:15:03 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 12:15:03 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 12:15:03 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 12:15:07 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:15:07 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:16:47 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:16:47 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:18:26 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:18:26 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:20:06 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:20:06 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:21:46 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:21:46 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 10% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:23:26 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:23:26 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 9% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 13% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 37% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:25:08 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 12:25:08 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 12:25:09 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 12:25:09 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 12:25:09 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 12:25:09 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 12:25:13 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:25:13 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 7% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:26:53 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:26:53 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 5% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:28:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:28:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 5% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:30:13 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:30:13 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 4% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:31:53 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:31:53 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 3% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:33:33 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:33:33 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 2% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:35:14 - thermeq3 - DEBUG - Bridge file saved. 2016/01/12 12:35:15 - thermeq3 - DEBUG - Public IP address: 86.6.59.107 2016/01/12 12:35:15 - thermeq3 - INFO - Difference between Yahoo and OWM temperatures. Yahoo=5.0 OWM=3.0 2016/01/12 12:35:15 - thermeq3 - INFO - Current temperature in Bristol is 5, humidity 87% 2016/01/12 12:35:15 - thermeq3 - DEBUG - OWW interval updated to [840, 2520, 2520] 2016/01/12 12:35:16 - thermeq3 - DEBUG - Valve ignore interval updated to 38 2016/01/12 12:35:20 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:35:20 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 0% @ 17.0'C # 18.4'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 0.0'C (+) Room: Dining room [124286] Dining room stat @ 1% @ 20.0'C # 21.3'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @ 0% @ 21.5'C # 24.7'C (+) Room: Spare room [124393] Spare room stat @ 33% @ 18.0'C # 17.8'C (+) Room: Study [12433C] Study stat @ 0% @ 18.5'C # 0.0'C (+) Room: Lounge party wall [127D37] Party wall stat @ 47% @ 21.5'C # 22.8'C (+) Room: Landing [1171C4] Landing stat @ 27% @ 20.0'C # 0.0'C (+) 2016/01/12 12:37:00 - thermeq3 - DEBUG - idle, 35% at 2 valve(s). 2016/01/12 12:37:00 - thermeq3 - DEBUG - Ac

dominator99 commented 8 years ago

above log seems to be truncated to 12Jan 2016 whereas my sent attachment shows up to 15 Jan 2016; is there a limit to the log file size on Github?

dominator99 commented 8 years ago

here's a truncated version of above log

truncated hellmostat log.txt

dominator99 commented 8 years ago

Hi Michal

Would it be possible to add the actual room temperatures read from the EQ-3 radstats to the daily csv files? (the temp after the # sign, I believe, in the single temp example below) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 20.5'C (+)

autopower commented 8 years ago

It's already there, first value is valve open [%], second one actual temperature [deg C]. Second one is 0 if thermostat reported so. ad "here's a truncated version of above log", the date is 14/jan/2016?

dominator99 commented 8 years ago

Surely the entry Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 20.5'C (+) is from the daily log file not daily csv file.

My daily csv file has entries like Lounge party wall Radstat Lounge party wall Radstat setting Dining room radstat Dining room radstat setting but not the third log file entry shown above Or am I missing something here :)

I don't understand your comment "It's already there, first value is valve open [%], second one actual temperature [deg C]. Second one is 0 if thermostat reported so." In my daily csv files the second entry above only changes when the daily temperature program of the radstat valve changes & this is no third entry Your comment "Second one is 0 if thermostat reported so" has me puzzled :) Should this read "Third one is 0 if thermostat reported so"? I thought this third entry was the previous radstat temp reading?

dominator99 commented 8 years ago

I should have mentioned that I've managed to 'chart' the daily csv readings after opening with OpenOffice spreadsheet, which displays the radstat % valve opening quite nicely. I would like to be able to include the varying daily room temps alongside the % valve opening hence for the request for including the room temps in the daily csv file where it can be imported into the spreadsheet easily. I can see the room temps are included in the daily log but I can't import into the spreadsheet from there. I hope the above explaination is clear :)

Thanks Michal (sorry to be a pain!)

dominator99 commented 8 years ago

Hi Michal

see attached copy of csv file & chart from Open Office spreadsheet

Regards

Chris

On 17/01/2016 16:27, Michal Cheben wrote:

It's already there, first value is valve open [%], second one actual temperature [deg C]. Second one is 0 if thermostat reported so.

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-172347044.

autopower commented 8 years ago

At first, you are not a pain. Keep asking, any question can help another user. ad csv: may be I'm lost but I didn't see any attachment. If your CSV looks like mine: 17/01/2016 00:04:57,0,15,20.0,62,20.0,18,20.0,17,20.0,18,20.5,0,20.5,0,20.5 it means: that 17/jan/2016 at 00:04:57 is heating off (0), first room valve is 15% opened, thermostat reading tells me that in room is 20.0 degC, second room valse is 62% opened, 20.0 degC, third 18% opened, 20.0 degC and so on. Just paste one line from CSV and I'll take a look...

dominator99 commented 8 years ago

here's 1st line of my csv

0 = OFF 1 = ON  % radstat valve open    temp °C    % radstat valve open 

temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C 10/01/16 12:24 0 52 21.5 5 20 23 18 0 20.5 0 17 0 21.5 0 17 29 20

The only time my 'temp C' box changes value is at the same time my room's programmed temps change, so it looks to me as though this 'temp C' box is not the actual room temp, which would change over time, but the programmed temp.

My first 'temp C' box reads 21.5 C from start of csv file @ 12:24 until 16:22 when it changes to 22 C & stays at 22 C until 23:59 these are the pre programmed temp settings for this room NOT the actual room temps (which I would expect to fluctuate over time)

I hope this makes sense :)

Regards

Chris

On 17/01/2016 22:37, Michal Cheben wrote:

At first, you are not a pain. Keep asking, any question can help another user. ad csv: may be I'm lost but I didn't see any attachment. If your CSV looks like mine: '17/01/2016 00:04:57,0,15,20.0,62,20.0,18,20.0,17,20.0,18,20.5,0,20.5,0,20.5' it means: that 17/jan/2016 at 00:04:57 is heating off (0), first room valve is 15% opened, thermostat reading tells me that in room is 20.0 degC, second room valse is 62% opened, 20.0 degC, third 18% opened, 20.0 degC and so on. Just paste one line from CSV and I'll take a look...

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-172391602.

dominator99 commented 8 years ago

here's 1st line of my csv

0 = OFF 1 = ON  % radstat valve open    temp °C    % radstat valve open 

temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C % radstat valve open temp °C 10/01/16 12:24 0 52 21.5 5 20 23 18 0 20.5 0 17 0 21.5 0 17 29 20

The only time my 'temp C' box changes value is at the same time my room's programmed temps change, so it looks to me as though this 'temp C' box is not the actual room temp, which would change over time, but the programmed temp.

My first 'temp C' box reads 21.5 C from start of csv file @ 12:24 until 16:22 when it changes to 22 C & stays at 22 C until 23:59 these are the pre programmed temp settings for this room NOT the actual room temps (which I would expect to fluctuate over time)

I hope this makes sense :)

ps

this is copied from my hellmostat log file

2016/01/17 23:51:45 - thermeq3 - DEBUG - heating, 35% at 2 valve(s). 2016/01/17 23:51:45 - thermeq3 - DEBUG - Actual positions: Room: Lottie's bedroom [124620] Lottie's stat @ 47% @ 17.0'C # 16.0'C (+) Room: Bathroom [127360] Bathroom stat @ 0% @ 17.0'C # 20.7'C (+) Room: Dining room [124286] Dining room stat @100% @ 21.5'C # 21.4'C (+) Room: Lounge gable end wall [127C1F] Gable end stat @100% @ 22.5'C # 20.8'C (+) Room: Spare room [124393] Spare room stat @ 44% @ 18.0'C # 20.6'C (+) Room: Study [12433C] Study stat @ 48% @ 19.0'C # 20.0'C (+) Room: Lounge party wall [127D37] Party wall stat @100% @ 22.5'C # 21.5'C (+) Room: Landing [1171C4] Landing stat @ 80% @ 21.5'C # 21.9'C (+)

The temp entry after the valve open position is the radstat programmed temp not the actual room temp (which I think is the last entry)

Regards

Chris

On 17/01/2016 22:37, Michal Cheben wrote:

At first, you are not a pain. Keep asking, any question can help another user. ad csv: may be I'm lost but I didn't see any attachment. If your CSV looks like mine: '17/01/2016 00:04:57,0,15,20.0,62,20.0,18,20.0,17,20.0,18,20.5,0,20.5,0,20.5' it means: that 17/jan/2016 at 00:04:57 is heating off (0), first room valve is 15% opened, thermostat reading tells me that in room is 20.0 degC, second room valse is 62% opened, 20.0 degC, third 18% opened, 20.0 degC and so on. Just paste one line from CSV and I'll take a look...

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-172391602.

dominator99 commented 8 years ago

Hi Michal

just found this:

  Actual Temperature (HeaterThermostat)

If a HeaterThermostat is in 'auto' mode, the actual temperature is sometimes returned at offset 8-9. This seems to only appear when the valve moves, although changing the set temperature might be enough. In adition, if the HeaterThermostat is in a room that has a linked WallMountedThermostat, this shows the temperature measured by the WallMountedThermostat instead.

|8 Actual Temperature 2 205 offset| 8 | ... | 9 | hex | 01 | | 32 | binary| 0000 0001 | ... | 0011 0010 | | |||| |||| +---------++++-++++--- actual temperature (°C*10): 100110010 = 30.6°C Would this explain why the last figure in: |

Room: Bathroom [127360] Bathroom stat @ 0% @ 17.5'C # 0.0'C (+) for example, is 0.0?

This figure of 0.0 will only change when the radstat valve changes position (moves)?

Regards

Chris

On 17/01/2016 22:37, Michal Cheben wrote:

At first, you are not a pain. Keep asking, any question can help another user. ad csv: may be I'm lost but I didn't see any attachment. If your CSV looks like mine: '17/01/2016 00:04:57,0,15,20.0,62,20.0,18,20.0,17,20.0,18,20.5,0,20.5,0,20.5' it means: that 17/jan/2016 at 00:04:57 is heating off (0), first room valve is 15% opened, thermostat reading tells me that in room is 20.0 degC, second room valse is 62% opened, 20.0 degC, third 18% opened, 20.0 degC and so on. Just paste one line from CSV and I'll take a look...

— Reply to this email directly or view it on GitHub https://github.com/autopower/thermeq3/issues/5#issuecomment-172391602.