tempctrlset
Description
Set the temperature control values. The order must be target
, hot
and dangerous
, and a later value cannot be lower than an earlier one.
Command
$ echo '{"command": "tempctrlset", "parameter":"85,90,100"}' | nc $MINER_IP 4028 | jq
Example
$ echo '{"command": "tempctrlset", "parameter":"85,90,100"}' | nc $MINER_IP 4028 | jq
{
"STATUS": [
{
"Code": 330,
"Description": "LUXminer 2022.12.6-u0-538ea307c0",
"Msg": "Set temperature control",
"STATUS": "S",
"When": 1667917473
}
],
"TEMPCTRL": [
{
"Dangerous": 100,
"Hot": 90,
"Target": 85
}
],
"id": 1
}
Parameters
Parameter | Notes |
---|---|
target_temp | The target temperature that the automatic control strives to reach. |
hot_temp | The temperature considered "hot", when the system turns the fans to 100% in an attempt to cool it down. |
dangerous_temp | The temperature considered "dangerous"; if reached, voltage of the boards is cut and the application shuts down. |