chomupashchuk / ariston-remotethermo-home-assistant-v2

Ariston NET remotethermo integration for Home Assistant based on API
MIT License
94 stars 22 forks source link

599 errors (solved) #28

Closed vmanuel closed 2 years ago

vmanuel commented 2 years ago

I had some 599 erros in my multizone boiler.

It worked making this change in get_main (adding some parameters)

def _send_params_get_main(self):
        result = ['?zoneNum={0}&umsys=si&firstRoundTrip=true&twoPhaseRefresh=false']
        if self._zones > 1:
            for zone in range(self._ADD_ZONES_START, self._zones + 1):
                result.append(f'?zoneNum={zone}&umsys=si&firstRoundTrip=true&twoPhaseRefresh=false')
        return result
chomupashchuk commented 2 years ago

included in 1.0.49