Skip to content

Commit ba91425

Browse files
authored
Merge pull request adafruit#360 from makermelissa/orange-pi-fix
Fix Orange Pi 3 Order
2 parents 05c1e8d + 228aafb commit ba91425

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_platformdetect/board.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,10 @@ def _armbian_id(self) -> Optional[str]:
399399
board = boards.ORANGE_PI_2
400400
elif board_value == "orangepipc2":
401401
board = boards.ORANGE_PI_PC2
402-
elif board_value == "orangepi3":
403-
board = boards.ORANGE_PI_3
404402
elif board_value == "orangepi3b":
405403
board = boards.ORANGE_PI_3B
404+
elif board_value == "orangepi3":
405+
board = boards.ORANGE_PI_3
406406
elif board_value == "orangepi3-lts":
407407
board = boards.ORANGE_PI_3_LTS
408408
elif board_value == "orangepi4":

0 commit comments

Comments
 (0)