├── .gitattributes ├── .gitignore ├── 6-Layer Stackup and Controlled Impedance.png ├── Demo Code - rev0.2 ├── CircuitPython │ ├── 6-Axis IMU │ │ └── code.py │ ├── Accel-LEDs │ │ └── code.py │ ├── Analog Input │ │ └── code.py │ ├── Dotstar │ │ └── code.py │ ├── POV │ │ ├── CrowdSupply2.bmp │ │ ├── adafruit_register │ │ │ ├── __init__.py │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ ├── i2c_bit.mpy │ │ │ ├── i2c_bits.mpy │ │ │ ├── i2c_struct.mpy │ │ │ └── i2c_struct_array.mpy │ │ └── code.py │ ├── adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2 │ ├── blink │ │ └── code.py │ ├── firmware rev0.2.uf2 │ └── lib │ │ ├── adafruit_dotstar.mpy │ │ ├── adafruit_fancyled │ │ ├── __init__.py │ │ ├── adafruit_fancyled.mpy │ │ └── fastled_helpers.mpy │ │ ├── adafruit_lsm6ds │ │ ├── __init__.mpy │ │ ├── ism330dhcx.mpy │ │ ├── lsm6ds3.mpy │ │ ├── lsm6ds33.mpy │ │ ├── lsm6ds3trc.mpy │ │ ├── lsm6dso32.mpy │ │ └── lsm6dsox.mpy │ │ └── adafruit_register │ │ ├── __init__.py │ │ ├── i2c_bcd_alarm.mpy │ │ ├── i2c_bcd_datetime.mpy │ │ ├── i2c_bit.mpy │ │ ├── i2c_bits.mpy │ │ ├── i2c_struct.mpy │ │ └── i2c_struct_array.mpy ├── DemoLEDTestCode.zip ├── DemoLEDTestCode │ ├── adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2 │ ├── boot_out.txt │ ├── code.py │ └── lib │ │ ├── adafruit_dotstar.mpy │ │ ├── adafruit_fancyled │ │ ├── __init__.py │ │ ├── adafruit_fancyled.mpy │ │ └── fastled_helpers.mpy │ │ ├── adafruit_lsm6ds │ │ ├── __init__.mpy │ │ ├── ism330dhcx.mpy │ │ ├── lsm6ds3.mpy │ │ ├── lsm6ds33.mpy │ │ ├── lsm6ds3trc.mpy │ │ ├── lsm6dso32.mpy │ │ └── lsm6dsox.mpy │ │ └── adafruit_register │ │ ├── __init__.py │ │ ├── i2c_bcd_alarm.mpy │ │ ├── i2c_bcd_datetime.mpy │ │ ├── i2c_bit.mpy │ │ ├── i2c_bits.mpy │ │ ├── i2c_struct.mpy │ │ └── i2c_struct_array.mpy └── MicroPython │ └── accelerometer.py ├── Demo Code ├── CircuitPython │ ├── 6-Axis IMU │ │ └── code.py │ ├── Accel-LEDs │ │ └── code.py │ ├── Analog Input │ │ └── code.py │ ├── Dotstar │ │ └── code.py │ ├── adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2 │ ├── blink │ │ └── code.py │ └── lib │ │ ├── adafruit_dotstar.mpy │ │ ├── adafruit_fancyled │ │ ├── __init__.py │ │ ├── adafruit_fancyled.mpy │ │ └── fastled_helpers.mpy │ │ ├── adafruit_lsm6ds │ │ ├── __init__.mpy │ │ ├── ism330dhcx.mpy │ │ ├── lsm6ds3.mpy │ │ ├── lsm6ds33.mpy │ │ ├── lsm6ds3trc.mpy │ │ ├── lsm6dso32.mpy │ │ └── lsm6dsox.mpy │ │ └── adafruit_register │ │ ├── __init__.py │ │ ├── i2c_bcd_alarm.mpy │ │ ├── i2c_bcd_datetime.mpy │ │ ├── i2c_bit.mpy │ │ ├── i2c_bits.mpy │ │ ├── i2c_struct.mpy │ │ └── i2c_struct_array.mpy └── MicroPython │ └── accelerometer.py ├── Images ├── Renders │ ├── Rev0.2-16.jpg │ ├── Rev0.2-17.jpg │ ├── Rev0.2-19.jpg │ ├── Rev0.2-22.jpg │ ├── Rev0.2-23.jpg │ ├── Rev0.2-25.jpg │ ├── Rev0.2-Ortho-05.jpg │ └── Rev0.2-Ortho-06.jpg └── Schematic │ ├── Pinout.jpg │ ├── Schematic_Pg1.jpg │ ├── Schematic_Pg2.jpg │ ├── Schematic_Pg3.jpg │ ├── Schematic_Pg4.jpg │ ├── Schematic_Pg5.jpg │ └── Schematic_Pg6.jpg ├── LICENSE ├── README.md └── RP2040-Breadstick ├── .gitignore ├── Breadstick_Page_Layout v3 v7.0.kicad_wks ├── Fritzing ├── RP2040-Breadstick.png ├── RaspberryBreadstick.fzpz ├── RaspberryBreadstick_breadboard.svg ├── RaspberryBreadstick_pcb.svg ├── RaspberryBreadstick_schem.svg └── Untitled Sketch_bb.pdf ├── LICENSE ├── LSM6DS3TR.kicad_sch ├── Pinout Diagram ├── EmptyBreadstickBreadboard_bb.svg ├── RaspberryBreadstickPinout old.jpg ├── RaspberryBreadstickPinout old.png └── RaspberryBreadstickPinout.svg ├── Power.kicad_sch ├── README.md ├── RP2040-Breadstick.kicad_pcb ├── RP2040-Breadstick.kicad_pro ├── RP2040-Breadstick.kicad_sch ├── RP2040.kicad_sch ├── SK9822_RGB_LED_Strip.kicad_sch ├── Snap EDA ├── 74AXP2T45DCH │ ├── 74AXP2T45DCH.kicad_mod │ ├── 74AXP2T45DCH.kicad_sym │ ├── 74AXP2T45DCH.lib │ └── 74AXP2T45DCH.stp ├── 74AXP2T45GXX │ ├── 74AXP2T45GXX.STEP │ ├── ImportGuides.html │ └── KiCAD │ │ ├── 2023-01-15_17-59-42 │ │ ├── 2023-01-15_17-59-42.kicad_sym │ │ ├── 2023-01-15_17-59-42.lib │ │ └── footprints.pretty │ │ │ └── 74AXP2T45GXX.kicad_mod │ │ └── ImportGuide.html ├── 7V12000018 v4.step ├── AP2112K-3.3TRG1 │ ├── AP2112K-3.3TRG1.kicad_sym │ ├── AP2112K-3.3TRG1.step │ ├── SOT95P285X140-5N.kicad_mod │ └── how-to-import.htm ├── ECS-120-10-36Q-ES-TR │ ├── ECS-120-10-36Q-ES-TR.kicad_sym │ ├── ECS-120-10-36Q-ES-TR.step │ ├── License.txt │ ├── XTAL_ECS-120-10-36Q-ES-TR.kicad_mod │ └── how-to-import.htm ├── GT-TC029B-H025-L1N v1.step ├── KMR731NGLFS │ ├── KMR731NGLFS.kicad_sym │ ├── KMR731NGLFS.step │ ├── SW_KMR731NGLFS.kicad_mod │ └── how-to-import.htm ├── LM66200DRLR │ ├── LM66200DRLR.dcm │ ├── LM66200DRLR.kicad_sym │ ├── LM66200DRLR.lib │ ├── LM66200DRLR.mod │ ├── LM66200DRLR.stp │ ├── SOTFL50P160X60-8L.kicad_mod │ ├── license.txt │ └── version.bin ├── LSM6DS3TR-C │ ├── LGA-14-2.5X3MM.kicad_mod │ ├── LSM6DS3TR-C.kicad_sym │ ├── LSM6DS3TR-C.lib │ ├── License.txt │ └── how-to-import.htm ├── LSM6DSMTR │ ├── LSM6DSMTR.kicad_sym │ ├── LSM6DSMTR.step │ ├── License.txt │ ├── PQFN50P300X250X86-14N.kicad_mod │ └── how-to-import.htm ├── MIC5528-3.3YMT-TR │ ├── License.txt │ ├── MIC5528-3.3YMT-TR.kicad_sym │ ├── MIC5528-3.3YMT-TR.step │ ├── SON40P120X120X60-7N.kicad_mod │ └── how-to-import.htm ├── MICROSMP_DO-219AD │ ├── DIO_V2PM15HM3_H.kicad_mod │ ├── License.txt │ ├── V2PM15HM3_H.kicad_sym │ ├── V2PM15HM3_H.step │ └── how-to-import.htm ├── RP2040 │ ├── QFN40P700X700X90-57N.kicad_mod │ ├── RP2040.kicad_sym │ ├── RP2040.lib │ ├── RP2040.step │ └── how-to-import.htm ├── SK9822-2020 RGB LED v2.step ├── SK9822-2020 RGB LED v2_old.step ├── SOT-416.STEP ├── SWRB1205S-101MT v2.step ├── Switch_R-667995 │ ├── 2023-01-15_17-38-00 │ │ └── STEP │ │ │ └── R-667995_MIT.step │ ├── ImportGuides.html │ └── KiCAD │ │ ├── 2023-01-15_17-38-00 │ │ ├── 2023-01-15_17-38-00.lib │ │ └── footprints.pretty │ │ │ └── R-667995.kicad_mod │ │ └── ImportGuide.html ├── T491A106K010AT │ ├── T491A106K010AT.kicad_mod │ ├── T491A106K010AT.kicad_sym │ ├── T491A106K010AT.step │ └── how-to-import.htm ├── TLJR476M006R3200 │ ├── CAPC2012X140N.kicad_mod │ ├── License.txt │ ├── TLJR476M006R3200.kicad_sym │ ├── TLJR476M006R3200.step │ └── how-to-import.htm ├── TPD4E05U06DQAR │ ├── License.txt │ ├── TI_TPD4E05U06DQAR.kicad_mod │ ├── TPD4E05U06DQAR.kicad_sym │ ├── TPD4E05U06DQAR.lib │ ├── TPD4E05U06DQAR.step │ └── how-to-import.htm ├── TXB0102DCUR │ ├── License.txt │ ├── SOP50P310X90-8N.kicad_mod │ ├── TXB0102DCUR.kicad_sym │ ├── TXB0102DCUR.lib │ ├── TXB0102DCUR.step │ └── how-to-import.htm ├── TYPE-C-31-M-12 │ ├── HRO_TYPE-C-31-M-12.kicad_mod │ ├── TYPE-C-31-M-12.kicad_sym │ ├── TYPE-C-31-M-12.lib │ ├── TYPE-C-31-M-12.step │ └── how-to-import.htm ├── USB-C-2171790001 │ ├── 2171790001.stp │ ├── ImportGuides.html │ ├── USB-C-2171790001.kicad_sym │ ├── USB-C-2171790001.lib │ └── footprints.pretty │ │ └── USB-C-2171790001.kicad_mod ├── W25Q128JVPIQ-TR │ ├── License.txt │ ├── W25Q128JVPIQ-TR.kicad_mod │ ├── W25Q128JVPIQ-TR.step │ └── how-to-import.htm └── X322516MLB4SI │ ├── Crystal3225_24GND.step │ ├── License.txt │ ├── OSC_X322516MLB4SI.kicad_mod │ ├── X322516MLB4SI.lib │ └── how-to-import.htm ├── USB.kicad_sch ├── bom └── ibom.html ├── fp-lib-table ├── ibom.config.ini ├── sym-lib-table └── untitled.kicad_sch /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/.gitignore -------------------------------------------------------------------------------- /6-Layer Stackup and Controlled Impedance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/6-Layer Stackup and Controlled Impedance.png -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/6-Axis IMU/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/6-Axis IMU/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/Accel-LEDs/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/Accel-LEDs/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/Analog Input/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/Analog Input/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/Dotstar/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/Dotstar/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/CrowdSupply2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/CrowdSupply2.bmp -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bcd_alarm.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bcd_alarm.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bcd_datetime.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bcd_datetime.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bit.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bit.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bits.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_bits.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_struct.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_struct.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_struct_array.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/adafruit_register/i2c_struct_array.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/POV/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/POV/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2 -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/blink/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/blink/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/firmware rev0.2.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/firmware rev0.2.uf2 -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_dotstar.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_dotstar.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_fancyled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_fancyled/adafruit_fancyled.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_fancyled/adafruit_fancyled.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_fancyled/fastled_helpers.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_fancyled/fastled_helpers.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/__init__.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/__init__.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/ism330dhcx.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/ism330dhcx.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6ds33.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6ds33.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3trc.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3trc.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6dso32.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6dso32.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6dsox.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_lsm6ds/lsm6dsox.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bcd_alarm.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bcd_alarm.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bcd_datetime.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bcd_datetime.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bit.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bit.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bits.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_bits.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_struct.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_struct.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_struct_array.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/CircuitPython/lib/adafruit_register/i2c_struct_array.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode.zip -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2 -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/boot_out.txt -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/code.py -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_dotstar.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_dotstar.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_fancyled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_fancyled/adafruit_fancyled.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_fancyled/adafruit_fancyled.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_fancyled/fastled_helpers.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_fancyled/fastled_helpers.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/__init__.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/__init__.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/ism330dhcx.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/ism330dhcx.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6ds3.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6ds3.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6ds33.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6ds33.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6ds3trc.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6ds3trc.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6dso32.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6dso32.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6dsox.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_lsm6ds/lsm6dsox.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bcd_alarm.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bcd_alarm.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bcd_datetime.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bcd_datetime.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bit.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bit.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bits.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_bits.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_struct.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_struct.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_struct_array.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/DemoLEDTestCode/lib/adafruit_register/i2c_struct_array.mpy -------------------------------------------------------------------------------- /Demo Code - rev0.2/MicroPython/accelerometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code - rev0.2/MicroPython/accelerometer.py -------------------------------------------------------------------------------- /Demo Code/CircuitPython/6-Axis IMU/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/6-Axis IMU/code.py -------------------------------------------------------------------------------- /Demo Code/CircuitPython/Accel-LEDs/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/Accel-LEDs/code.py -------------------------------------------------------------------------------- /Demo Code/CircuitPython/Analog Input/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/Analog Input/code.py -------------------------------------------------------------------------------- /Demo Code/CircuitPython/Dotstar/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/Dotstar/code.py -------------------------------------------------------------------------------- /Demo Code/CircuitPython/adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/adafruit-circuitpython-raspberry_pi_pico-en_US-8.0.5.uf2 -------------------------------------------------------------------------------- /Demo Code/CircuitPython/blink/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/blink/code.py -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_dotstar.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_dotstar.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_fancyled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_fancyled/adafruit_fancyled.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_fancyled/adafruit_fancyled.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_fancyled/fastled_helpers.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_fancyled/fastled_helpers.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/__init__.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/__init__.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/ism330dhcx.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/ism330dhcx.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6ds33.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6ds33.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3trc.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6ds3trc.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6dso32.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6dso32.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6dsox.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_lsm6ds/lsm6dsox.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/i2c_bcd_alarm.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_register/i2c_bcd_alarm.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/i2c_bcd_datetime.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_register/i2c_bcd_datetime.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/i2c_bit.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_register/i2c_bit.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/i2c_bits.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_register/i2c_bits.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/i2c_struct.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_register/i2c_struct.mpy -------------------------------------------------------------------------------- /Demo Code/CircuitPython/lib/adafruit_register/i2c_struct_array.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/CircuitPython/lib/adafruit_register/i2c_struct_array.mpy -------------------------------------------------------------------------------- /Demo Code/MicroPython/accelerometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Demo Code/MicroPython/accelerometer.py -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-16.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-17.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-19.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-22.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-23.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-25.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-Ortho-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-Ortho-05.jpg -------------------------------------------------------------------------------- /Images/Renders/Rev0.2-Ortho-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Renders/Rev0.2-Ortho-06.jpg -------------------------------------------------------------------------------- /Images/Schematic/Pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Pinout.jpg -------------------------------------------------------------------------------- /Images/Schematic/Schematic_Pg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Schematic_Pg1.jpg -------------------------------------------------------------------------------- /Images/Schematic/Schematic_Pg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Schematic_Pg2.jpg -------------------------------------------------------------------------------- /Images/Schematic/Schematic_Pg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Schematic_Pg3.jpg -------------------------------------------------------------------------------- /Images/Schematic/Schematic_Pg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Schematic_Pg4.jpg -------------------------------------------------------------------------------- /Images/Schematic/Schematic_Pg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Schematic_Pg5.jpg -------------------------------------------------------------------------------- /Images/Schematic/Schematic_Pg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/Images/Schematic/Schematic_Pg6.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/README.md -------------------------------------------------------------------------------- /RP2040-Breadstick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/.gitignore -------------------------------------------------------------------------------- /RP2040-Breadstick/Breadstick_Page_Layout v3 v7.0.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Breadstick_Page_Layout v3 v7.0.kicad_wks -------------------------------------------------------------------------------- /RP2040-Breadstick/Fritzing/RP2040-Breadstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Fritzing/RP2040-Breadstick.png -------------------------------------------------------------------------------- /RP2040-Breadstick/Fritzing/RaspberryBreadstick.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Fritzing/RaspberryBreadstick.fzpz -------------------------------------------------------------------------------- /RP2040-Breadstick/Fritzing/RaspberryBreadstick_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Fritzing/RaspberryBreadstick_breadboard.svg -------------------------------------------------------------------------------- /RP2040-Breadstick/Fritzing/RaspberryBreadstick_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Fritzing/RaspberryBreadstick_pcb.svg -------------------------------------------------------------------------------- /RP2040-Breadstick/Fritzing/RaspberryBreadstick_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Fritzing/RaspberryBreadstick_schem.svg -------------------------------------------------------------------------------- /RP2040-Breadstick/Fritzing/Untitled Sketch_bb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Fritzing/Untitled Sketch_bb.pdf -------------------------------------------------------------------------------- /RP2040-Breadstick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/LICENSE -------------------------------------------------------------------------------- /RP2040-Breadstick/LSM6DS3TR.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/LSM6DS3TR.kicad_sch -------------------------------------------------------------------------------- /RP2040-Breadstick/Pinout Diagram/EmptyBreadstickBreadboard_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Pinout Diagram/EmptyBreadstickBreadboard_bb.svg -------------------------------------------------------------------------------- /RP2040-Breadstick/Pinout Diagram/RaspberryBreadstickPinout old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Pinout Diagram/RaspberryBreadstickPinout old.jpg -------------------------------------------------------------------------------- /RP2040-Breadstick/Pinout Diagram/RaspberryBreadstickPinout old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Pinout Diagram/RaspberryBreadstickPinout old.png -------------------------------------------------------------------------------- /RP2040-Breadstick/Pinout Diagram/RaspberryBreadstickPinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Pinout Diagram/RaspberryBreadstickPinout.svg -------------------------------------------------------------------------------- /RP2040-Breadstick/Power.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Power.kicad_sch -------------------------------------------------------------------------------- /RP2040-Breadstick/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RP2040-Breadstick/RP2040-Breadstick.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/RP2040-Breadstick.kicad_pcb -------------------------------------------------------------------------------- /RP2040-Breadstick/RP2040-Breadstick.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/RP2040-Breadstick.kicad_pro -------------------------------------------------------------------------------- /RP2040-Breadstick/RP2040-Breadstick.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/RP2040-Breadstick.kicad_sch -------------------------------------------------------------------------------- /RP2040-Breadstick/RP2040.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/RP2040.kicad_sch -------------------------------------------------------------------------------- /RP2040-Breadstick/SK9822_RGB_LED_Strip.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/SK9822_RGB_LED_Strip.kicad_sch -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45DCH/74AXP2T45DCH.stp -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45GXX/74AXP2T45GXX.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45GXX/74AXP2T45GXX.STEP -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45GXX/ImportGuides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45GXX/ImportGuides.html -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/2023-01-15_17-59-42/2023-01-15_17-59-42.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/2023-01-15_17-59-42/2023-01-15_17-59-42.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/2023-01-15_17-59-42/2023-01-15_17-59-42.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/2023-01-15_17-59-42/2023-01-15_17-59-42.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/2023-01-15_17-59-42/footprints.pretty/74AXP2T45GXX.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/2023-01-15_17-59-42/footprints.pretty/74AXP2T45GXX.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/ImportGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/74AXP2T45GXX/KiCAD/ImportGuide.html -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/7V12000018 v4.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/7V12000018 v4.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/AP2112K-3.3TRG1.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/AP2112K-3.3TRG1.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/AP2112K-3.3TRG1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/AP2112K-3.3TRG1.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/SOT95P285X140-5N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/SOT95P285X140-5N.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/AP2112K-3.3TRG1/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/ECS-120-10-36Q-ES-TR.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/ECS-120-10-36Q-ES-TR.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/ECS-120-10-36Q-ES-TR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/ECS-120-10-36Q-ES-TR.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/XTAL_ECS-120-10-36Q-ES-TR.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/XTAL_ECS-120-10-36Q-ES-TR.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/ECS-120-10-36Q-ES-TR/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/GT-TC029B-H025-L1N v1.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/GT-TC029B-H025-L1N v1.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/KMR731NGLFS/KMR731NGLFS.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/KMR731NGLFS/KMR731NGLFS.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/KMR731NGLFS/KMR731NGLFS.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/KMR731NGLFS/KMR731NGLFS.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/KMR731NGLFS/SW_KMR731NGLFS.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/KMR731NGLFS/SW_KMR731NGLFS.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/KMR731NGLFS/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/KMR731NGLFS/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.dcm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/LM66200DRLR.stp -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/SOTFL50P160X60-8L.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/SOTFL50P160X60-8L.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/license.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LM66200DRLR/version.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LM66200DRLR/version.bin -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/LGA-14-2.5X3MM.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/LGA-14-2.5X3MM.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/LSM6DS3TR-C.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/LSM6DS3TR-C.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/LSM6DS3TR-C.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/LSM6DS3TR-C.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DS3TR-C/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DSMTR/LSM6DSMTR.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DSMTR/LSM6DSMTR.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DSMTR/LSM6DSMTR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DSMTR/LSM6DSMTR.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DSMTR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DSMTR/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DSMTR/PQFN50P300X250X86-14N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DSMTR/PQFN50P300X250X86-14N.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/LSM6DSMTR/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/LSM6DSMTR/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/MIC5528-3.3YMT-TR.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/MIC5528-3.3YMT-TR.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/MIC5528-3.3YMT-TR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/MIC5528-3.3YMT-TR.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/SON40P120X120X60-7N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/SON40P120X120X60-7N.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MIC5528-3.3YMT-TR/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/DIO_V2PM15HM3_H.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/DIO_V2PM15HM3_H.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/V2PM15HM3_H.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/V2PM15HM3_H.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/V2PM15HM3_H.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/V2PM15HM3_H.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/MICROSMP_DO-219AD/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/RP2040/QFN40P700X700X90-57N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/RP2040/QFN40P700X700X90-57N.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/RP2040/RP2040.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/RP2040/RP2040.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/RP2040/RP2040.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/RP2040/RP2040.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/RP2040/RP2040.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/RP2040/RP2040.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/RP2040/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/RP2040/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/SK9822-2020 RGB LED v2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/SK9822-2020 RGB LED v2.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/SK9822-2020 RGB LED v2_old.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/SK9822-2020 RGB LED v2_old.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/SOT-416.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/SOT-416.STEP -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/SWRB1205S-101MT v2.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/SWRB1205S-101MT v2.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/Switch_R-667995/2023-01-15_17-38-00/STEP/R-667995_MIT.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/Switch_R-667995/2023-01-15_17-38-00/STEP/R-667995_MIT.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/Switch_R-667995/ImportGuides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/Switch_R-667995/ImportGuides.html -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/Switch_R-667995/KiCAD/2023-01-15_17-38-00/2023-01-15_17-38-00.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/Switch_R-667995/KiCAD/2023-01-15_17-38-00/2023-01-15_17-38-00.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/Switch_R-667995/KiCAD/2023-01-15_17-38-00/footprints.pretty/R-667995.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/Switch_R-667995/KiCAD/2023-01-15_17-38-00/footprints.pretty/R-667995.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/Switch_R-667995/KiCAD/ImportGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/Switch_R-667995/KiCAD/ImportGuide.html -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/T491A106K010AT/T491A106K010AT.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/T491A106K010AT/T491A106K010AT.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/T491A106K010AT/T491A106K010AT.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/T491A106K010AT/T491A106K010AT.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/T491A106K010AT/T491A106K010AT.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/T491A106K010AT/T491A106K010AT.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/T491A106K010AT/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/T491A106K010AT/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TLJR476M006R3200/CAPC2012X140N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TLJR476M006R3200/CAPC2012X140N.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TLJR476M006R3200/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TLJR476M006R3200/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TLJR476M006R3200/TLJR476M006R3200.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TLJR476M006R3200/TLJR476M006R3200.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TLJR476M006R3200/TLJR476M006R3200.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TLJR476M006R3200/TLJR476M006R3200.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TLJR476M006R3200/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TLJR476M006R3200/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TI_TPD4E05U06DQAR.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TI_TPD4E05U06DQAR.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TPD4E05U06DQAR.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TPD4E05U06DQAR.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TPD4E05U06DQAR.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TPD4E05U06DQAR.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TPD4E05U06DQAR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/TPD4E05U06DQAR.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TPD4E05U06DQAR/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TXB0102DCUR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TXB0102DCUR/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TXB0102DCUR/SOP50P310X90-8N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TXB0102DCUR/SOP50P310X90-8N.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TXB0102DCUR/TXB0102DCUR.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TXB0102DCUR/TXB0102DCUR.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TXB0102DCUR/TXB0102DCUR.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TXB0102DCUR/TXB0102DCUR.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TXB0102DCUR/TXB0102DCUR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TXB0102DCUR/TXB0102DCUR.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TXB0102DCUR/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TXB0102DCUR/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/HRO_TYPE-C-31-M-12.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/HRO_TYPE-C-31-M-12.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/TYPE-C-31-M-12.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/TYPE-C-31-M-12.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/TYPE-C-31-M-12.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/TYPE-C-31-M-12.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/TYPE-C-31-M-12.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/TYPE-C-31-M-12.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/TYPE-C-31-M-12/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/USB-C-2171790001/2171790001.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/USB-C-2171790001/2171790001.stp -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/USB-C-2171790001/ImportGuides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/USB-C-2171790001/ImportGuides.html -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/USB-C-2171790001/USB-C-2171790001.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/USB-C-2171790001/USB-C-2171790001.kicad_sym -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/USB-C-2171790001/USB-C-2171790001.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/USB-C-2171790001/USB-C-2171790001.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/USB-C-2171790001/footprints.pretty/USB-C-2171790001.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/USB-C-2171790001/footprints.pretty/USB-C-2171790001.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/W25Q128JVPIQ-TR.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/W25Q128JVPIQ-TR.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/W25Q128JVPIQ-TR.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/W25Q128JVPIQ-TR.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/W25Q128JVPIQ-TR/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/X322516MLB4SI/Crystal3225_24GND.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/X322516MLB4SI/Crystal3225_24GND.step -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/X322516MLB4SI/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/X322516MLB4SI/License.txt -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/X322516MLB4SI/OSC_X322516MLB4SI.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/X322516MLB4SI/OSC_X322516MLB4SI.kicad_mod -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/X322516MLB4SI/X322516MLB4SI.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/X322516MLB4SI/X322516MLB4SI.lib -------------------------------------------------------------------------------- /RP2040-Breadstick/Snap EDA/X322516MLB4SI/how-to-import.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/Snap EDA/X322516MLB4SI/how-to-import.htm -------------------------------------------------------------------------------- /RP2040-Breadstick/USB.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/USB.kicad_sch -------------------------------------------------------------------------------- /RP2040-Breadstick/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/bom/ibom.html -------------------------------------------------------------------------------- /RP2040-Breadstick/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/fp-lib-table -------------------------------------------------------------------------------- /RP2040-Breadstick/ibom.config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/ibom.config.ini -------------------------------------------------------------------------------- /RP2040-Breadstick/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/sym-lib-table -------------------------------------------------------------------------------- /RP2040-Breadstick/untitled.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breadstick-Innovations/Raspberry-Breadstick/HEAD/RP2040-Breadstick/untitled.kicad_sch --------------------------------------------------------------------------------