seveibar/pico2

A React component rendering a schematic symbol of a Raspberry Pi Pico microcontroller with labeled GPIO and power pins.

Version
1.0.0
License
unset
Stars
1

dist/index.cjs

'use strict';

var jsxRuntime = require('react/jsx-runtime');

const Pico2 = (props) => (jsxRuntime.jsx("chip", { ...props, pinLabels: {
        "1": "GP0",
        "2": "GP1",
        "3": "GND1",
        "4": "GP2",
        "5": "GP3",
        "6": "GP4",
        "7": "GP5",
        "8": "GND",
        "9": "GP6",
        "10": "GP7",
        "11": "GP8",
        "12": "GP9",
        "13": "GND2",
        "14": "GP10",
        "15": "GP11",
        "16": "GP12",
        "17": "GP13",
        "18": "GND3",
        "19": "GP14",
        "20": "GP15",
        "21": "GP16",
        "22": "GP17",
        "23": "GND4",
        "24": "GP18",
        "25": "GP19",
        "26": "GP20",
        "27": "GP21",
        "28": "GND5",
        "29": "GP22",
        "30": "RUN",
        "31": "GP26",
        "32": "GP27",
        "33": "GND6",
        "34": "GP28",
        "35": "ADC_VREF",
        "36": "V3V3",
        "37": "V3V3_EN",
        "38": "GND7",
        "39": "VSYS",
        "40": "VBUS",
    }, footprint: "soic40_w22.58mm_p2.54mm_pl3.8_ph2.2" }));

exports.Pico2 = Pico2;