diff --git a/adafruit_platformdetect/board.py b/adafruit_platformdetect/board.py index d37a0170..9d85c1db 100644 --- a/adafruit_platformdetect/board.py +++ b/adafruit_platformdetect/board.py @@ -383,6 +383,11 @@ def any_orange_pi(self): """Check whether the current board is any defined Orange Pi.""" return self.ORANGE_PI_PC + @property + def any_coral_board(self): + """Check whether the current board is any defined Coral.""" + return self.CORAL_EDGE_TPU_DEV + @property def any_giant_board(self): """Check whether the current board is any defined Giant Board.""" @@ -397,7 +402,8 @@ def any_jetson_board(self): def any_embedded_linux(self): """Check whether the current board is any embedded Linux device.""" return self.any_raspberry_pi or self.any_beaglebone or \ - self.any_orange_pi or self.any_giant_board or self.any_jetson_board + self.any_orange_pi or self.any_giant_board or self.any_jetson_board or \ + self.any_coral_board def __getattr__(self, attr): """