I'm trying to work on a script to enable/disable my GPUs at some specific periods of time during the day so your remote management API is what I need but when I send this JSON:
"id": 0,
"jsonrpc": "2.0",
"method": "control_gpu",
"params": [
1,
0
],
"psw": "not_for_you_too_see"
}
API.txt says:
RESPONSE:
none.
COMMENTS:
first number - GPU index, or "-1" for all GPUs. Second number - new GPU state, 0 - disabled, 1 - ETH-only mode, 2 - dual mode.
I fail to see the error here (My JSON is sent exactly as seen above, including newlines and spaces), the only different thing from API.txt is that I'm also sending a password. Is API.txt updated?
BTW, this is on v11.0 running on a Linux rig.