Skip to content

Commit

Permalink
Update esp32 hashrate range
Browse files Browse the repository at this point in the history
  • Loading branch information
revoxhere authored Aug 17, 2024
1 parent 5fb4870 commit 1dfd1cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 2023/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1848,15 +1848,15 @@ function miner_details(miner_id) {
icon = `<img src="assets/esp32s.gif">`;
miner_type = "ESP32-S2";
percentage = 0.96;
hashrate_range = [55000, 90000];
diff_range = [5799, 5801];
hashrate_range = [65000, 130000];
diff_range = [6399, 6401];
} else if (miner_software.includes("ESP32")) {
color = "#6B6B6B";
icon = `<img src="assets/esp32.gif">`;
miner_type = "ESP32";
percentage = 0.96;
hashrate_range = [37000, 46000];
diff_range = [5399, 5401];
hashrate_range = [40000, 100000];
diff_range = [8199, 8201];
} else if (miner_software.includes("AVR") && miner_diff >= 128) {
icon = `<img src="assets/pico.gif">`;
color = "#056938";
Expand Down

0 comments on commit 1dfd1cb

Please sign in to comment.