We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46f0930 + 630b050 commit 1344fe0Copy full SHA for 1344fe0
adafruit_platformdetect/board.py
@@ -428,6 +428,8 @@ def _armbian_id(self) -> Optional[str]:
428
board = boards.ORANGE_PI_2
429
elif board_value == "orangepipc2":
430
board = boards.ORANGE_PI_PC2
431
+ elif board_value == "orangepizero3":
432
+ board = boards.ORANGE_PI_ZERO_3
433
elif board_value == "orangepi3b":
434
board = boards.ORANGE_PI_3B
435
elif board_value == "orangepi3":
adafruit_platformdetect/constants/boards.py
@@ -60,6 +60,7 @@
60
ORANGE_PI_ZERO_PLUS_2H5 = "ORANGE_PI_ZERO_PLUS_2H5"
61
ORANGE_PI_ZERO_PLUS = "ORANGE_PI_ZERO_PLUS"
62
ORANGE_PI_ZERO_2 = "ORANGE_PI_ZERO_2"
63
+ORANGE_PI_ZERO_3 = "ORANGE_PI_ZERO_3"
64
ORANGE_PI_3 = "ORANGE_PI_3"
65
ORANGE_PI_3B = "ORANGE_PI_3B"
66
ORANGE_PI_3_LTS = "ORANGE_PI_3_LTS"
0 commit comments