From d974be53296480d6255da6a3da158039ee1574fe Mon Sep 17 00:00:00 2001 From: UpstreamData Date: Mon, 3 Jan 2022 15:17:09 -0700 Subject: [PATCH] finished bosminer docs --- API/bosminer.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/API/bosminer.py b/API/bosminer.py index 28d8e514..49704304 100644 --- a/API/bosminer.py +++ b/API/bosminer.py @@ -206,6 +206,8 @@ class BOSMinerAPI(BaseMinerAPI): API 'pause' command. Pauses mining and stops power consumption and waits for resume command. + + Returns a dict stating that the miner paused mining. """ return await self.send_command("pause") @@ -214,5 +216,7 @@ class BOSMinerAPI(BaseMinerAPI): API 'pause' command. Resumes mining on the miner. + + Returns a dict stating that the miner resumed mining. """ return await self.send_command("resume")