Open pjrish opened 9 months ago
This is old, but I started looking at Home Assistant TiVo integration. @pjrish, are you using Virgin Tivo in the US?
This is old, but I started looking at Home Assistant TiVo integration. @pjrish, are you using Virgin Tivo in the US?
Yes, Comcast / XFinity.
@pjrish Nice. Would you mind sharing your configuration?
@almoney here is what I have been using. Also remember I had to change a line in the source code, as mentioned above. This has been working for about 2 years +/-. Hope this helps!
config.yaml:
` media_player:
I have too many TiVos so I also increased the number of TIVO_IDS to 50 on line 105:
TIVO_IDS = vol.All(vol.Coerce(int), vol.Range(min=1, max=50))
Good morning,
For thos of us in the USA, many providers use 4-digit channel codes. Changing line 108 to the following fixes the configuration and compatibility issues:
CHANNEL_IDS = vol.All(vol.Coerce(int), vol.Range(min=1, max=9999))
Thank you!