``` debian@BeagleBone:~$ sudo python3 Python 3.9.2 (default, Feb 28 2021, 17:03:44) [GCC 10.2.1 20210110] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from adafruit_platformdetect import Detector >>> detector = Detector() >>> print("Chip id: ", detector.chip.id) Chip id: AM33XX >>> print("Board id: ", detector.board.id) Board id: None >>> # Check for specific board models: >>> print("Pi 3B+? ", detector.board.RASPBERRY_PI_3B_PLUS) Pi 3B+? False >>> print("BBB? ", detector.board.BEAGLEBONE_BLACK) BBB? False >>> print("Orange Pi PC? ", detector.board.ORANGE_PI_PC) Orange Pi PC? False >>> print("generic Linux PC? ", detector.board.GENERIC_LINUX_PC) generic Linux PC? False >>> ```