From b5cff285bca8b292197b63c90fc3b813df1e5270 Mon Sep 17 00:00:00 2001 From: mckbrmn Date: Sat, 11 Jan 2025 17:03:34 +0100 Subject: [PATCH] Add SwitchBot Bot commands (#13) --- switchbot_api/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/switchbot_api/__init__.py b/switchbot_api/__init__.py index 0bfb928..4ae495e 100644 --- a/switchbot_api/__init__.py +++ b/switchbot_api/__init__.py @@ -172,6 +172,12 @@ class VacuumCommands(Commands): POW_LEVEL = "PowLevel" +class BotCommands(Commands): + """Bot commands.""" + + PRESS = "press" + + T = TypeVar("T", bound=CommonCommands)