I monitor a bunch of s9's with awesome miner and like it a lot. I am displaying chip temp in the progress column. Would it be possible to add an option that adds color by temp to the individual card temp values? That way at a quick glance I could see if a card is running hotter than normal and research to see if the card has a problem or not. thank you,
I'm giving you an example below where any chip temperature above 80 °C will result in red bold text. You can of course adjust the conditions and formatting more if you want.
"Chip: " + (Convert.ToInt32(stats.ChipTemp1) > 80 ? "" + stats.ChipTemp1 + "": stats.ChipTemp1) + "/" + (Convert.ToInt32(stats.ChipTemp2) > 80 ? "" + stats.ChipTemp2 + "": stats.ChipTemp2) + "/" + (Convert.ToInt32(stats.ChipTemp3) > 80 ? "" + stats.ChipTemp3 + "": stats.ChipTemp3) + " °C"