Skip to content

Commit 6e9cd7b

Browse files
authored
Merge pull request #34 from adriendod/patch-1
Fixing Jetson Nano detection
2 parents 29b9383 + ded19d7 commit 6e9cd7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_platformdetect/board.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def _tegra_id(self):
405405
board = JETSON_TX2
406406
elif 'xavier' in board_value:
407407
board = JETSON_XAVIER
408-
elif 'nano' in board_value:
408+
elif 'nano' in board_value or "Nano" in board_value:
409409
board = JETSON_NANO
410410
return board
411411

0 commit comments

Comments
 (0)