I have chosen to run under windows for now, thank you for your help with this
Is there any way to properly monitor temps through windows? I'm guessing this information is stored within the json file as well?
Yeah, you can look up the temperature values from the json file.
Once you locate the json file you'll find the temperature values, like this for example:
"temperature": {
"count": 2,
"min": 0,
"avr": 25,
"max": 51
},
And also per hashboard:
"slots": {
"0": {
...
"temperature": 51,
...
}
}
There's a lot of information in the file, including fan speed, like this for example:
"fans": {
"0": {
"rpm": [
1316
]
}
},
And so on. Pretty much anything you would like to know about the miner is there. This is what the "official" web dashboard uses as input to display the values.