Post
Topic
Board Hardware
Re: Announcing the FutureBit Apollo BTC - A Full Node/Mining Platform for the Home!
by
nullama
on 04/05/2022, 23:29:43 UTC
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:

Quote from: apollo.miner.stats
   "temperature": {
      "count": 2,
      "min": 0,
      "avr": 25,
      "max": 51
   },

And also per hashboard:

Quote from: apollo.miner.stats
   "slots": {
      "0": {
                        ...
         "temperature": 51,
                        ...
      }
   }

There's a lot of information in the file, including fan speed, like this for example:

Quote from: apollo.miner.stats
   
"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.