pyasic
Whatsminer Error Codes
A Dataclass to handle error codes of Whatsminers.
Attributes:
Name | Type | Description |
---|---|---|
error_code |
int
|
The error code as an int. |
error_message |
The error message as a string. Automatically found from the error code. |
Source code in pyasic/data/error_codes/whatsminer.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
Braiins OS Error Codes
A Dataclass to handle error codes of BraiinsOS+ miners.
Attributes:
Name | Type | Description |
---|---|---|
error_message |
str
|
The error message as a string. |
error_code |
int
|
The error code as an int. 0 if the message is not assigned a code. |
Source code in pyasic/data/error_codes/bos.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
X19 Error Codes
A Dataclass to handle error codes of X19 miners.
Attributes:
Name | Type | Description |
---|---|---|
error_message |
str
|
The error message as a string. |
error_code |
int
|
The error code as an int. 0 if the message is not assigned a code. |
Source code in pyasic/data/error_codes/X19.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
Innosilicon Error Codes
A Dataclass to handle error codes of Innosilicon miners.
Attributes:
Name | Type | Description |
---|---|---|
error_code |
int
|
The error code as an int. |
error_message |
The error message as a string. Automatically found from the error code. |
Source code in pyasic/data/error_codes/innosilicon.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|