diff --git a/adafruit_platformdetect/board.py b/adafruit_platformdetect/board.py index 872435d..f5b4112 100644 --- a/adafruit_platformdetect/board.py +++ b/adafruit_platformdetect/board.py @@ -428,6 +428,8 @@ def _armbian_id(self) -> Optional[str]: board = boards.ORANGE_PI_2 elif board_value == "orangepipc2": board = boards.ORANGE_PI_PC2 + elif board_value == "orangepizero3": + board = boards.ORANGE_PI_ZERO_3 elif board_value == "orangepi3b": board = boards.ORANGE_PI_3B elif board_value == "orangepi3": diff --git a/adafruit_platformdetect/constants/boards.py b/adafruit_platformdetect/constants/boards.py index de34414..80629f3 100644 --- a/adafruit_platformdetect/constants/boards.py +++ b/adafruit_platformdetect/constants/boards.py @@ -60,6 +60,7 @@ ORANGE_PI_ZERO_PLUS_2H5 = "ORANGE_PI_ZERO_PLUS_2H5" ORANGE_PI_ZERO_PLUS = "ORANGE_PI_ZERO_PLUS" ORANGE_PI_ZERO_2 = "ORANGE_PI_ZERO_2" +ORANGE_PI_ZERO_3 = "ORANGE_PI_ZERO_3" ORANGE_PI_3 = "ORANGE_PI_3" ORANGE_PI_3B = "ORANGE_PI_3B" ORANGE_PI_3_LTS = "ORANGE_PI_3_LTS"