rebuilt with larger partitions

This commit is contained in:
kdmukai 2024-12-17 20:17:21 -06:00
parent ae2e6656df
commit 1bd465b33a
16 changed files with 782 additions and 8 deletions

View file

@ -95,6 +95,11 @@ void setup()
setupBitaxeFetchTask();
}
if (preferences.getBool("miningPoolStatsEnabled", DEFAULT_MINING_POOL_STATS_ENABLED))
{
setupMiningPoolStatsFetchTask();
}
setupButtonTask();
setupOTA();
@ -331,6 +336,11 @@ void setupPreferences()
addScreenMapping(SCREEN_BITAXE_HASHRATE, "BitAxe Hashrate");
addScreenMapping(SCREEN_BITAXE_BESTDIFF, "BitAxe Best Difficulty");
}
if (preferences.getBool("miningPoolStatsEnabled", DEFAULT_MINING_POOL_STATS_ENABLED))
{
addScreenMapping(SCREEN_MINING_POOL_STATS_HASHRATE, "Mining Pool Hashrate");
}
}
String replaceAmbiguousChars(String input)