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 4b820a0 commit c52b24bCopy full SHA for c52b24b
adafruit_platformdetect/board.py
@@ -419,6 +419,7 @@ def any_udoo_board(self):
419
"""Check to see if the current board is an UDOO board"""
420
return self.id in boards._UDOO_BOARD_IDS
421
422
+ @property
423
def any_asus_tinker_board(self):
424
"""Check to see if the current board is an ASUS Tinker Board"""
425
return self.id in boards._ASUS_TINKER_BOARD_IDS
adafruit_platformdetect/constants/boards.py
@@ -361,7 +361,7 @@
361
_PINE64_DEV_IDS = (PINE64, PINEBOOK, PINEPHONE)
362
363
# ASUS Tinker Board
364
-_ASUS_TINKER_BOARD_DEV_IDS = ASUS_TINKER_BOARD
+_ASUS_TINKER_BOARD_DEV_IDS = (ASUS_TINKER_BOARD)
365
366
# UDOO
367
_UDOO_BOARD_IDS = {UDOO_BOLT_V8: ("SC40-2000-0000-C0|C",)}
0 commit comments