FutureNow problem

Hi,
I have problem with FutureNow relay box. I have configured the box in this way but it dosen’t work:

light:

  • platform: futurenow
    driver: FNIP8x10a
    host: 192.168.0.142
    port: 7078
    devices:
    1:
    name: Relay Channel 1
    2:
    name: Relay Channel 2

And the log:

futurenow: Error on device update!
Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity_platform.py", line 248, in _async_add_entity
    await entity.async_device_update(warning=False)
  File "/usr/local/lib/python3.6/site-packages/homeassistant/helpers/entity.py", line 322, in async_device_update
    yield from self.hass.async_add_job(self.update)
  File "/usr/local/lib/python3.6/concurrent/futures/thread.py", line 56, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.6/site-packages/homeassistant/components/light/futurenow.py", line 128, in update
    state = int(self._light.is_on())
  File "/usr/local/lib/python3.6/site-packages/pyfnip/__init__.py", line 62, in is_on
    status = self.get_status(find)
  File "/usr/local/lib/python3.6/site-packages/pyfnip/__init__.py", line 45, in get_status
    tree = ElementTree.fromstring(response.content)
  File "/usr/local/lib/python3.6/xml/etree/ElementTree.py", line 1314, in XML
    parser.feed(text)
  File "<string>", line None
xml.etree.ElementTree.ParseError: syntax error: line 1, column 0

So can someone tells what is wrong? :slight_smile:

It seems that you must disable authentication of the FutureNow unit, until auth is supported is added to the component.

1 Like

Now it works. Thank You!