Me again.

I have bought an RX-A3070 to replace my old RX-V3067, and it seems like everything's working as before. But I am trying to implement a new thing, and that doesn't work. I want to check for a loaded scene, since I have both regular presence and Atmos speakers, and I use a relay to switch between them. So when EventGhost notices that I have chosen scene 3 (which is Dolby Atmos/DTS-X from the Blu-ray player) or 4 (which is the same from the HDPC), it should change the relay setting to on, while it should turn off the relay when I change that (by either switching to scene 1 or 2, or by changing the input).
Code: Select all
objects.append(["Input_Sel","Main Zone"])
objects.append(["Scene_Sel","Main Zone"])
This just gives me an error:
18:23:13 Exception in thread Thread-168886:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "155", line 137, in worker
18:23:13 File "C:\Program Files (x86)\EventGhost\plugins\yamaha-network-receivers-master\client.py", line 558, in __call__
18:23:13 return get_status_string(self.plugin, object,zone)
18:23:13 File "C:\Program Files (x86)\EventGhost\plugins\yamaha-network-receivers-master\yamaha_xml.py", line 135, in get_status_string
18:23:13 value = xmldoc.getElementsByTagName(param)[0].firstChild.data
18:23:13 IndexError: list index out of range
18:23:13
18:23:13 Exception in thread Thread-168884:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "155", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168883:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "155", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168885:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "155", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168887:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "155", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168888:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "155", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168867:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "152", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168871:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "152", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168868:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 File "152", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
18:23:13 Exception in thread Thread-168872:
18:23:13 Exception in thread Thread-168869:
18:23:13 Traceback (most recent call last):
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 File "threading.pyc", line 484, in run
18:23:13 Traceback (most recent call last):
18:23:13 File "152", line 143, in worker
18:23:13 File "threading.pyc", line 532, in __bootstrap_inner
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13 File "threading.pyc", line 484, in run
18:23:13
18:23:13 File "152", line 143, in worker
18:23:13 AttributeError: 'NoneType' object has no attribute 'sleep'
18:23:13
I have tried different synthaxes, but none seem work. Is this not implemented, is that why I'm not getting anything?