finished bosminer docs

This commit is contained in:
UpstreamData
2022-01-03 15:17:09 -07:00
parent 8c147283ba
commit d974be5329

View File

@@ -206,6 +206,8 @@ class BOSMinerAPI(BaseMinerAPI):
API 'pause' command. API 'pause' command.
Pauses mining and stops power consumption and waits for resume 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") return await self.send_command("pause")
@@ -214,5 +216,7 @@ class BOSMinerAPI(BaseMinerAPI):
API 'pause' command. API 'pause' command.
Resumes mining on the miner. Resumes mining on the miner.
Returns a dict stating that the miner resumed mining.
""" """
return await self.send_command("resume") return await self.send_command("resume")