From 101cebec3fffa674a41f45f9ddd8d03a6fa13cfd Mon Sep 17 00:00:00 2001 From: djeZo Date: Tue, 23 Feb 2021 15:07:19 +0100 Subject: [PATCH] Update README.md --- api/README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/api/README.md b/api/README.md index 7dc8d47..f770674 100644 --- a/api/README.md +++ b/api/README.md @@ -1,4 +1,4 @@ -# Excavator API Version 0.2.1 +# Excavator API Version 0.2.2 **WARNING! This document is not complete yet and is still being worked on. Also, during Excavator alpha versions, API may change so make sure you check this page always before updating to next alpha version!** @@ -70,6 +70,7 @@ Method | Description [device\.set\.oc_reset](#device-set-oc-reset) | Resets overclocking profile. [device\.hwerr\.get](#device-hwerr-get) | Gets hardware error count. [device\.hwerr\.reset](#device-hwerr-reset) | Resets hardware error count. +[device\.smartfan\.set\.advanced](#device-smartfan-set-advanced) | Set advanced properties for SmartFan algorithm. **Algorithm managing methods** @@ -645,6 +646,25 @@ Example response: ``` +# device.smartfan.set.advanced + +Sets various constants/properties of SmartFan algorithm as explained below. Fan level is always from 0 to 100 (including). Call [devices\.get](#devices-get) or [device\.get](#device-get) to get current values (defaults). + +Command parameter # | Type | Description +-------|---------|--------- +1 | string | Device ID or Device UUID. +2 | string | Starting fan level when mode 2 or 3 is used. +3 | string | Override default min level. +4 | string | Override default max level. +5 | string | Decrease multi K constant. +6 | string | Increase multi K constant. +7 | string | Increase add n constant (when GPU target is used). +8 | string | Increase add n constant (when VRAM target is used). + +You have to provide **ALL** parameters or the method would not execute. + + + # algorithm.add Adds new algorithm instance to the miner. Requests the remote pool to start sending work for the algorithm at hand. @@ -1354,6 +1374,10 @@ Example response: # Changelog +* v0.2.2 (excavator v1.6.3g) + - Added `device.smartfan.set.advanced` + - Many others... (docs not complete yet) + * v0.2.1 (excavator v1.6.1d) - Added `cmdfile.commit` - Added `restart`