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.
1 parent 9b871b6 commit 421e4caCopy full SHA for 421e4ca
adafruit_platformdetect/board.py
@@ -118,7 +118,7 @@ def id(self):
118
elif chip_id == chips.A64:
119
board_id = self._pine64_id()
120
elif chip_id == chips.H6:
121
- board_id = self._pine64_id()
+ board_id = self._pine64_id() or self._armbian_id()
122
elif chip_id == chips.H5:
123
board_id = self._armbian_id() or self._allwinner_variants_id()
124
elif chip_id == chips.H616:
@@ -294,6 +294,8 @@ def _armbian_id(self):
294
board = boards.PINEH64
295
elif board_value == "orangepi2":
296
board = boards.ORANGE_PI_2
297
+ elif board_value == "orangepi3":
298
+ board = boards.ORANGE_PI_3
299
elif board_value == "bananapim2zero":
300
board = boards.BANANA_PI_M2_ZERO
301
elif board_value == "orangepizeroplus2-h5":
0 commit comments