elif (
detector.board.RASPBERRY_PI_4B
or detector.board.RASPBERRY_PI_CM4
+ or detector.board.RASPBERRY_PI_CM4S
or detector.board.RASPBERRY_PI_400
):
from adafruit_blinka.board.raspberrypi.raspi_4b import *
+elif detector.board.RASPBERRY_PI_5:
+ from adafruit_blinka.board.raspberrypi.raspi_5b import *
elif detector.board.any_raspberry_pi_40_pin:
from adafruit_blinka.board.raspberrypi.raspi_40pin import *
elif board_id == ap_board.BANANA_PI_M5:
from adafruit_blinka.board.bananapi.bpim5 import *
+elif board_id == ap_board.LEMAKER_BANANA_PRO:
+ from adafruit_blinka.board.lemaker.bananapro import *
+
elif board_id == ap_board.GIANT_BOARD:
from adafruit_blinka.board.giantboard import *
elif board_id == ap_board.LUBANCAT2:
from adafruit_blinka.board.lubancat.lubancat2 import *
+elif board_id == ap_board.LUBANCAT4:
+ from adafruit_blinka.board.lubancat.lubancat4 import *
+
elif board_id == ap_board.NANOPI_NEO_AIR:
from adafruit_blinka.board.nanopi.neoair import *
f"""
{package[0]} version {package[1]} was unable to identify the board and/or
microcontroller running the {platform.system()} platform. Please be sure you
- have the latest packages running:
+ have the latest packages by running:
'pip3 install --upgrade adafruit-blinka adafruit-platformdetect'
+
+ If you are running the latest package, your board may not yet be supported. Please
+ open a New Issue on GitHub at https://github.com/adafruit/Adafruit_Blinka/issues and
+ select New Board Request.
"""
)