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 d354b1f commit 5e8e88cCopy full SHA for 5e8e88c
adafruit_platformdetect/board.py
@@ -511,7 +511,7 @@ def _rk3568_id(self) -> Optional[str]:
511
"""Check what type of rk3568 board."""
512
board_value = self.detector.get_device_model()
513
board = None
514
- if board_value and "LubanCat-2" in board_value:
+ if board_value and any([x in board_value for x in ("LubanCat2", "LubanCat-2")]):
515
board = boards.LUBANCAT2
516
if board_value and "ROCK3 Model A" in board_value:
517
board = boards.ROCK_PI_3A
0 commit comments