diff --git a/kasa/smartcam/modules/babycrydetection.py b/kasa/smartcam/modules/babycrydetection.py index e9e32371..ecad1e83 100644 --- a/kasa/smartcam/modules/babycrydetection.py +++ b/kasa/smartcam/modules/babycrydetection.py @@ -30,7 +30,7 @@ class BabyCryDetection(SmartCamModule): attribute_getter="enabled", attribute_setter="set_enabled", type=Feature.Type.Switch, - category=Feature.Category.Primary, + category=Feature.Category.Config, ) ) diff --git a/kasa/smartcam/modules/motiondetection.py b/kasa/smartcam/modules/motiondetection.py index 33067bdf..a30448f8 100644 --- a/kasa/smartcam/modules/motiondetection.py +++ b/kasa/smartcam/modules/motiondetection.py @@ -30,7 +30,7 @@ class MotionDetection(SmartCamModule): attribute_getter="enabled", attribute_setter="set_enabled", type=Feature.Type.Switch, - category=Feature.Category.Primary, + category=Feature.Category.Config, ) ) diff --git a/kasa/smartcam/modules/persondetection.py b/kasa/smartcam/modules/persondetection.py index 641609d5..5d40ce51 100644 --- a/kasa/smartcam/modules/persondetection.py +++ b/kasa/smartcam/modules/persondetection.py @@ -30,7 +30,7 @@ class PersonDetection(SmartCamModule): attribute_getter="enabled", attribute_setter="set_enabled", type=Feature.Type.Switch, - category=Feature.Category.Primary, + category=Feature.Category.Config, ) ) diff --git a/kasa/smartcam/modules/tamperdetection.py b/kasa/smartcam/modules/tamperdetection.py index 32b352f7..4705d36c 100644 --- a/kasa/smartcam/modules/tamperdetection.py +++ b/kasa/smartcam/modules/tamperdetection.py @@ -30,7 +30,7 @@ class TamperDetection(SmartCamModule): attribute_getter="enabled", attribute_setter="set_enabled", type=Feature.Type.Switch, - category=Feature.Category.Primary, + category=Feature.Category.Config, ) )