You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
I found that the new RT-1250 is not compatible with this. they made some changes but was able to update a few files to get this working. The new recteq has a 22 digit non hex Device ID.
1st. Go to /custom_components/recteq/
2nd. Edit const.py and change: LEN_DEVICE_ID = 20
to LEN_DEVICE_ID = 22
if (len(user_input[CONF_DEVICE_ID]) != LEN_DEVICE_ID or
not all(c in string.hexdigits for c in user_input[CONF_DEVICE_ID])):
self._errors[CONF_DEVICE_ID] = STR_INVALID_PREFIX + CONF_DEVICE_ID
to
if (len(user_input[CONF_DEVICE_ID]) != LEN_DEVICE_ID ):
self._errors[CONF_DEVICE_ID] = STR_INVALID_PREFIX + CONF_DEVICE_ID
finally restart home assistant and try to install device again.
The text was updated successfully, but these errors were encountered:
I found that the new RT-1250 is not compatible with this. they made some changes but was able to update a few files to get this working. The new recteq has a 22 digit non hex Device ID.
1st. Go to /custom_components/recteq/
2nd. Edit const.py and change:
LEN_DEVICE_ID = 20
to
LEN_DEVICE_ID = 22
and
to
3rd. Edit config_flow.py and change:
to
finally restart home assistant and try to install device again.
The text was updated successfully, but these errors were encountered: