@@ -40,6 +40,19 @@
|
|||||||
show_root_heading: false
|
show_root_heading: false
|
||||||
heading_level: 0
|
heading_level: 0
|
||||||
|
|
||||||
|
## S21+ (Stock)
|
||||||
|
|
||||||
|
- [x] Shutdowns
|
||||||
|
- [x] Power Modes
|
||||||
|
- [ ] Setpoints
|
||||||
|
- [ ] Presets
|
||||||
|
|
||||||
|
::: pyasic.miners.antminer.bmminer.X21.S21.BMMinerS21Plus
|
||||||
|
handler: python
|
||||||
|
options:
|
||||||
|
show_root_heading: false
|
||||||
|
heading_level: 0
|
||||||
|
|
||||||
## T21 (Stock)
|
## T21 (Stock)
|
||||||
|
|
||||||
- [x] Shutdowns
|
- [x] Shutdowns
|
||||||
|
|||||||
@@ -103,6 +103,7 @@ details {
|
|||||||
<li><a href="../antminer/X21#s21-stock">S21 (Stock)</a></li>
|
<li><a href="../antminer/X21#s21-stock">S21 (Stock)</a></li>
|
||||||
<li><a href="../antminer/X21#s21-stock">S21 (Stock)</a></li>
|
<li><a href="../antminer/X21#s21-stock">S21 (Stock)</a></li>
|
||||||
<li><a href="../antminer/X21#s21-stock">S21 (Stock)</a></li>
|
<li><a href="../antminer/X21#s21-stock">S21 (Stock)</a></li>
|
||||||
|
<li><a href="../antminer/X21#s21_1-stock">S21+ (Stock)</a></li>
|
||||||
<li><a href="../antminer/X21#s21-pro-stock">S21 Pro (Stock)</a></li>
|
<li><a href="../antminer/X21#s21-pro-stock">S21 Pro (Stock)</a></li>
|
||||||
<li><a href="../antminer/X21#t21-stock">T21 (Stock)</a></li>
|
<li><a href="../antminer/X21#t21-stock">T21 (Stock)</a></li>
|
||||||
<li><a href="../antminer/X21#s21-hydro-stock">S21 Hydro (Stock)</a></li>
|
<li><a href="../antminer/X21#s21-hydro-stock">S21 Hydro (Stock)</a></li>
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ class AntminerModels(MinerModelType):
|
|||||||
S19jXP = "S19j XP"
|
S19jXP = "S19j XP"
|
||||||
T19 = "T19"
|
T19 = "T19"
|
||||||
S21 = "S21"
|
S21 = "S21"
|
||||||
|
S21Plus = "S21+"
|
||||||
S21Pro = "S21 Pro"
|
S21Pro = "S21 Pro"
|
||||||
S21Hydro = "S21 Hydro"
|
S21Hydro = "S21 Hydro"
|
||||||
T21 = "T21"
|
T21 = "T21"
|
||||||
|
|||||||
@@ -15,13 +15,17 @@
|
|||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners.backends import AntminerModern
|
from pyasic.miners.backends import AntminerModern
|
||||||
from pyasic.miners.device.models import S21, S21Hydro, S21Pro
|
from pyasic.miners.device.models import S21, S21Hydro, S21Plus, S21Pro
|
||||||
|
|
||||||
|
|
||||||
class BMMinerS21(AntminerModern, S21):
|
class BMMinerS21(AntminerModern, S21):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class BMMinerS21Plus(AntminerModern, S21Plus):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class BMMinerS21Pro(AntminerModern, S21Pro):
|
class BMMinerS21Pro(AntminerModern, S21Pro):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|||||||
@@ -13,5 +13,5 @@
|
|||||||
# See the License for the specific language governing permissions and -
|
# See the License for the specific language governing permissions and -
|
||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
from .S21 import BMMinerS21, BMMinerS21Hydro, BMMinerS21Pro
|
from .S21 import BMMinerS21, BMMinerS21Hydro, BMMinerS21Plus, BMMinerS21Pro
|
||||||
from .T21 import BMMinerT21
|
from .T21 import BMMinerT21
|
||||||
|
|||||||
@@ -27,6 +27,15 @@ class S21(AntMinerMake):
|
|||||||
algo = MinerAlgo.SHA256
|
algo = MinerAlgo.SHA256
|
||||||
|
|
||||||
|
|
||||||
|
class S21Plus(AntMinerMake):
|
||||||
|
raw_model = MinerModel.ANTMINER.S21Plus
|
||||||
|
|
||||||
|
expected_chips = 55
|
||||||
|
expected_fans = 4
|
||||||
|
expected_hashboards = 3
|
||||||
|
algo = MinerAlgo.SHA256
|
||||||
|
|
||||||
|
|
||||||
class S21Pro(AntMinerMake):
|
class S21Pro(AntMinerMake):
|
||||||
raw_model = MinerModel.ANTMINER.S21Pro
|
raw_model = MinerModel.ANTMINER.S21Pro
|
||||||
|
|
||||||
|
|||||||
@@ -14,5 +14,5 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from .S21 import S21, S21Hydro, S21Pro
|
from .S21 import S21, S21Hydro, S21Plus, S21Pro
|
||||||
from .T21 import T21
|
from .T21 import T21
|
||||||
|
|||||||
@@ -120,6 +120,7 @@ MINER_CLASSES = {
|
|||||||
"ANTMINER S21": BMMinerS21,
|
"ANTMINER S21": BMMinerS21,
|
||||||
"ANTMINER BHB68601": BMMinerS21, # ???
|
"ANTMINER BHB68601": BMMinerS21, # ???
|
||||||
"ANTMINER BHB68606": BMMinerS21, # ???
|
"ANTMINER BHB68606": BMMinerS21, # ???
|
||||||
|
"ANTMINER S21+": BMMinerS21Plus,
|
||||||
"ANTMINER S21 PRO": BMMinerS21Pro,
|
"ANTMINER S21 PRO": BMMinerS21Pro,
|
||||||
"ANTMINER T21": BMMinerT21,
|
"ANTMINER T21": BMMinerT21,
|
||||||
"ANTMINER S21 HYD.": BMMinerS21Hydro,
|
"ANTMINER S21 HYD.": BMMinerS21Hydro,
|
||||||
|
|||||||
Reference in New Issue
Block a user