feature: add support for goldshell mode settings.

This commit is contained in:
b-rowan
2024-02-10 14:23:17 -07:00
parent 34584ab098
commit 09bc9686ae
3 changed files with 19 additions and 2 deletions

View File

@@ -138,5 +138,8 @@ class GoldshellWebAPI(BaseWebAPI):
async def setting(self) -> dict:
return await self.send_command("setting")
async def set_setting(self, values: dict):
await self.send_command("setting", **values)
async def status(self) -> dict:
return await self.send_command("status")