From bbfe9d7261bb1adfe3baeedcb868380519354b2a Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Sat, 11 Jan 2020 18:51:16 +0100 Subject: [PATCH] add category for TVs This is not backed by any documentation or specification but by https://github.com/jlusiardi/homekit_python/issues/170 --- homekit/model/categories.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homekit/model/categories.py b/homekit/model/categories.py index c28c6f9f..029e01e7 100644 --- a/homekit/model/categories.py +++ b/homekit/model/categories.py @@ -48,6 +48,7 @@ class _Categories(object): SPRINKLER = 28 FAUCET = 29 SHOWER_SYSTEM = 30 + TV = 31 REMOTE = 32 def __init__(self): @@ -78,6 +79,7 @@ def __init__(self): _Categories.SPRINKLER: 'Sprinkler', _Categories.FAUCET: 'Faucet', _Categories.SHOWER_SYSTEM: 'Shower System', + _Categories.TV: 'TV', _Categories.REMOTE: 'Remote', }