diff --git a/adafruit_platformdetect/board.py b/adafruit_platformdetect/board.py index ad88ad6..7926720 100644 --- a/adafruit_platformdetect/board.py +++ b/adafruit_platformdetect/board.py @@ -30,7 +30,7 @@ except ImportError: from adafruit_platformdetect.constants import boards, chips -__version__ = "0.0.0+auto.0" +__version__ = "3.72.1" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_PlatformDetect.git" @@ -832,6 +832,8 @@ class Board: # KB2040 Kee Board if product == 0x0105: return boards.KB2040_U2IF + if vendor == 0x2E8A and product == 0x111F: + return boards.WAVESHARE_RP2040_ONE_U2IF # Will only reach here if a device was added in chip.py but here. raise RuntimeError("RP2040_U2IF device was added to chip but not board.") diff --git a/adafruit_platformdetect/chip.py b/adafruit_platformdetect/chip.py index 7bcc8b0..672e447 100644 --- a/adafruit_platformdetect/chip.py +++ b/adafruit_platformdetect/chip.py @@ -29,7 +29,7 @@ except ImportError: from adafruit_platformdetect.constants import chips -__version__ = "0.0.0+auto.0" +__version__ = "3.72.1" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_PlatformDetect.git" @@ -113,6 +113,10 @@ class Chip: # Raspberry Pi Pico vendor == 0xCAFE and product == 0x4005 + ) or ( + # Waveshare RP2040 One + vendor == 0x2E8A + and product == 0x111F ) or ( # Feather RP2040 # Itsy Bitsy RP2040