Skip to content

Commit 0ea298d

Browse files
authored
Update AVR_Miner.py
1 parent dc223aa commit 0ea298d

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

AVR_Miner.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
"""
3-
Duino-Coin Official AVR Miner 3.3 © MIT licensed
3+
Duino-Coin Official AVR Miner 3.33 © MIT licensed
44
https://duinocoin.com
55
https://github.com/revoxhere/duino-coin
66
Duino-Coin Team & Community 2019-2022
@@ -109,7 +109,7 @@ def port_num(com):
109109

110110

111111
class Settings:
112-
VER = '3.3'
112+
VER = '3.33'
113113
SOC_TIMEOUT = 15
114114
REPORT_TIME = 120
115115
AVR_TIMEOUT = 10
@@ -1071,12 +1071,18 @@ def mine_avr(com, threadid, fastest_pool):
10711071
debug_output(str(e))
10721072

10731073
start_diff = "AVR"
1074-
if hashrate_test > 5500:
1074+
if hashrate_test > 6000:
1075+
start_diff = "ESP8266H"
1076+
1077+
elif hashrate_test > 4500:
10751078
start_diff = "ESP8266"
1076-
elif hashrate_test > 3000:
1077-
start_diff = "DUE"
1079+
10781080
elif hashrate_test > 1000:
1081+
start_diff = "DUE"
1082+
1083+
elif hashrate_test > 500:
10791084
start_diff = "ARM"
1085+
10801086
elif hashrate_test > 300:
10811087
start_diff = "MEGA"
10821088

0 commit comments

Comments
 (0)