From 795ea55e1f1c1c24a765059e72147f224b4e23b5 Mon Sep 17 00:00:00 2001 From: Paul Grayson Date: Thu, 2 Mar 2023 15:21:25 -0800 Subject: [PATCH] Add support for upcoming Pololu 3pi+ 2040 Robot --- mu/modes/pico.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mu/modes/pico.py b/mu/modes/pico.py index f2833719c..f76382b48 100644 --- a/mu/modes/pico.py +++ b/mu/modes/pico.py @@ -32,14 +32,15 @@ class PicoMode(ESPMode): name = _("RP2040") short_name = "pico" - board_name = "Raspberry Pi Pico" - description = _("Write MicroPython directly on a Raspberry Pi Pico.") + board_name = "Raspberry Pi RP2040" + description = _("Write MicroPython directly on a Raspberry Pi Pico or other RP2040 board.") icon = "pico" fs = None valid_boards = [ # VID , PID, Manufacturer string, Device name (0x2E8A, 0x0005, None, "Raspberry Pi Pico"), + (0x1FFB, 0x2043, None, "Pololu 3pi+ 2040 Robot"), ] def api(self):