feature: add support for M20P, and add chips for M20SV30.
This commit is contained in:
@@ -101,6 +101,8 @@ MINER_CLASSES = {
|
|||||||
"M20SV10": BTMinerM20SV10,
|
"M20SV10": BTMinerM20SV10,
|
||||||
"M20SV20": BTMinerM20SV20,
|
"M20SV20": BTMinerM20SV20,
|
||||||
"M20SV30": BTMinerM20SV30,
|
"M20SV30": BTMinerM20SV30,
|
||||||
|
"M20PV10": BTMinerM20PV10,
|
||||||
|
"M20PV30": BTMinerM20PV30,
|
||||||
"M20S+V30": BTMinerM20SPlusV30,
|
"M20S+V30": BTMinerM20SPlusV30,
|
||||||
"M21V10": BTMinerM21V10,
|
"M21V10": BTMinerM21V10,
|
||||||
"M21SV20": BTMinerM21SV20,
|
"M21SV20": BTMinerM21SV20,
|
||||||
|
|||||||
35
pyasic/miners/types/whatsminer/M2X/M20P.py
Normal file
35
pyasic/miners/types/whatsminer/M2X/M20P.py
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# Copyright 2022 Upstream Data Inc -
|
||||||
|
# -
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); -
|
||||||
|
# you may not use this file except in compliance with the License. -
|
||||||
|
# You may obtain a copy of the License at -
|
||||||
|
# -
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 -
|
||||||
|
# -
|
||||||
|
# Unless required by applicable law or agreed to in writing, software -
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, -
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -
|
||||||
|
# See the License for the specific language governing permissions and -
|
||||||
|
# limitations under the License. -
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
|
class M20PV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
|
def __init__(self, ip: str, api_ver: str = "0.0.0"):
|
||||||
|
super().__init__(ip, api_ver)
|
||||||
|
self.ip = ip
|
||||||
|
self.model = "M20P V10"
|
||||||
|
self.nominal_chips = 156
|
||||||
|
self.fan_count = 2
|
||||||
|
|
||||||
|
|
||||||
|
class M20PV30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
|
def __init__(self, ip: str, api_ver: str = "0.0.0"):
|
||||||
|
super().__init__(ip, api_ver)
|
||||||
|
self.ip = ip
|
||||||
|
self.model = "M20P V30"
|
||||||
|
self.nominal_chips = 148
|
||||||
|
self.fan_count = 2
|
||||||
@@ -42,8 +42,5 @@ class M20SV30(WhatsMiner): # noqa - ignore ABC method implementation
|
|||||||
super().__init__(ip, api_ver)
|
super().__init__(ip, api_ver)
|
||||||
self.ip = ip
|
self.ip = ip
|
||||||
self.model = "M20S V30"
|
self.model = "M20S V30"
|
||||||
self.nominal_chips = 0
|
self.nominal_chips = 140
|
||||||
warnings.warn(
|
|
||||||
"Unknown chip count for miner type M20SV30, please open an issue on GitHub (https://github.com/UpstreamData/pyasic)."
|
|
||||||
)
|
|
||||||
self.fan_count = 2
|
self.fan_count = 2
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from .M20 import M20V10
|
from .M20 import M20V10
|
||||||
|
from .M20P import M20PV10, M20PV30
|
||||||
from .M20S import M20SV10, M20SV20, M20SV30
|
from .M20S import M20SV10, M20SV20, M20SV30
|
||||||
from .M20S_Plus import M20SPlusV30
|
from .M20S_Plus import M20SPlusV30
|
||||||
from .M21 import M21V10
|
from .M21 import M21V10
|
||||||
|
|||||||
26
pyasic/miners/whatsminer/btminer/M2X/M20P.py
Normal file
26
pyasic/miners/whatsminer/btminer/M2X/M20P.py
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# Copyright 2022 Upstream Data Inc -
|
||||||
|
# -
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); -
|
||||||
|
# you may not use this file except in compliance with the License. -
|
||||||
|
# You may obtain a copy of the License at -
|
||||||
|
# -
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 -
|
||||||
|
# -
|
||||||
|
# Unless required by applicable law or agreed to in writing, software -
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, -
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -
|
||||||
|
# See the License for the specific language governing permissions and -
|
||||||
|
# limitations under the License. -
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
from pyasic.miners.backends import M2X
|
||||||
|
from pyasic.miners.types import M20PV10, M20PV30
|
||||||
|
|
||||||
|
|
||||||
|
class BTMinerM20PV10(M2X, M20PV10):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class BTMinerM20PV30(M2X, M20PV30):
|
||||||
|
pass
|
||||||
@@ -15,6 +15,7 @@
|
|||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from .M20 import BTMinerM20V10
|
from .M20 import BTMinerM20V10
|
||||||
|
from .M20P import BTMinerM20PV10, BTMinerM20PV30
|
||||||
from .M20S import BTMinerM20SV10, BTMinerM20SV20, BTMinerM20SV30
|
from .M20S import BTMinerM20SV10, BTMinerM20SV20, BTMinerM20SV30
|
||||||
from .M20S_Plus import BTMinerM20SPlusV30
|
from .M20S_Plus import BTMinerM20SPlusV30
|
||||||
from .M21 import BTMinerM21V10
|
from .M21 import BTMinerM21V10
|
||||||
|
|||||||
Reference in New Issue
Block a user