├── .github └── FUNDING.yml ├── CAD └── Mount&PCB.step ├── Docs ├── Firmware-v2.md ├── Firmware.md └── Mount.md ├── EasyEDA-Source ├── v1-LIS2DW │ ├── PCB.json │ └── SCH.md └── v2-ADXL345 │ ├── PCB.json │ └── SCH.json ├── Firmware-v2 └── adxlmcu.cfg ├── Firmware └── adxlmcu.cfg ├── Gerbers ├── v1-LIS2DW │ ├── BOM.csv │ ├── Gerber.zip │ └── PNP.csv └── v2-ADXL345 │ ├── BOM.csv │ ├── Gerber.zip │ └── PNP.csv ├── Images ├── PCB-w-Mount.jpg ├── PCB.jpg └── PCBv2.jpg ├── LICENSE ├── Mount ├── CHT │ ├── Back.stl │ └── Front.stl ├── Revo │ ├── Back.stl │ └── Front.stl └── Standard │ ├── Back.stl │ └── Front.stl └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: xbst 2 | patreon: isikstech 3 | -------------------------------------------------------------------------------- /Docs/Firmware-v2.md: -------------------------------------------------------------------------------- 1 | # KUSBA PRO Firmware Flashing & Usage 2 | 3 |
4 | 5 |
6 | Klipper Prep. (enabling resonance testing) 7 | 8 | 0. Run the following commands in order. This will take some time. (Based on the [official Klipper docs](https://www.klipper3d.org/Measuring_Resonances.html#software-installation)) 9 | ``` 10 | ~/klippy-env/bin/pip install -v numpy 11 | sudo apt update 12 | sudo apt install python3-numpy python3-matplotlib libatlas-base-dev 13 | ``` 14 | 15 |
16 | 17 |
18 | 19 | 1. Connect your KUSBA PRO via a USB cable to your Raspberry Pi while holding down the button. 20 | 2. SSH into your Raspberry Pi. 21 | 3. Go to the Klipper directory: `cd ~/klipper` 22 | 4. Clean remaining files from previous build: `make clean` 23 | 5. Choose the options for the build: `make menuconfig` 24 | 6. Use these settings: 25 | ``` 26 | [*] Enable extra low-level configuration options 27 | Micro-controller Architecture (STMicroelectronics STM32) ---> 28 | Processor model (STM32G431) ---> 29 | Bootloader offset (No bootloader) ---> 30 | Clock Reference (8 MHz crystal) ---> 31 | Communication interface (USB (on PA11/PA12)) ---> 32 | USB ids ---> 33 | () GPIO pins to set at micro-controller startup (NEW) 34 | ``` 35 | 7. Exit by typing `Q`, save by pressing `Y`. 36 | 8. Build the firmware: `make` 37 | 9. Find the ID of your KUSBA PRO in DFU mode using `lsusb`. It should be the device appearing as `STM Device in DFU mode`. 38 | 10. Flash the firmware: `make flash FLASH_DEVICE=1234:5678`. Replace `1234:5678` with the ID you found in the above step. 39 | 11. Use `ls /dev/serial/by-id/*` to find the serial address of your KUSBA PRO. It'll start with: `usb-Klipper_stm32g431` 40 | 12. [Download the `adxlmcu.cfg` file from this repository](../Firmware-v2/adxlmcu.cfg). 41 | 13. Upload the `adxlmcu.cfg` file to your config directory. You can do this on Mainsail/Fluidd etc. 42 | 14. Edit the `adxlmcu.cfg` file (in Mainsail/Fluidd). Change the MCU serial address (step 12) and the probe points. 43 | 15. Save and close. 44 | 16. If your KUSBA PRO isn't assembled follow the [assembly](./Mount.md) doc first. 45 | 17. Edit your `printer.cfg` file. Add: 46 | ``` 47 | [include adxlmcu.cfg] 48 | ``` 49 | 18. Do your input shaper testing. When done comment the include line to disable the KUSBA PRO. (If you don't do this and unplug the KUSBA PRO, Klipper won't work.) 50 | ``` 51 | # [include adxlmcu.cfg] 52 | ``` 53 | -------------------------------------------------------------------------------- /Docs/Firmware.md: -------------------------------------------------------------------------------- 1 | # KUSBA PRO Firmware Flashing & Usage 2 | 3 | Note: Make sure to use an up-to-date version of Klipper with LIS2DW accelerometer support. 4 | 5 |
6 | 7 |
8 | Klipper Prep. (enabling resonance testing) 9 | 10 | 0. Run the following commands in order. This will take some time. (Based on the [official Klipper docs](https://www.klipper3d.org/Measuring_Resonances.html#software-installation)) 11 | ``` 12 | ~/klippy-env/bin/pip install -v numpy 13 | sudo apt update 14 | sudo apt install python3-numpy python3-matplotlib libatlas-base-dev 15 | ``` 16 | 17 |
18 | 19 |
20 | 21 | 1. Connect your KUSBA PRO via a USB cable to your Raspberry Pi while holding down the button. The LED on the PCB will turn on. 22 | 2. SSH into your Raspberry Pi. 23 | 3. Go to the Klipper directory: `cd ~/klipper` 24 | 4. Clean remaining files from previous build: `make clean` 25 | 5. Choose the options for the build: `make menuconfig` 26 | 6. Use these settings: 27 | ``` 28 | [*] Enable extra low-level configuration options 29 | Micro-controller Architecture (STMicroelectronics STM32) ---> 30 | Processor model (STM32F042) ---> 31 | Bootloader offset (No bootloader) ---> 32 | Clock Reference (8 MHz crystal) ---> 33 | Communication interface (USB (on PA9/PA10)) ---> 34 | USB ids ---> 35 | Optional features (to reduce code size) ---> 36 | () GPIO pins to set at micro-controller startup (NEW) 37 | ``` 38 | 7. Enter the `Optional features (to reduce code size)` menu. Disable these options: 39 | ``` 40 | [ ] Support GPIO "bit-banging" devices 41 | [ ] Support LCD devices 42 | [*] Support external sensor devices 43 | [*] Support lis2dw 3-axis accelerometer 44 | [ ] Support software based I2C "bit-banging" 45 | [ ] Support software based SPI "bit-banging" 46 | ``` 47 | 8. Exit by typing `Q`, save by pressing `Y`. 48 | 9. Build the firmware: `make` 49 | 10. Find the ID of your KUSBA PRO in DFU mode using `lsusb`. It should be the device appearing as `STM Device in DFU mode`. 50 | 11. Flash the firmware: `make flash FLASH_DEVICE=1234:5678`. Replace `1234:5678` with the ID you found in the above step. 51 | 12. Use `ls /dev/serial/by-id/*` to find the serial address of your KUSBA PRO. It'll start with: `usb-Klipper_stm32f042` 52 | 13. [Download the `adxlmcu.cfg` file from this repository](../Firmware/adxlmcu.cfg). 53 | 14. Upload the `adxlmcu.cfg` file to your config directory. You can do this on Mainsail/Fluidd etc. 54 | 15. Edit the `adxlmcu.cfg` file (in Mainsail/Fluidd). Change the MCU serial address (step 12) and the probe points. 55 | 16. Save and close. 56 | 17. If your KUSBA PRO isn't assembled follow the [assembly](./Mount.md) doc first. 57 | 18. Edit your `printer.cfg` file. Add: 58 | ``` 59 | [include adxlmcu.cfg] 60 | ``` 61 | 19. Do your input shaper testing. When done comment the include line to disable the KUSBA PRO. (If you don't do this and unplug the KUSBA PRO, Klipper won't work.) 62 | ``` 63 | # [include adxlmcu.cfg] 64 | ``` 65 | -------------------------------------------------------------------------------- /Docs/Mount.md: -------------------------------------------------------------------------------- 1 | # KUSBA PRO Assembly 2 | 3 | ### Tools Needed 4 | | Tool | Link | 5 | |---|---| 6 | | Phillips #0 Screwdriver |[Amazon US](https://amzn.to/3SBHJuH)| 7 | | Metric Hex 2.5 Driver |[Amazon US](https://amzn.to/473705w)| 8 | | Soldering Iron |[Amazon US](https://amzn.to/3ssW5TC) [Aliexpress](https://s.click.aliexpress.com/e/_DBhTVYR)| 9 | 10 | ### Parts Needed 11 | | Part | Link | 12 | |---|---| 13 | | KUSBA PRO PCB | Check the main [readme](../README.md#purchasing-a-kusba-pro) file | 14 | | [Front MJF Part](../Mount/Standard/Front.stl)| [Jawstec](https://www.jawstec.com/3d-printing-service/?aff=6)| 15 | | [Back MJF Part](../Mount/Standard/Back.stl)| [Jawstec](https://www.jawstec.com/3d-printing-service/?aff=6)| 16 | | 2x M2x8 Self Tapper Screw |[Amazon US](https://amzn.to/49wyDp5) [Aliexpress](https://s.click.aliexpress.com/e/_DeJRkcL)| 17 | | 2x M3x12 Screw |[Amazon US](https://amzn.to/3ssW2XW) [Aliexpress](https://s.click.aliexpress.com/e/_DD2Wxyr)| 18 | | 2x M3x5x4 Threaded Insert |[Amazon US](https://amzn.to/4736XXo) [Aliexpress](https://s.click.aliexpress.com/e/_DkG3oHz)| 19 | 20 | ### Video 21 | [![KUSBA PRO Assembly](https://img.youtube.com/vi/K55Uk8NYE5w/0.jpg)](https://www.youtube.com/watch?v=K55Uk8NYE5w) 22 | 23 | ### Note 24 | - This guide contains Amazon Associate, Aliexpress affiliate, JawsTec affiliate links. I make a comission on qualifying purchases. 25 | -------------------------------------------------------------------------------- /EasyEDA-Source/v1-LIS2DW/SCH.md: -------------------------------------------------------------------------------- 1 | Unfortunately the source schematic is lost. I guess I forgot to save it or I overwrote it somehow. Sorry :( 2 | 3 | You should be able to use the PCB file for most purposes. 4 | -------------------------------------------------------------------------------- /EasyEDA-Source/v2-ADXL345/SCH.json: -------------------------------------------------------------------------------- 1 | { 2 | "editorVersion": "6.5.40", 3 | "docType": "5", 4 | "title": "KUSBA T ADXL 0402", 5 | "description": "", 6 | "colors": {}, 7 | "schematics": [ 8 | { 9 | "docType": "1", 10 | "title": "Sheet_1", 11 | "description": "", 12 | "dataStr": { 13 | "head": { 14 | "docType": "1", 15 | "editorVersion": "6.5.40", 16 | "newgId": true, 17 | "c_para": { 18 | "Prefix Start": "1" 19 | }, 20 | "c_spiceCmd": "null", 21 | "hasIdFlag": true, 22 | "uuid": "4c89fd5cb02ff9f89995c26e57d908b2", 23 | "x": "0", 24 | "y": "0", 25 | "portOfADImportHack": "", 26 | "importFlag": 0, 27 | "transformList": "" 28 | }, 29 | "canvas": "CA~1000~1000~#FFFFFF~yes~#CCCCCC~5~1000~1000~line~5~pixel~5~0~0", 30 | "shape": [ 31 | "LIB~0~-806~package`NONE`Manufacturer Part`?`spicePre`.`~~0~frame_lib_1~~~0~b4f13d832e01ac97~yes~yes~~~#@$T~N~570.5~-809~0~#000080~Arial~~~~~comment~A~0~start~gge223~0~pinpart#@$PT~M 206 -796 L 206 -806 M 206 -10 L 206 0 M 402 -796 L 402 -806 M 402 -10 L 402 0 M 598 -796 L 598 -806 M 598 -10 L 598 0 M 794 -796 L 794 -806 M 794 -10 L 794 0 M 990 -796 L 990 -806 M 990 -10 L 990 0 M 10 -600 L 0 -600 M 1139 -600 L 1149 -600 M 10 -404 L 0 -404 M 1139 -404 L 1149 -404 M 10 -208 L 0 -208 M 1139 -208 L 1149 -208 M 10 -12 L 0 -12 M 1139 -12 L 1149 -12~#880000~1~0~none~gge10~0~frame_tick#@$T~P~571.5~-818~0~#000080~Arial~~~~~comment~A~0~start~gge220~0~pinpart#@$T~L~1.5~-698~0~#880000~~~~~~comment~A~1~start~gge13~0~frame_tick#@$T~L~1140.5~-698~0~#880000~~~~~~comment~A~1~start~gge19~0~frame_tick#@$T~L~1.5~-502~0~#880000~~~~~~comment~B~1~start~gge25~0~frame_tick#@$T~L~1140.5~-502~0~#880000~~~~~~comment~B~1~start~gge31~0~frame_tick#@$T~L~1.5~-306~0~#880000~~~~~~comment~C~1~start~gge37~0~frame_tick#@$T~L~1140.5~-306~0~#880000~~~~~~comment~C~1~start~gge43~0~frame_tick#@$T~L~1.5~-110~0~#880000~~~~~~comment~D~1~start~gge49~0~frame_tick#@$T~L~1140.5~-110~0~#880000~~~~~~comment~D~1~start~gge55~0~frame_tick#@$T~L~108~-797.5~0~#880000~~~~~~comment~1~1~start~gge61~0~frame_tick#@$T~L~108~-1.5~0~#880000~~~~~~comment~1~1~start~gge67~0~frame_tick#@$T~L~304~-797.5~0~#880000~~~~~~comment~2~1~start~gge73~0~frame_tick#@$T~L~304~-1.5~0~#880000~~~~~~comment~2~1~start~gge79~0~frame_tick#@$T~L~500~-797.5~0~#880000~~~~~~comment~3~1~start~gge85~0~frame_tick#@$T~L~500~-1.5~0~#880000~~~~~~comment~3~1~start~gge91~0~frame_tick#@$T~L~696~-797.5~0~#880000~~~~~~comment~4~1~start~gge97~0~frame_tick#@$T~L~696~-1.5~0~#880000~~~~~~comment~4~1~start~gge103~0~frame_tick#@$T~L~892~-797.5~0~#880000~~~~~~comment~5~1~start~gge109~0~frame_tick#@$T~L~892~-1.5~0~#880000~~~~~~comment~5~1~start~gge115~0~frame_tick#@$R~10~-796~~~1129~786~#880000~1~0~none~gge121~0~frame_innerbox#@$R~0~-806~~~1149~806~#880000~1~0~none~gge124~0~frame_outbox#@$R~694.99995~-90~~~444~80~#880000~1~0~none~gge127~0~frame_hitarea#@$PL~695.1 -50.75 1138.63 -50.75~#880000~1~0~none~gge130~0#@$PL~799.63 -30.75 1138.63 -30.75~#880000~1~0~none~gge133~0#@$PL~1059.61 -89.93 1059.63 -50.75~#880000~1~0~none~gge136~0#@$PL~1059.63 -50.75 1059.63 -30.75~#880000~1~0~none~gge139~0#@$T~L~699.99995~-77~0~#880000~~8pt~~~~comment~TITLE:~1~start~gge142~0~pinpart#@$T~L~757.62495~-64.41~0~#0000FF~~10pt~~~~comment~KUSBA PRO 2~1~start~gge148~0~frame_title#@$T~L~1064.62495~-63.75~0~#880000~~8pt~~~~comment~REV:~1~start~gge154~0~pinpart#@$T~L~1102.62495~-63.75~0~#0000FF~~9pt~~~~comment~1.0~1~start~gge160~0~frame_version#@$T~L~804.62495~-15~0~#880000~~8pt~~~~comment~Date:~1~start~gge166~0~pinpart#@$T~L~851.62495~-14.52~0~#0000FF~~9pt~~~~comment~2024-03-27~1~start~gge172~0~frame_date#@$T~L~1063.62495~-35~0~#880000~~8pt~~~~comment~Sheet:~1~start~gge178~0~pinpart#@$T~L~1108.62495~-34.52~0~#0000FF~~9pt~~~~comment~1/1~1~start~gge184~0~frame_sheet#@$T~L~943.62495~-14.75~0~#880000~~8pt~~~~comment~Drawn By:~1~start~gge190~0~pinpart#@$T~L~1008.63~-14.75~0~#0000FF~~9pt~~~~comment~Isik~1~start~gge196~0~frame_drawn#@$T~L~804.62495~-36.75~0~#880000~~8pt~~~~comment~Company:~1~start~gge202~0~pinpart#@$T~L~871.24995~-36.64~0~#0000FF~~9pt~~~~comment~XBST LLC~1~start~gge208~0~frame_company#@$PL~799.63 -50.75 799.63 -10.75~#880000~1~0~none~gge214~0", 32 | "F~part_netLabel_netPort~380~-280~180~gge775~~0^^380~-280^^INT2~#0000FF~403.45~-276.45~0~~1~Times New Roman~8pt~flag_gge454^^PL~380 -280 385 -285 400 -285 400 -275 385 -275 380 -280~#0000FF~1~0~transparent~gge787~0", 33 | "F~part_netLabel_netPort~200~-250~180~gge790~~0^^200~-250^^CS~#0000FF~222~-246.3~0~~1~Times New Roman~8pt~flag_gge457^^PL~200 -250 205 -255 220 -255 220 -245 205 -245 200 -250~#0000FF~1~0~transparent~gge802~0", 34 | "F~part_netLabel_netPort~380~-310~180~gge805~~0^^380~-310^^MISO~#0000FF~402.01~-306.41~0~~1~Times New Roman~8pt~flag_gge460^^PL~380 -310 385 -315 400 -315 400 -305 385 -305 380 -310~#0000FF~1~0~transparent~gge817~0", 35 | "F~part_netLabel_netPort~380~-320~180~gge820~~0^^380~-320^^MOSI~#0000FF~402.01~-316.41~0~~1~Times New Roman~8pt~flag_gge463^^PL~380 -320 385 -325 400 -325 400 -315 385 -315 380 -320~#0000FF~1~0~transparent~gge832~0", 36 | "F~part_netLabel_gnD~190~-250~0~gge916~~0^^190~-250^^GND~#000000~177~-224~0~start~1~Times New Roman~9pt~flag_gge466^^PL~190 -240 190 -250~#000000~1~0~transparent~gge928~0^^PL~181 -240 199 -240~#000000~1~0~transparent~gge931~0^^PL~184 -238 196 -238~#000000~1~0~transparent~gge934~0^^PL~187 -236 193 -236~#000000~1~0~transparent~gge937~0^^PL~189 -234 191 -234~#000000~1~0~transparent~gge940~0", 37 | "F~part_netLabel_VCC~180~-330~0~gge1158~~0^^180~-330^^3V3~#000000~169.66~-343.09~0~start~1~Times New Roman~9pt~flag_gge469^^PL~180 -340 180 -330~#000000~1~0~transparent~gge1170~0^^PL~175 -340 185 -340~#000000~1~0~transparent~gge1173~0", 38 | "T~L~105~-380~0~#000000~helvetica~11pt~bold~~~comment~ACCELEROMETER~1~start~gge1294~0~pinpart", 39 | "R~100~-395~~~145~20~#000000~1~0~none~gge1300~0~", 40 | "R~100~-395~~~350~195~#000000~1~0~none~gge1303~0~", 41 | "F~part_netLabel_netPort~1070~-695~270~gge1873~~0^^1070~-695^^XIN~#0000FF~1073.4~-720.55~270~start~1~Times New Roman~8pt~flag_gge472^^PL~1070 -695 1065 -700 1065 -715 1075 -715 1075 -700 1070 -695~#0000FF~1~0~transparent~gge1885~0", 42 | "F~part_netLabel_gnD~1070~-655~0~gge1888~~0^^1070~-655^^GND~#000000~1057.015625~-627.765625~0~start~1~Times New Roman~9pt~flag_gge475^^PL~1070 -645 1070 -655~#000000~1~0~transparent~gge1900~0^^PL~1061 -645 1079 -645~#000000~1~0~transparent~gge1903~0^^PL~1064 -643 1076 -643~#000000~1~0~transparent~gge1906~0^^PL~1067 -641 1073 -641~#000000~1~0~transparent~gge1909~0^^PL~1069 -639 1071 -639~#000000~1~0~transparent~gge1912~0", 43 | "F~part_netLabel_netPort~980~-695~270~gge1915~~0^^980~-695^^XOUT~#0000FF~983.38~-717.73~270~start~1~Times New Roman~8pt~flag_gge478^^PL~980 -695 975 -700 975 -715 985 -715 985 -700 980 -695~#0000FF~1~0~transparent~gge1927~0", 44 | "F~part_netLabel_+5V~1065~-530~0~gge3451~~0^^1065~-530^^3V3~#000000~1054.671875~-543.03125~0~start~1~Times New Roman~9pt~flag_gge481^^PL~1065 -540 1065 -530~#000000~1~0~transparent~gge3463~0^^PL~1060 -540 1070 -540~#000000~1~0~transparent~gge3466~0", 45 | "LIB~1025~-520~package`KEY-SMD_4P-L3.5-W2.9-P1.48-LS4.3-TL`Supplier`LCSC`Manufacturer`PANASONIC(松下)`Manufacturer Part`EVPAA202K`Contributor`LCSC`Supplier Part`C79147`JLCPCB Part Class`Extended Part`spicePre`S`spiceSymbolName`EVPAA202K`~~0~gge53642b2a5a93d60d~eeadd03ba3b7411a9f1cdcd2a516ef5f~46d9b87354aa46fb843265eac8b01e9d~0~75896df2490f59f8~yes~yes~295ce5be612042e5ad5a9a196d701c6d~1682060150~a36c49f63c9d45d2b8a8ddff7d3514a0#@$T~N~998.8515625~-541.796875~0~#000080~Arial~~~~~comment~EVPAA202K~1~start~gge3619~0~pinpart#@$T~P~998.8603125~-550.90625~0~#000080~Arial~~~~~comment~BOOT~1~start~gge3625~0~pinpart#@$R~1005~-536~2~2~40~32~#880000~1~0~none~gge3631~0~#@$P~show~0~2'~1065~-510~0~gge3634~0^^1065~-510^^M 1065 -510 h -20~#880000^^0~1043~-507~0~2'~end~~~#0000FF^^1~1050~-511~0~2'~start~~~#0000FF^^0~1048~-510^^0~M 1045 -513 L 1042 -510 L 1045 -507#@$P~show~0~1'~1065~-530~0~gge3655~0^^1065~-530^^M 1065 -530 h -20~#880000^^0~1043~-527~0~1'~end~~~#0000FF^^1~1050~-531~0~1'~start~~~#0000FF^^0~1048~-530^^0~M 1045 -533 L 1042 -530 L 1045 -527#@$P~show~0~2~985~-510~180~gge3676~0^^985~-510^^M 985 -510 h 20~#880000^^0~1007~-507~0~2~start~~~#0000FF^^1~1000~-511~0~2~end~~~#0000FF^^0~1002~-510^^0~M 1005 -507 L 1008 -510 L 1005 -513#@$P~show~0~1~985~-530~180~gge3697~0^^985~-530^^M 985 -530 h 20~#880000^^0~1007~-527~0~1~start~~~#0000FF^^1~1000~-531~0~1~end~~~#0000FF^^0~1002~-530^^0~M 1005 -527 L 1008 -530 L 1005 -533#@$PL~1025 -510 1025 -517 1031 -523~#880000~1~0~none~gge3718~0#@$PL~1025 -530 1025 -524 1025 -523~#880000~1~0~none~gge3721~0#@$PL~1005 -510 1045 -510~#880000~1~0~none~gge3724~0#@$PL~1005 -530 1045 -530~#880000~1~0~none~gge3727~0", 46 | "F~part_netLabel_+5V~725~-295~0~gge5946~~0^^725~-295^^+5V~#000000~714.2890625~-308.1171875~0~start~1~Times New Roman~9pt~flag_gge484^^PL~725 -305 725 -295~#000000~1~0~transparent~gge5958~0^^PL~720 -305 730 -305~#000000~1~0~transparent~gge5961~0", 47 | "F~part_netLabel_gnD~725~-255~0~gge5964~~0^^725~-255^^GND~#000000~712.015625~-228~0~start~1~Times New Roman~9pt~flag_gge487^^PL~725 -245 725 -255~#000000~1~0~transparent~gge5976~0^^PL~716 -245 734 -245~#000000~1~0~transparent~gge5979~0^^PL~719 -243 731 -243~#000000~1~0~transparent~gge5982~0^^PL~722 -241 728 -241~#000000~1~0~transparent~gge5985~0^^PL~724 -239 726 -239~#000000~1~0~transparent~gge5988~0", 48 | "W~580 -275 560 -275 560 -295~#008800~1~0~none~gge5991~0", 49 | "W~580 -285 570 -285 570 -270~#008800~1~0~none~gge5994~0", 50 | "W~580 -295 560 -295~#008800~1~0~none~gge5997~0", 51 | "O~660~-275~gge6000~M 656 -279 L 664 -271 M 664 -279 L 656 -271~#33cc33~0", 52 | "W~660 -295 690 -295~#008800~1~0~none~gge6006~0", 53 | "LIB~620~-285~package`SOT-23-5_L3.0-W1.7-P0.95-LS2.8-BR`Supplier`LCSC`Supplier Part`C80670`Manufacturer`TI(德州仪器)`Manufacturer Part`LP5907MFX-3.3/NOPB`Contributor`LCSC`JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`LP5907MFX-3.3/NOPB`~~0~gge7b668257676d233e~e7f085e4f71344109c090040716070ab~09e99aef5d49410f97d600674c25fa8b~0~2caf4683ef160165~yes~yes~5e34311519754f0fa3dfa05405b9de6f~1681963933~496d90ea5693485aa219307d1e55f36a#@$T~N~589.0390625~-322.765625~0~#000080~Arial~~~~~comment~LP5907MFX-3.3/NOPB~1~start~gge6015~0~pinpart#@$T~P~589.046875~-331.765625~0~#000080~Arial~~~~~comment~U3~1~start~gge6021~0~pinpart#@$R~590~-305~2~2~60~40~#880000~1~0~none~gge6027~0~#@$E~595~-300~1.5~1.5~#880000~1~0~#880000~gge6030~0#@$P~show~0~1~580~-295~180~gge6033~0^^580~-295^^M 580 -295 h 10~#880000^^1~593.7~-291~0~IN~start~~~#0000FF^^1~589.5~-296~0~1~end~~~#0000FF^^0~587~-295^^0~M 590 -292 L 593 -295 L 590 -298#@$P~show~0~2~580~-285~180~gge6054~0^^580~-285^^M 580 -285 h 10~#000000^^1~593.7~-281~0~GND~start~~~#000000^^1~589.5~-286~0~2~end~~~#000000^^0~587~-285^^0~M 590 -282 L 593 -285 L 590 -288#@$P~show~0~3~580~-275~180~gge6075~0^^580~-275^^M 580 -275 h 10~#880000^^1~593.7~-271~0~EN~start~~~#0000FF^^1~589.5~-276~0~3~end~~~#0000FF^^0~587~-275^^0~M 590 -272 L 593 -275 L 590 -278#@$P~show~0~4~660~-275~0~gge6096~0^^660~-275^^M 660 -275 h -10~#880000^^1~646.3~-271~0~N/C~end~~~#0000FF^^1~650.5~-276~0~4~start~~~#0000FF^^0~653~-275^^0~M 650 -278 L 647 -275 L 650 -272#@$P~show~0~5~660~-295~0~gge6117~0^^660~-295^^M 660 -295 h -10~#880000^^1~646.3~-291~0~OUT~end~~~#0000FF^^1~650.5~-296~0~5~start~~~#0000FF^^0~653~-295^^0~M 650 -298 L 647 -295 L 650 -292", 54 | "F~part_netLabel_gnD~690~-255~0~gge6216~~0^^690~-255^^GND~#000000~677.015625~-227.765625~0~start~1~Times New Roman~9pt~flag_gge490^^PL~690 -245 690 -255~#000000~1~0~transparent~gge6228~0^^PL~681 -245 699 -245~#000000~1~0~transparent~gge6231~0^^PL~684 -243 696 -243~#000000~1~0~transparent~gge6234~0^^PL~687 -241 693 -241~#000000~1~0~transparent~gge6237~0^^PL~689 -239 691 -239~#000000~1~0~transparent~gge6240~0", 55 | "F~part_netLabel_gnD~570~-270~0~gge6243~~0^^570~-270^^GND~#000000~557.0078125~-242.7734375~0~start~1~Times New Roman~9pt~flag_gge493^^PL~570 -260 570 -270~#000000~1~0~transparent~gge6255~0^^PL~561 -260 579 -260~#000000~1~0~transparent~gge6258~0^^PL~564 -258 576 -258~#000000~1~0~transparent~gge6261~0^^PL~567 -256 573 -256~#000000~1~0~transparent~gge6264~0^^PL~569 -254 571 -254~#000000~1~0~transparent~gge6267~0", 56 | "F~part_netLabel_+5V~560~-295~0~gge6270~~0^^560~-295^^+5V~#000000~549.265625~-308.09375~0~start~1~Times New Roman~9pt~flag_gge496^^PL~560 -305 560 -295~#000000~1~0~transparent~gge6282~0^^PL~555 -305 565 -305~#000000~1~0~transparent~gge6285~0", 57 | "F~part_netLabel_VCC~690~-295~0~gge6288~~0^^690~-295^^3V3~#000000~679.6796875~-308.09375~0~start~1~Times New Roman~9pt~flag_gge499^^PL~690 -305 690 -295~#000000~1~0~transparent~gge6300~0^^PL~685 -305 695 -305~#000000~1~0~transparent~gge6303~0", 58 | "T~L~525~-330~0~#000000~helvetica~11pt~bold~~~comment~POWER~1~start~gge6306~0~pinpart", 59 | "R~520~-345~~~65~20~#000000~1~0~none~gge6312~0~", 60 | "R~520~-345~~~285~130~#000000~1~0~none~gge6315~0~", 61 | "W~975 -365 975 -375~#008800~1~0~none~gge6357~0", 62 | "W~890 -235 885 -235 885 -270~#008800~1~0~none~gge6441~0", 63 | "W~945 -275 945 -235 930 -235~#008800~1~0~none~gge6444~0", 64 | "W~865 -270 905 -270 905 -275~#008800~1~0~none~gge6447~0", 65 | "R~825~-420~~~40~20~#000000~1~0~none~gge6654~0~", 66 | "R~825~-420~~~285~205~#000000~1~0~none~gge6657~0~", 67 | "T~L~830~-405~0~#000000~helvetica~11pt~bold~~~comment~USB~1~start~gge6660~0~pinpart", 68 | "F~part_netLabel_netPort~965~-365~270~gge6666~~0^^965~-365^^DP~#0000FF~967.38~-386.52~270~start~1~Times New Roman~8pt~flag_gge502^^PL~965 -365 960 -370 960 -385 970 -385 970 -370 965 -365~#0000FF~1~0~transparent~gge6678~0", 69 | "F~part_netLabel_netPort~955~-365~270~gge6681~~0^^955~-365^^DN~#0000FF~957.42~-386.44~270~start~1~Times New Roman~8pt~flag_gge505^^PL~955 -365 950 -370 950 -385 960 -385 960 -370 955 -365~#0000FF~1~0~transparent~gge6693~0", 70 | "O~945~-365~gge6696~M 941 -369 L 949 -361 M 949 -369 L 941 -361~#33cc33~0", 71 | "O~975~-275~gge6702~M 971 -279 L 979 -271 M 979 -279 L 971 -271~#33cc33~0", 72 | "F~part_netLabel_netPort~965~-275~90~gge6708~~0^^965~-275^^DN~#0000FF~970~-238.09~270~start~1~Times New Roman~8pt~flag_gge508^^PL~965 -275 970 -270 970 -255 960 -255 960 -270 965 -275~#0000FF~1~0~transparent~gge6720~0", 73 | "F~part_netLabel_netPort~955~-275~90~gge6723~~0^^955~-275^^DP~#0000FF~960~-239.87~270~start~1~Times New Roman~8pt~flag_gge511^^PL~955 -275 960 -270 960 -255 950 -255 950 -270 955 -275~#0000FF~1~0~transparent~gge6735~0", 74 | "F~part_netLabel_+5V~985~-275~180~gge6738~~0^^985~-275^^+5V~#000000~974.2890625~-253.7734375~0~start~1~Times New Roman~9pt~flag_gge514^^PL~985 -265 985 -275~#000000~1~0~transparent~gge6750~0^^PL~990 -265 980 -265~#000000~1~0~transparent~gge6753~0", 75 | "F~part_netLabel_+5V~935~-275~180~gge6756~~0^^935~-275^^+5V~#000000~924.2890625~-253.7734375~0~start~1~Times New Roman~9pt~flag_gge517^^PL~935 -265 935 -275~#000000~1~0~transparent~gge6768~0^^PL~940 -265 930 -265~#000000~1~0~transparent~gge6771~0", 76 | "F~part_netLabel_gnD~865~-270~0~gge6774~~0^^865~-270^^GND~#000000~852.015625~-243~0~start~1~Times New Roman~9pt~flag_gge520^^PL~865 -260 865 -270~#000000~1~0~transparent~gge6786~0^^PL~856 -260 874 -260~#000000~1~0~transparent~gge6789~0^^PL~859 -258 871 -258~#000000~1~0~transparent~gge6792~0^^PL~862 -256 868 -256~#000000~1~0~transparent~gge6795~0^^PL~864 -254 866 -254~#000000~1~0~transparent~gge6798~0", 77 | "F~part_netLabel_gnD~1015~-275~0~gge6801~~0^^1015~-275^^GND~#000000~1002.015625~-248~0~start~1~Times New Roman~9pt~flag_gge523^^PL~1015 -265 1015 -275~#000000~1~0~transparent~gge6813~0^^PL~1006 -265 1024 -265~#000000~1~0~transparent~gge6816~0^^PL~1009 -263 1021 -263~#000000~1~0~transparent~gge6819~0^^PL~1012 -261 1018 -261~#000000~1~0~transparent~gge6822~0^^PL~1014 -259 1016 -259~#000000~1~0~transparent~gge6825~0", 78 | "W~1015 -375 1045 -375 1045 -325 1045 -315~#008800~1~0~none~gge6828~0", 79 | "F~part_netLabel_gnD~1045~-315~90~gge6831~~0^^1045~-315^^GND~#000000~1061.5~-311~0~start~1~Times New Roman~9pt~flag_gge526^^PL~1055 -315 1045 -315~#000000~1~0~transparent~gge6843~0^^PL~1055 -306 1055 -324~#000000~1~0~transparent~gge6846~0^^PL~1057 -309 1057 -321~#000000~1~0~transparent~gge6849~0^^PL~1059 -312 1059 -318~#000000~1~0~transparent~gge6852~0^^PL~1061 -314 1061 -316~#000000~1~0~transparent~gge6855~0", 80 | "W~875 -325 875 -315~#008800~1~0~none~gge6858~0", 81 | "F~part_netLabel_gnD~875~-320~270~gge6861~~0^^875~-320^^GND~#000000~832.5234375~-316~0~start~1~Times New Roman~9pt~flag_gge529^^PL~865 -320 875 -320~#000000~1~0~transparent~gge6873~0^^PL~865 -329 865 -311~#000000~1~0~transparent~gge6876~0^^PL~863 -326 863 -314~#000000~1~0~transparent~gge6879~0^^PL~861 -323 861 -317~#000000~1~0~transparent~gge6882~0^^PL~859 -321 859 -319~#000000~1~0~transparent~gge6885~0", 82 | "LIB~960~-320~package`USB-C-SMD_TYPE-C-USB-17`Supplier`LCSC`Supplier Part`C167321`Manufacturer`LCSC`Manufacturer Part`-`Contributor`LCSC`JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`USB3.1C16PFSMT`~270~0~gge001b097906b5aa32~873efc6eec8c4b6ba4d8ffd3ecf022b8~77fd6ef6dc1a43a0b7e1519e8cc6665b~0~38aca3f0f97a9e5b~yes~yes~8716ba2ec1db4f5899b4697c608d3de7~1641819856~119c1e28e793474391582226e0e35f1e#@$T~N~839.4453125~-362.75~0~#000080~Arial~~~~~comment~USB3.1C16PFSMT~1~start~gge6894~0~pinpart#@$T~P~839.4453125~-371.75~0~#000080~Arial~~~~~comment~USBC~1~start~gge6900~0~pinpart#@$R~895~-355~2~2~130~70~#880000~1~0~none~gge6906~0~#@$E~1020~-350~1.5~1.5~#880000~1~0~#880000~gge6909~0#@$P~show~0~B5~975~-365~90~gge6912~0^^975~-365^^M 975 -365 v 10~#880000^^1~979~-351.3~270~CC2~end~~~#0000FF^^1~974~-355.5~270~B5~start~~~#0000FF^^0~975~-358^^0~M 972 -355 L 975 -352 L 978 -355#@$P~show~0~B6~965~-365~90~gge6933~0^^965~-365^^M 965 -365 v 10~#880000^^1~969~-351.3~270~DP2~end~~~#0000FF^^1~964~-355.5~270~B6~start~~~#0000FF^^0~965~-358^^0~M 962 -355 L 965 -352 L 968 -355#@$P~show~0~B7~955~-365~90~gge6954~0^^955~-365^^M 955 -365 v 10~#880000^^1~959~-351.3~270~DN2~end~~~#0000FF^^1~954~-355.5~270~B7~start~~~#0000FF^^0~955~-358^^0~M 952 -355 L 955 -352 L 958 -355#@$P~show~0~B8~945~-365~90~gge6975~0^^945~-365^^M 945 -365 v 10~#880000^^1~949~-351.3~270~SBU2~end~~~#0000FF^^1~944~-355.5~270~B8~start~~~#0000FF^^0~945~-358^^0~M 942 -355 L 945 -352 L 948 -355#@$P~show~0~0~1045~-325~0~gge6996~0^^1045~-325^^M 1045 -325 h -20~#880000^^1~1023~-322~0~0~end~~~#0000FF^^1~1030~-326~0~0~start~~~#0000FF^^0~1028~-325^^0~M 1025 -328 L 1022 -325 L 1025 -322#@$P~show~0~0~1045~-315~0~gge7017~0^^1045~-315^^M 1045 -315 h -20~#880000^^1~1023~-312~0~0~end~~~#0000FF^^1~1030~-316~0~0~start~~~#0000FF^^0~1028~-315^^0~M 1025 -318 L 1022 -315 L 1025 -312#@$P~show~0~0~875~-325~180~gge7038~0^^875~-325^^M 875 -325 h 20~#880000^^1~897~-322~0~0~start~~~#0000FF^^1~890~-326~0~0~end~~~#0000FF^^0~892~-325^^0~M 895 -322 L 898 -325 L 895 -328#@$P~show~0~0~875~-315~180~gge7059~0^^875~-315^^M 875 -315 h 20~#880000^^1~897~-312~0~0~start~~~#0000FF^^1~890~-316~0~0~end~~~#0000FF^^0~892~-315^^0~M 895 -312 L 898 -315 L 895 -318#@$P~show~0~A1~905~-275~270~gge7080~0^^905~-275^^M 905 -275 v -10~#880000^^1~909~-288.7~270~GND~start~~~#0000FF^^1~904~-284.5~270~A1~end~~~#0000FF^^0~905~-282^^0~M 908 -285 L 905 -288 L 902 -285#@$P~show~0~A4~935~-275~270~gge7101~0^^935~-275^^M 935 -275 v -10~#880000^^1~939~-288.7~270~VBUS~start~~~#0000FF^^1~934~-284.5~270~A4~end~~~#0000FF^^0~935~-282^^0~M 938 -285 L 935 -288 L 932 -285#@$P~show~0~A5~945~-275~270~gge7122~0^^945~-275^^M 945 -275 v -10~#880000^^1~949~-288.7~270~CC1~start~~~#0000FF^^1~944~-284.5~270~A5~end~~~#0000FF^^0~945~-282^^0~M 948 -285 L 945 -288 L 942 -285#@$P~show~0~A6~955~-275~270~gge7143~0^^955~-275^^M 955 -275 v -10~#880000^^1~959~-288.7~270~DP1~start~~~#0000FF^^1~954~-284.5~270~A6~end~~~#0000FF^^0~955~-282^^0~M 958 -285 L 955 -288 L 952 -285#@$P~show~0~A7~965~-275~270~gge7164~0^^965~-275^^M 965 -275 v -10~#880000^^1~969~-288.7~270~DN1~start~~~#0000FF^^1~964~-284.5~270~A7~end~~~#0000FF^^0~965~-282^^0~M 968 -285 L 965 -288 L 962 -285#@$P~show~0~A8~975~-275~270~gge7185~0^^975~-275^^M 975 -275 v -10~#880000^^1~979~-288.7~270~SBU1~start~~~#0000FF^^1~974~-284.5~270~A8~end~~~#0000FF^^0~975~-282^^0~M 978 -285 L 975 -288 L 972 -285#@$P~show~0~A9~985~-275~270~gge7206~0^^985~-275^^M 985 -275 v -10~#880000^^1~989~-288.7~270~VBUS~start~~~#0000FF^^1~984~-284.5~270~A9~end~~~#0000FF^^0~985~-282^^0~M 988 -285 L 985 -288 L 982 -285#@$P~show~0~A12~1015~-275~270~gge7227~0^^1015~-275^^M 1015 -275 v -10~#880000^^1~1019~-288.7~270~GND~start~~~#0000FF^^1~1014~-284.5~270~A12~end~~~#0000FF^^0~1015~-282^^0~M 1018 -285 L 1015 -288 L 1012 -285", 83 | "T~L~945~-760~0~#000000~helvetica~11pt~bold~~~comment~CRYSTAL~1~start~gge7269~0~pinpart", 84 | "R~940~-775~~~75~20~#000000~1~0~none~gge7275~0~", 85 | "R~940~-775~~~170~155~#000000~1~0~none~gge7278~0~", 86 | "LIB~1030~-685~package`CRYSTAL-SMD_4P-L3.2-W2.5-BL-2`nameAlias`Value`Contributor`lcsc`Supplier`LCSC`Supplier Part`C2924619`Manufacturer`JYJE(晶友嘉)`Manufacturer Part``JLCPCB Part Class`Extended Part`spicePre`X`spiceSymbolName`3TJ480000ZYLBC`~~0~ggeae8a484a09102de3~bb706f442db54306b5219727b92abd09~ba1e432c7a734395b1a5d00490ba0f1d~0~6885fd4c6db3602e~yes~yes~dad1c306966a483ea4aba6c728418e23~1683873757~b916203ad7df45049d82590bc7edba86#@$T~N~1024.109375~-708.265625~0~#000080~Arial~~~~~comment~8MHz~1~start~gge12253~0~pinpart#@$T~P~1024.484375~-717.09375~0~#000080~Arial~~~~~comment~X1~1~start~gge12259~0~pinpart#@$P~show~1~1~1000~-675~180~gge12265~0^^1000~-675^^M 1000 -675 h 10~#000000^^0~1012~-666~0~1~start~~~#000000^^1~1006~-676~0~1~end~~~#000000^^0~1007~-675^^0~M 1010 -672 L 1013 -675 L 1010 -678#@$P~show~1~3~1060~-695~0~gge12286~0^^1060~-695^^M 1060 -695 h -10~#000000^^0~1048~-698~0~3~end~~~#000000^^1~1054~-696~0~3~start~~~#000000^^0~1053~-695^^0~M 1050 -698 L 1047 -695 L 1050 -692#@$P~show~1~4~1000~-695~180~gge12307~0^^1000~-695^^M 1000 -695 h 10~#000000^^0~1013~-693~0~GND~start~~~#000000^^1~1006~-696~0~4~end~~~#000000^^0~1007~-695^^0~M 1010 -692 L 1013 -695 L 1010 -698#@$P~show~1~2~1060~-675~0~gge12328~0^^1060~-675^^M 1060 -675 h -10~#000000^^0~1048~-673~0~GND~end~~~#000000^^1~1054~-676~0~2~start~~~#000000^^0~1053~-675^^0~M 1050 -678 L 1047 -675 L 1050 -672#@$R~1010~-705~~~40~40~#880000~1~0~none~gge12349~0~#@$E~1015~-670~1.5~1.5~#880000~1~0~#880000~gge12352~0#@$PL~1025 -678 1025 -692~#881100~1~0~none~gge12355~0#@$PL~1035 -678 1035 -692~#881100~1~0~none~gge12358~0#@$PL~1010 -675 1020 -675 1020 -685 1025 -685~#880000~1~0~none~gge12361~0#@$PL~1050 -695 1040 -695 1040 -685 1035 -685~#880000~1~0~none~gge12364~0#@$R~1028~-692~~~4~14~#880000~1~0~none~gge12367~0~", 87 | "W~1060 -695 1070 -695 1070 -685~#008800~1~0~none~gge12499~0", 88 | "W~1000 -675 980 -675 980 -695~#008800~1~0~none~gge12502~0", 89 | "W~1000 -695 990 -695 990 -655 1060 -655 1060 -675~#008800~1~0~none~gge12505~0", 90 | "W~1070 -655 1060 -655~#008800~1~0~none~gge12509~0", 91 | "W~965 -665 965 -655 990 -655~#008800~1~0~none~gge12514~0", 92 | "W~965 -695 980 -695~#008800~1~0~none~gge12518~0", 93 | "F~part_netLabel_+5V~985~-530~0~gge17733~~0^^985~-530^^3V3~#000000~974.671875~-543.03125~0~start~1~Times New Roman~9pt~flag_gge532^^PL~985 -540 985 -530~#000000~1~0~transparent~gge17745~0^^PL~980 -540 990 -540~#000000~1~0~transparent~gge17748~0", 94 | "F~part_netLabel_netPort~620~-565~180~gge23685~~0^^620~-565^^CS~#0000FF~642.03~-561.12~0~start~1~Times New Roman~8pt~flag_gge535^^PL~620 -565 625 -570 640 -570 640 -560 625 -560 620 -565~#0000FF~1~0~transparent~gge23697~0", 95 | "F~part_netLabel_netPort~620~-575~180~gge23700~~0^^620~-575^^SCK~#0000FF~641.57~-571.12~0~start~1~Times New Roman~8pt~flag_gge538^^PL~620 -575 625 -580 640 -580 640 -570 625 -570 620 -575~#0000FF~1~0~transparent~gge23712~0", 96 | "F~part_netLabel_netPort~620~-585~180~gge23715~~0^^620~-585^^MISO~#0000FF~641.95~-581.12~0~start~1~Times New Roman~8pt~flag_gge541^^PL~620 -585 625 -590 640 -590 640 -580 625 -580 620 -585~#0000FF~1~0~transparent~gge23727~0", 97 | "F~part_netLabel_netPort~620~-595~180~gge23730~~0^^620~-595^^MOSI~#0000FF~641.87~-591.12~0~start~1~Times New Roman~8pt~flag_gge544^^PL~620 -595 625 -600 640 -600 640 -590 625 -590 620 -595~#0000FF~1~0~transparent~gge23742~0", 98 | "F~part_netLabel_netPort~510~-670~270~gge23976~~0^^510~-670^^DP~#0000FF~511.55~-691.48~270~~1~Times New Roman~8pt~flag_gge547^^PL~510 -670 505 -675 505 -690 515 -690 515 -675 510 -670~#0000FF~1~0~transparent~gge23988~0", 99 | "F~part_netLabel_netPort~520~-670~270~gge23991~~0^^520~-670^^DN~#0000FF~521.91~-691.28~270~~1~Times New Roman~8pt~flag_gge550^^PL~520 -670 515 -675 515 -690 525 -690 525 -675 520 -670~#0000FF~1~0~transparent~gge24003~0", 100 | "F~part_netLabel_netPort~430~-575~0~gge24683~~0^^430~-575^^BOOT~#0000FF~408~-571.484~0~end~1~Times New Roman~8pt~flag_gge553^^PL~430 -575 425 -570 410 -570 410 -580 425 -580 430 -575~#0000FF~1~0~transparent~gge24695~0", 101 | "W~985 -510 985 -500 1065 -500 1065 -510~#008800~1~0~none~gge24705~0", 102 | "F~part_netLabel_gnD~985~-490~0~gge24708~~0^^985~-490^^GND~#000000~972~-464~0~start~1~Times New Roman~9pt~flag_gge556^^PL~985 -480 985 -490~#000000~1~0~transparent~gge24720~0^^PL~976 -480 994 -480~#000000~1~0~transparent~gge24723~0^^PL~979 -478 991 -478~#000000~1~0~transparent~gge24726~0^^PL~982 -476 988 -476~#000000~1~0~transparent~gge24729~0^^PL~984 -474 986 -474~#000000~1~0~transparent~gge24732~0", 103 | "W~1025 -490 1025 -500~#008800~1~0~none~gge24769~0", 104 | "F~part_netLabel_netPort~1065~-480~0~gge24779~~0^^1065~-480^^BOOT~#0000FF~1043~-476.48~0~end~1~Times New Roman~8pt~flag_gge559^^PL~1065 -480 1060 -475 1045 -475 1045 -485 1060 -485 1065 -480~#0000FF~1~0~transparent~gge24791~0", 105 | "W~1065 -480 1065 -500~#008800~1~0~none~gge24794~0", 106 | "F~part_netLabel_netPort~500~-530~90~gge24804~~0^^500~-530^^XIN~#0000FF~504.03~-489.12~270~~1~Times New Roman~8pt~flag_gge562^^PL~500 -530 505 -525 505 -510 495 -510 495 -525 500 -530~#0000FF~1~0~transparent~gge24816~0", 107 | "F~part_netLabel_netPort~510~-530~90~gge24819~~0^^510~-530^^XOUT~#0000FF~514.03~-478.08~270~~1~Times New Roman~8pt~flag_gge565^^PL~510 -530 515 -525 515 -510 505 -510 505 -525 510 -530~#0000FF~1~0~transparent~gge24831~0", 108 | "R~940~-600~~~170~155~#000000~1~0~none~gge25309~0~", 109 | "T~L~945~-585~0~#000000~helvetica~11pt~bold~~~comment~BUTTON~1~start~gge25312~0~pinpart", 110 | "R~940~-600~~~70~20~#000000~1~0~none~gge25318~0~", 111 | "LIB~290~-300~package`LGA-14_L5.0-W3.0-P0.80-BL`Supplier`LCSC`Manufacturer`ADI`Manufacturer Part`ADXL345BCCZ-RL7`image`//image.lceda.cn/szlcsc/C9667.jpg`Supplier Part`C9667`LCSC Assembly`Yes`SMT Type`Extend`spicePre`U`spiceSymbolName`ADXL345BCCZ-RL7`~~0~ggeb40717793925317c~1dcd976d10e04b3783d0ce6134c46f5a~a3147fd5b2f6e2d19fba5710192456ff~0~dd61f282adec07f8~yes~yes~~~#@$T~N~284.03515625~-343~0~#000080~Arial~~~~~comment~ADXL345BCCZ-RL7~1~start~gge25345~0~pinpart#@$T~P~284.03515625~-352~0~#000080~Arial~~~~~comment~U1~1~start~gge25351~0~pinpart#@$R~210~-340~2~2~160~80~#880000~1~0~none~gge25357~0~#@$E~215~-335~1.5~1.5~#880000~1~0~#880000~gge25360~0#@$P~show~0~1~200~-330~180~gge25363~0^^200~-330^^M 200 -330 h 10~#FF0000^^1~213.7~-326~0~VDDIO~start~~~#FF0000^^1~209.5~-331~0~1~end~~~#FF0000^^0~207~-330^^0~M 210 -327 L 213 -330 L 210 -333#@$P~show~0~2~200~-320~180~gge25384~0^^200~-320^^M 200 -320 h 10~#000000^^1~213.7~-316~0~GND~start~~~#000000^^1~209.5~-321~0~2~end~~~#000000^^0~207~-320^^0~M 210 -317 L 213 -320 L 210 -323#@$P~show~0~3~200~-310~180~gge25405~0^^200~-310^^M 200 -310 h 10~#880000^^1~213.7~-306~0~RESERVED~start~~~#0000FF^^1~209.5~-311~0~3~end~~~#0000FF^^0~207~-310^^0~M 210 -307 L 213 -310 L 210 -313#@$P~show~0~4~200~-300~180~gge25426~0^^200~-300^^M 200 -300 h 10~#000000^^1~213.7~-296~0~GND~start~~~#000000^^1~209.5~-301~0~4~end~~~#000000^^0~207~-300^^0~M 210 -297 L 213 -300 L 210 -303#@$P~show~0~5~200~-290~180~gge25447~0^^200~-290^^M 200 -290 h 10~#000000^^1~213.7~-286~0~GND~start~~~#000000^^1~209.5~-291~0~5~end~~~#000000^^0~207~-290^^0~M 210 -287 L 213 -290 L 210 -293#@$P~show~0~6~200~-280~180~gge25468~0^^200~-280^^M 200 -280 h 10~#880000^^1~213.7~-276~0~VS~start~~~#0000FF^^1~209.5~-281~0~6~end~~~#0000FF^^0~207~-280^^0~M 210 -277 L 213 -280 L 210 -283#@$P~show~0~7~200~-270~180~gge25489~0^^200~-270^^M 200 -270 h 10~#880000^^1~213.7~-266~0~CS#~start~~~#0000FF^^1~209.5~-271~0~7~end~~~#0000FF^^0~207~-270^^0~M 210 -267 L 213 -270 L 210 -273#@$P~show~0~8~380~-270~0~gge25510~0^^380~-270^^M 380 -270 h -10~#880000^^1~366.3~-266~0~INT1~end~~~#0000FF^^1~370.5~-271~0~8~start~~~#0000FF^^0~373~-270^^0~M 370 -273 L 367 -270 L 370 -267#@$P~show~0~9~380~-280~0~gge25531~0^^380~-280^^M 380 -280 h -10~#880000^^1~366.3~-276~0~INT2~end~~~#0000FF^^1~370.5~-281~0~9~start~~~#0000FF^^0~373~-280^^0~M 370 -283 L 367 -280 L 370 -277#@$P~show~0~10~380~-290~0~gge25552~0^^380~-290^^M 380 -290 h -10~#880000^^1~366.3~-286~0~NC~end~~~#0000FF^^1~370.5~-291~0~10~start~~~#0000FF^^0~373~-290^^0~M 370 -293 L 367 -290 L 370 -287#@$P~show~0~11~380~-300~0~gge25573~0^^380~-300^^M 380 -300 h -10~#880000^^1~366.3~-296~0~RESERVED~end~~~#0000FF^^1~370.5~-301~0~11~start~~~#0000FF^^0~373~-300^^0~M 370 -303 L 367 -300 L 370 -297#@$P~show~0~12~380~-310~0~gge25594~0^^380~-310^^M 380 -310 h -10~#880000^^1~366.3~-306~0~SDO/ALTADDRESS~end~~~#0000FF^^1~370.5~-311~0~12~start~~~#0000FF^^0~373~-310^^0~M 370 -313 L 367 -310 L 370 -307#@$P~show~0~13~380~-320~0~gge25615~0^^380~-320^^M 380 -320 h -10~#880000^^1~366.3~-316~0~SDA/SDI/SDIO~end~~~#0000FF^^1~370.5~-321~0~13~start~~~#0000FF^^0~373~-320^^0~M 370 -323 L 367 -320 L 370 -317#@$P~show~0~14~380~-330~0~gge25636~0^^380~-330^^M 380 -330 h -10~#880000^^1~366.3~-326~0~SCL/SCLK~end~~~#0000FF^^1~370.5~-331~0~14~start~~~#0000FF^^0~373~-330^^0~M 370 -333 L 367 -330 L 370 -327", 112 | "W~200 -290 190 -290 190 -250~#008800~1~0~none~gge25978~0", 113 | "W~200 -300 190 -300 190 -290~#008800~1~0~none~gge25981~0", 114 | "W~200 -320 190 -320 190 -300~#008800~1~0~none~gge25985~0", 115 | "O~200~-310~gge25989~M 196 -314 L 204 -306 M 204 -314 L 196 -306~#33cc33~0", 116 | "W~200 -280 180 -280 180 -330 200 -330~#008800~1~0~none~gge26001~0", 117 | "W~170 -330 180 -330~#008800~1~0~none~gge26008~0", 118 | "W~170 -290 180 -290~#008800~1~0~none~gge26014~0", 119 | "W~180 -250 180 -280~#008800~1~0~none~gge26018~0", 120 | "W~140 -250 140 -330~#008800~1~0~none~gge26022~0", 121 | "F~part_netLabel_gnD~140~-250~0~gge26026~~0^^140~-250^^GND~#000000~127~-224~0~start~1~Times New Roman~9pt~flag_gge568^^PL~140 -240 140 -250~#000000~1~0~transparent~gge26038~0^^PL~131 -240 149 -240~#000000~1~0~transparent~gge26041~0^^PL~134 -238 146 -238~#000000~1~0~transparent~gge26044~0^^PL~137 -236 143 -236~#000000~1~0~transparent~gge26047~0^^PL~139 -234 141 -234~#000000~1~0~transparent~gge26050~0", 122 | "W~200 -270 200 -250~#008800~1~0~none~gge26081~0", 123 | "F~part_netLabel_netPort~380~-270~180~gge26087~~0^^380~-270^^INT1~#0000FF~402~-266.45~0~~1~Times New Roman~8pt~flag_gge571^^PL~380 -270 385 -275 400 -275 400 -265 385 -265 380 -270~#0000FF~1~0~transparent~gge26099~0", 124 | "F~part_netLabel_netPort~380~-330~180~gge26105~~0^^380~-330^^SCK~#0000FF~401.56~-326.41~0~~1~Times New Roman~8pt~flag_gge574^^PL~380 -330 385 -335 400 -335 400 -325 385 -325 380 -330~#0000FF~1~0~transparent~gge26117~0", 125 | "O~380~-290~gge26120~M 376 -294 L 384 -286 M 384 -294 L 376 -286~#33cc33~0", 126 | "O~380~-300~gge26132~M 376 -304 L 384 -296 M 384 -304 L 376 -296~#33cc33~0", 127 | "LIB~700~-400~package`LED0603_BLUE`Manufacturer`EVERLIGHT(台湾亿光)`Manufacturer Part`19-217/BHC-ZL1M2RY/3T`Supplier Part`C72041`Supplier`LCSC`link``Contributor`LCEDA_01`spicePre`L`spiceSymbolName`LED-0603_B`~~0~gge20112a8723dffd8c~c15b145d6eaf4fb5b144555548f1c432~7463a72b8a4540a09ec5278562590438~0~4c68da5776170e60~yes~yes~~~#@$T~N~690.92~-420~0~#000080~Arial~~~~~comment~LED-0603_B~1~start~gge26169~0~pinpart#@$T~P~690.92~-428.85~0~#000080~Arial~~~~~comment~LED~1~start~gge26175~0~pinpart#@$PT~M 695 -394 L 705 -400 L 695 -407 Z ~#880000~1~0~#0099FF~gge26181~0~#@$PL~705 -408 705 -392~#880000~1~0~#FF0000~gge26184~0#@$PL~705 -410 709 -414~#880000~1~0~#880000~gge26187~0#@$PL~709 -406 713 -410~#880000~1~0~#880000~gge26190~0#@$PT~M 712 -417 L 708 -415 L 710 -413 Z ~#880000~1~0~#0099FF~gge26193~0~#@$PT~M 716 -413 L 712 -411 L 714 -409 Z ~#880000~1~0~#0099FF~gge26196~0~#@$P~show~0~1~680~-400~180~gge26199~0^^680~-400^^M 680 -400 h 15~#880000^^0~697~-397~0~1~start~~~#0000FF^^0~693~-401~0~1~end~~~#0000FF^^0~692~-400^^0~M 695 -397 L 698 -400 L 695 -403#@$P~show~0~2~720~-400~0~gge26220~0^^720~-400^^M 720 -400 h -15~#880000^^0~703~-397~0~2~end~~~#0000FF^^0~707~-401~0~2~start~~~#0000FF^^0~708~-400^^0~M 705 -403 L 702 -400 L 705 -397", 128 | "F~part_netLabel_netPort~560~-530~90~gge26521~~0^^560~-530^^INT2~#0000FF~563.55~-483.45~270~~1~Times New Roman~8pt~flag_gge577^^PL~560 -530 565 -525 565 -510 555 -510 555 -525 560 -530~#0000FF~1~0~transparent~gge26533~0", 129 | "F~part_netLabel_netPort~550~-670~270~gge26536~~0^^550~-670^^INT1~#0000FF~553.55~-692~270~~1~Times New Roman~8pt~flag_gge580^^PL~550 -670 545 -675 545 -690 555 -690 555 -675 550 -670~#0000FF~1~0~transparent~gge26548~0", 130 | "F~part_netLabel_gnD~720~-400~0~gge26551~~0^^720~-400^^GND~#000000~707~-372.76~0~start~1~Times New Roman~9pt~flag_gge583^^PL~720 -390 720 -400~#000000~1~0~transparent~gge26563~0^^PL~711 -390 729 -390~#000000~1~0~transparent~gge26566~0^^PL~714 -388 726 -388~#000000~1~0~transparent~gge26569~0^^PL~717 -386 723 -386~#000000~1~0~transparent~gge26572~0^^PL~719 -384 721 -384~#000000~1~0~transparent~gge26575~0", 131 | "LIB~525~-600~package`UFQFPN-32_L5.0-W5.0-P0.50-BL-EP3.5`Contributor`LCSC`Supplier`LCSC`Supplier Part`C1341901`Manufacturer`ST(意法半导体)`Manufacturer Part`STM32G431KBU3`JLCPCB Part Class`Extended Part`spicePre`U`spiceSymbolName`STM32G431KBU3`~90~0~gge65a072be612b0c9f~a7c1cf9457eb4b4cb961f439f159127c~19eb5a2063dd4728a1761d4aeb225d06~0~5ffa6889d15bf3bd~yes~yes~68c35b02ac414f82951908d9a41a2b29~1709545249~75c7e967a85b4fe9ad05830482b4aaa4#@$T~N~401.35~-676.8~0~#000080~Arial~~~~~comment~STM32G431KBU3~1~start~gge26608~0~pinpart#@$T~P~401.35~-685.91~0~#000080~Arial~~~~~comment~U2~1~start~gge26614~0~pinpart#@$R~440~-660~2~2~170~120~#880000~1~0~none~gge26620~0~#@$E~445~-545~1.5~1.5~#880000~1~0~#880000~gge26623~0#@$P~show~0~1~490~-530~270~gge26626~0^^490~-530^^M 490 -530 v -10~#FF0000^^1~494~-543.7~270~VDD~start~~~#FF0000^^1~489~-539.5~270~1~end~~~#FF0000^^0~490~-537^^0~M 493 -540 L 490 -543 L 487 -540#@$P~show~0~2~500~-530~270~gge26647~0^^500~-530^^M 500 -530 v -10~#880000^^1~504~-543.7~270~PF0-OSC_IN~start~~~#0000FF^^1~499~-539.5~270~2~end~~~#0000FF^^0~500~-537^^0~M 503 -540 L 500 -543 L 497 -540#@$P~show~0~3~510~-530~270~gge26668~0^^510~-530^^M 510 -530 v -10~#880000^^1~514~-543.7~270~PF1-OSC_OUT~start~~~#0000FF^^1~509~-539.5~270~3~end~~~#0000FF^^0~510~-537^^0~M 513 -540 L 510 -543 L 507 -540#@$P~show~0~4~520~-530~270~gge26689~0^^520~-530^^M 520 -530 v -10~#880000^^1~524~-543.7~270~PG10-NRST~start~~~#0000FF^^1~519~-539.5~270~4~end~~~#0000FF^^0~520~-537^^0~M 523 -540 L 520 -543 L 517 -540#@$P~show~0~5~530~-530~270~gge26710~0^^530~-530^^M 530 -530 v -10~#880000^^1~534~-543.7~270~PA0~start~~~#0000FF^^1~529~-539.5~270~5~end~~~#0000FF^^0~530~-537^^0~M 533 -540 L 530 -543 L 527 -540#@$P~show~0~6~540~-530~270~gge26731~0^^540~-530^^M 540 -530 v -10~#880000^^1~544~-543.7~270~PA1~start~~~#0000FF^^1~539~-539.5~270~6~end~~~#0000FF^^0~540~-537^^0~M 543 -540 L 540 -543 L 537 -540#@$P~show~0~7~550~-530~270~gge26752~0^^550~-530^^M 550 -530 v -10~#880000^^1~554~-543.7~270~PA2~start~~~#0000FF^^1~549~-539.5~270~7~end~~~#0000FF^^0~550~-537^^0~M 553 -540 L 550 -543 L 547 -540#@$P~show~0~8~560~-530~270~gge26773~0^^560~-530^^M 560 -530 v -10~#880000^^1~564~-543.7~270~PA3~start~~~#0000FF^^1~559~-539.5~270~8~end~~~#0000FF^^0~560~-537^^0~M 563 -540 L 560 -543 L 557 -540#@$P~show~0~9~620~-565~0~gge26794~0^^620~-565^^M 620 -565 h -10~#880000^^1~607~-562~0~PA4~end~~~#0000FF^^1~609.5~-566~0~9~start~~~#0000FF^^0~613~-565^^0~M 610 -568 L 607 -565 L 610 -562#@$P~show~0~10~620~-575~0~gge26815~0^^620~-575^^M 620 -575 h -10~#880000^^1~607~-572~0~PA5~end~~~#0000FF^^1~609.5~-576~0~10~start~~~#0000FF^^0~613~-575^^0~M 610 -578 L 607 -575 L 610 -572#@$P~show~0~11~620~-585~0~gge26836~0^^620~-585^^M 620 -585 h -10~#880000^^1~607~-582~0~PA6~end~~~#0000FF^^1~609.5~-586~0~11~start~~~#0000FF^^0~613~-585^^0~M 610 -588 L 607 -585 L 610 -582#@$P~show~0~12~620~-595~0~gge26857~0^^620~-595^^M 620 -595 h -10~#880000^^1~607~-592~0~PA7~end~~~#0000FF^^1~609.5~-596~0~12~start~~~#0000FF^^0~613~-595^^0~M 610 -598 L 607 -595 L 610 -592#@$P~show~0~13~620~-605~0~gge26878~0^^620~-605^^M 620 -605 h -10~#880000^^1~607~-602~0~PB0~end~~~#0000FF^^1~609.5~-606~0~13~start~~~#0000FF^^0~613~-605^^0~M 610 -608 L 607 -605 L 610 -602#@$P~show~0~14~620~-615~0~gge26899~0^^620~-615^^M 620 -615 h -10~#000000^^1~607~-612~0~VSSA~end~~~#000000^^1~609.5~-616~0~14~start~~~#000000^^0~613~-615^^0~M 610 -618 L 607 -615 L 610 -612#@$P~show~0~15~620~-625~0~gge26920~0^^620~-625^^M 620 -625 h -10~#FF0000^^1~607~-622~0~VDDA~end~~~#FF0000^^1~609.5~-626~0~15~start~~~#FF0000^^0~613~-625^^0~M 610 -628 L 607 -625 L 610 -622#@$P~show~0~16~620~-635~0~gge26941~0^^620~-635^^M 620 -635 h -10~#000000^^1~607~-632~0~VSS~end~~~#000000^^1~609.5~-636~0~16~start~~~#000000^^0~613~-635^^0~M 610 -638 L 607 -635 L 610 -632#@$P~show~0~17~560~-670~90~gge26962~0^^560~-670^^M 560 -670 v 10~#FF0000^^1~564~-656.3~270~VDD~end~~~#FF0000^^1~559~-660.5~270~17~start~~~#FF0000^^0~560~-663^^0~M 557 -660 L 560 -657 L 563 -660#@$P~show~0~18~550~-670~90~gge26983~0^^550~-670^^M 550 -670 v 10~#880000^^1~554~-656.3~270~PA8~end~~~#0000FF^^1~549~-660.5~270~18~start~~~#0000FF^^0~550~-663^^0~M 547 -660 L 550 -657 L 553 -660#@$P~show~0~19~540~-670~90~gge27004~0^^540~-670^^M 540 -670 v 10~#880000^^1~544~-656.3~270~PA9~end~~~#0000FF^^1~539~-660.5~270~19~start~~~#0000FF^^0~540~-663^^0~M 537 -660 L 540 -657 L 543 -660#@$P~show~0~20~530~-670~90~gge27025~0^^530~-670^^M 530 -670 v 10~#880000^^1~534~-656.3~270~PA10~end~~~#0000FF^^1~529~-660.5~270~20~start~~~#0000FF^^0~530~-663^^0~M 527 -660 L 530 -657 L 533 -660#@$P~show~0~21~520~-670~90~gge27046~0^^520~-670^^M 520 -670 v 10~#880000^^1~524~-656.3~270~PA11~end~~~#0000FF^^1~519~-660.5~270~21~start~~~#0000FF^^0~520~-663^^0~M 517 -660 L 520 -657 L 523 -660#@$P~show~0~22~510~-670~90~gge27067~0^^510~-670^^M 510 -670 v 10~#880000^^1~514~-656.3~270~PA12~end~~~#0000FF^^1~509~-660.5~270~22~start~~~#0000FF^^0~510~-663^^0~M 507 -660 L 510 -657 L 513 -660#@$P~show~0~23~500~-670~90~gge27088~0^^500~-670^^M 500 -670 v 10~#880000^^1~504~-656.3~270~PA13~end~~~#0000FF^^1~499~-660.5~270~23~start~~~#0000FF^^0~500~-663^^0~M 497 -660 L 500 -657 L 503 -660#@$P~show~0~24~490~-670~90~gge27109~0^^490~-670^^M 490 -670 v 10~#880000^^1~494~-656.3~270~PA14~end~~~#0000FF^^1~489~-660.5~270~24~start~~~#0000FF^^0~490~-663^^0~M 487 -660 L 490 -657 L 493 -660#@$P~show~0~25~430~-635~180~gge27130~0^^430~-635^^M 430 -635 h 10~#880000^^1~443.7~-633~0~PA15~start~~~#0000FF^^1~439.5~-636~0~25~end~~~#0000FF^^0~437~-635^^0~M 440 -632 L 443 -635 L 440 -638#@$P~show~0~26~430~-625~180~gge27151~0^^430~-625^^M 430 -625 h 10~#880000^^1~443.7~-623~0~PB3~start~~~#0000FF^^1~439.5~-626~0~26~end~~~#0000FF^^0~437~-625^^0~M 440 -622 L 443 -625 L 440 -628#@$P~show~0~27~430~-615~180~gge27172~0^^430~-615^^M 430 -615 h 10~#880000^^1~443.7~-613~0~PB4~start~~~#0000FF^^1~439.5~-616~0~27~end~~~#0000FF^^0~437~-615^^0~M 440 -612 L 443 -615 L 440 -618#@$P~show~0~28~430~-605~180~gge27193~0^^430~-605^^M 430 -605 h 10~#880000^^1~443.7~-603~0~PB5~start~~~#0000FF^^1~439.5~-606~0~28~end~~~#0000FF^^0~437~-605^^0~M 440 -602 L 443 -605 L 440 -608#@$P~show~0~29~430~-595~180~gge27214~0^^430~-595^^M 430 -595 h 10~#880000^^1~443.7~-593~0~PB6~start~~~#0000FF^^1~439.5~-596~0~29~end~~~#0000FF^^0~437~-595^^0~M 440 -592 L 443 -595 L 440 -598#@$P~show~0~30~430~-585~180~gge27235~0^^430~-585^^M 430 -585 h 10~#880000^^1~443.7~-583~0~PB7~start~~~#0000FF^^1~439.5~-586~0~30~end~~~#0000FF^^0~437~-585^^0~M 440 -582 L 443 -585 L 440 -588#@$P~show~0~31~430~-575~180~gge27256~0^^430~-575^^M 430 -575 h 10~#880000^^1~443.7~-573~0~PB8-BOOT0~start~~~#0000FF^^1~439.5~-576~0~31~end~~~#0000FF^^0~437~-575^^0~M 440 -572 L 443 -575 L 440 -578#@$P~show~0~32~430~-565~180~gge27277~0^^430~-565^^M 430 -565 h 10~#000000^^1~443.7~-563~0~VSS~start~~~#000000^^1~439.5~-566~0~32~end~~~#000000^^0~437~-565^^0~M 440 -562 L 443 -565 L 440 -568#@$P~show~0~33~470~-530~270~gge27298~0^^470~-530^^M 470 -530 v -10~#880000^^1~473~-542~270~EP~start~~~#0000FF^^1~469~-540~270~33~end~~~#0000FF^^0~470~-537^^0~M 473 -540 L 470 -543 L 467 -540", 132 | "F~part_netLabel_gnD~420~-520~0~gge28090~~0^^420~-520^^GND~#000000~407~-494~0~start~1~Times New Roman~9pt~flag_gge586^^PL~420 -510 420 -520~#000000~1~0~transparent~gge28102~0^^PL~411 -510 429 -510~#000000~1~0~transparent~gge28105~0^^PL~414 -508 426 -508~#000000~1~0~transparent~gge28108~0^^PL~417 -506 423 -506~#000000~1~0~transparent~gge28111~0^^PL~419 -504 421 -504~#000000~1~0~transparent~gge28114~0", 133 | "W~430 -565 420 -565 420 -520 470 -520 470 -530~#008800~1~0~none~gge28144~0", 134 | "W~435 -470 435 -520~#008800~1~0~none~gge28224~0", 135 | "W~490 -530 490 -470 465 -470~#008800~1~0~none~gge28228~0", 136 | "F~part_netLabel_+5V~490~-510~90~gge28231~~0^^490~-510^^3V3~#000000~458.07~-505.95~0~start~1~Times New Roman~9pt~flag_gge589^^PL~480 -510 490 -510~#000000~1~0~none~gge28243~0^^PL~480 -505 480 -515~#000000~1~0~transparent~gge28246~0", 137 | "F~part_netLabel_+5V~660~-645~0~gge28379~~0^^660~-645^^3V3~#000000~649.67~-658.13~0~start~1~Times New Roman~9pt~flag_gge592^^PL~660 -655 660 -645~#000000~1~0~none~gge28391~0^^PL~655 -655 665 -655~#000000~1~0~transparent~gge28394~0", 138 | "W~660 -645 660 -625~#008800~1~0~none~gge28397~0", 139 | "F~part_netLabel_gnD~700~-615~0~gge28401~~0^^700~-615^^GND~#000000~687~-589~0~start~1~Times New Roman~9pt~flag_gge595^^PL~700 -605 700 -615~#000000~1~0~transparent~gge28413~0^^PL~691 -605 709 -605~#000000~1~0~transparent~gge28416~0^^PL~694 -603 706 -603~#000000~1~0~transparent~gge28419~0^^PL~697 -601 703 -601~#000000~1~0~transparent~gge28422~0^^PL~699 -599 701 -599~#000000~1~0~transparent~gge28425~0", 140 | "W~620 -615 700 -615 700 -625 690 -625~#008800~1~0~none~gge28455~0", 141 | "W~620 -635 700 -635 700 -625~#008800~1~0~none~gge28463~0", 142 | "W~610 -670 560 -670~#008800~1~0~none~gge28545~0", 143 | "W~640 -670 700 -670 700 -635~#008800~1~0~none~gge28548~0", 144 | "F~part_netLabel_+5V~575~-670~0~gge28555~~0^^575~-670^^3V3~#000000~564.67~-683.13~0~start~1~Times New Roman~9pt~flag_gge598^^PL~575 -680 575 -670~#000000~1~0~none~gge28567~0^^PL~570 -680 580 -680~#000000~1~0~transparent~gge28570~0", 145 | "F~part_netLabel_netPort~490~-670~270~gge28577~~0^^490~-670^^SWCLK~#0000FF~493.85~-691.56~270~~1~Times New Roman~8pt~flag_gge601^^PL~490 -670 485 -675 485 -690 495 -690 495 -675 490 -670~#0000FF~1~0~transparent~gge28589~0", 146 | "F~part_netLabel_netPort~500~-670~270~gge28592~~0^^500~-670^^SWDIO~#0000FF~503.85~-691.93~270~~1~Times New Roman~8pt~flag_gge604^^PL~500 -670 495 -675 495 -690 505 -690 505 -675 500 -670~#0000FF~1~0~transparent~gge28604~0", 147 | "F~part_netLabel_netPort~640~-400~0~gge28613~~0^^640~-400^^SWCLK~#0000FF~580.66~-396.44~0~~1~Times New Roman~8pt~flag_gge607^^PL~640 -400 635 -395 620 -395 620 -405 635 -405 640 -400~#0000FF~1~0~transparent~gge28625~0", 148 | "O~620~-605~gge29273~M 616 -609 L 624 -601 M 624 -609 L 616 -601~#33cc33~0", 149 | "O~530~-530~gge29285~M 526 -534 L 534 -526 M 534 -534 L 526 -526~#33cc33~0", 150 | "O~540~-530~gge29291~M 536 -534 L 544 -526 M 544 -534 L 536 -526~#33cc33~0", 151 | "O~430~-585~gge29297~M 426 -589 L 434 -581 M 434 -589 L 426 -581~#33cc33~0", 152 | "O~430~-595~gge29303~M 426 -599 L 434 -591 M 434 -599 L 426 -591~#33cc33~0", 153 | "O~430~-605~gge29309~M 426 -609 L 434 -601 M 434 -609 L 426 -601~#33cc33~0", 154 | "O~430~-615~gge29315~M 426 -619 L 434 -611 M 434 -619 L 426 -611~#33cc33~0", 155 | "O~430~-625~gge29321~M 426 -629 L 434 -621 M 434 -629 L 426 -621~#33cc33~0", 156 | "O~430~-635~gge29327~M 426 -639 L 434 -631 M 434 -639 L 426 -631~#33cc33~0", 157 | "O~530~-670~gge29333~M 526 -674 L 534 -666 M 534 -674 L 526 -666~#33cc33~0", 158 | "O~540~-670~gge29339~M 536 -674 L 544 -666 M 544 -674 L 536 -666~#33cc33~0", 159 | "F~part_netLabel_netPort~520~-530~90~gge29363~~0^^520~-530^^NRST~#0000FF~523.5~-480.74~270~~1~Times New Roman~8pt~flag_gge610^^PL~520 -530 525 -525 525 -510 515 -510 515 -525 520 -530~#0000FF~1~0~transparent~gge29375~0", 160 | "O~550~-530~gge29381~M 546 -534 L 554 -526 M 554 -534 L 546 -526~#33cc33~0", 161 | "LIB~1070~-670~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer`FH(风华)`Manufacturer Part`0402CG300J500NT`Supplier Part`C1570`JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`0402CG300J500NT`~90~0~ggec6e7f4a02dd1a3f4~0821ed6ea50c44f4909e4be7610e4198~c7d4311a7397c518f0507ee7193c8c12~0~71d83dc510f253d8~yes~yes~f5e8c1107e1949418ece02bfe6d7708d~1708940130~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~1080~-657.74~0~#000080~Arial~~~~~comment~30pF~1~start~gge29385~0~pinpart#@$T~P~1080~-666.84~0~#000080~Arial~~~~~comment~C9~1~start~gge29391~0~pinpart#@$PL~1062 -668 1078 -668~#880000~1~0~none~gge29397~0#@$PL~1062 -672 1078 -672~#880000~1~0~none~gge29400~0#@$P~show~1~1~1070~-655~270~gge29403~0^^1070~-655^^M 1070 -655 v -10~#000000^^0~1073~-670~270~1~start~~~#000000^^0~1069~-660~270~1~end~~~#000000^^0~1070~-662^^0~M 1073 -665 L 1070 -668 L 1067 -665#@$P~show~1~2~1070~-685~90~gge29424~0^^1070~-685^^M 1070 -685 v 10~#000000^^0~1073~-670~270~2~end~~~#000000^^0~1069~-680~270~2~start~~~#000000^^0~1070~-678^^0~M 1067 -675 L 1070 -672 L 1073 -675#@$PL~1070 -665 1070 -668~#880000~1~0~none~gge29445~0#@$PL~1070 -672 1070 -675~#880000~1~0~none~gge29448~0", 162 | "W~1070 -685 1070 -695~#008800~1~0~none~gge29530~0", 163 | "LIB~965~-680~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer`FH(风华)`Manufacturer Part`0402CG300J500NT`Supplier Part`C1570`JLCPCB Part Class`Extended Part`spicePre`C`spiceSymbolName`0402CG300J500NT`~90~0~gge66a66cc5cefc052e~0821ed6ea50c44f4909e4be7610e4198~c7d4311a7397c518f0507ee7193c8c12~0~ca57541246518b20~yes~yes~f5e8c1107e1949418ece02bfe6d7708d~1708940130~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~949.03~-702.69~0~#000080~Arial~~~~~comment~30pF~1~start~gge29547~0~pinpart#@$T~P~949.03~-711.8~0~#000080~Arial~~~~~comment~C8~1~start~gge29553~0~pinpart#@$PL~957 -678 973 -678~#880000~1~0~none~gge29559~0#@$PL~957 -682 973 -682~#880000~1~0~none~gge29562~0#@$P~show~1~1~965~-665~270~gge29565~0^^965~-665^^M 965 -665 v -10~#000000^^0~968~-680~270~1~start~~~#000000^^0~964~-670~270~1~end~~~#000000^^0~965~-672^^0~M 968 -675 L 965 -678 L 962 -675#@$P~show~1~2~965~-695~90~gge29586~0^^965~-695^^M 965 -695 v 10~#000000^^0~968~-680~270~2~end~~~#000000^^0~964~-690~270~2~start~~~#000000^^0~965~-688^^0~M 962 -685 L 965 -682 L 968 -685#@$PL~965 -675 965 -678~#880000~1~0~none~gge29607~0#@$PL~965 -682 965 -685~#880000~1~0~none~gge29610~0", 164 | "LIB~1005~-490~package`R0402`nameAlias`Value`Supplier`LCSC`Manufacturer`UNI-ROYAL(厚声)`Manufacturer Part`0402WGF1002TCE`Supplier Part`C25744`JLCPCB Part Class`Basic Part`link`https://lcsc.com/eda_search?q=C25744&%26type=1&ref=editor`spicePre`R`spiceSymbolName`0402WGF1002TCE`~180~0~gged592a1899adc6958~fafd024f554e426eb74cf4a204aa88b0~6c2bedbae9fbd358441dfb9948555b9c~0~ba11cf5ffb602203~yes~yes~f92d50ad38dd4a8a9c88bc4730299b28~1700720133~1b26d6bf573a49d49666878ee2150fe5#@$T~N~999.03~-467.8~0~#000080~Arial~~~~~comment~10kΩ~1~start~gge29700~0~pinpart#@$T~P~999.03~-476.8~0~#000080~Arial~~~~~comment~R1~1~start~gge29706~0~pinpart#@$P~show~1~2~985~-490~180~gge29712~0^^985~-490^^M 985 -490 h 10~#000000^^0~1000~-487~0~2~start~~~#000000^^0~990~-491~0~2~end~~~#000000^^0~992~-490^^0~M 995 -487 L 998 -490 L 995 -493#@$P~show~1~1~1025~-490~0~gge29733~0^^1025~-490^^M 1025 -490 h -10~#000000^^0~1010~-487~0~1~end~~~#000000^^0~1020~-491~0~1~start~~~#000000^^0~1018~-490^^0~M 1015 -493 L 1012 -490 L 1015 -487#@$R~995~-494~~~20~8~#880000~1~0~none~gge29754~0~", 165 | "LIB~995~-375~package`R0402`nameAlias`Value`Supplier`LCSC`Manufacturer`UNI-ROYAL(厚声)`Manufacturer Part`0402WGF5101TCE`Supplier Part`C25905`JLCPCB Part Class`Basic Part`link`https://lcsc.com/eda_search?q=C25905&%26type=1&ref=editor`spicePre`R`spiceSymbolName`0402WGF5101TCE`~~0~gge388dc514afa8a507~fafd024f554e426eb74cf4a204aa88b0~9a1dab2264ee9c0dd27f0d885a0978e6~0~96bf7cb35f95b322~yes~yes~38d7fdcdcaad44d9b817b156c601f628~1700720728~1b26d6bf573a49d49666878ee2150fe5#@$T~N~989.03~-382~0~#000080~Arial~~~~~comment~5.1kΩ~1~start~gge29832~0~pinpart#@$T~P~989.03~-391.11~0~#000080~Arial~~~~~comment~R2~1~start~gge29838~0~pinpart#@$P~show~1~2~1015~-375~0~gge29844~0^^1015~-375^^M 1015 -375 h -10~#000000^^0~1000~-372~0~2~end~~~#000000^^0~1010~-376~0~2~start~~~#000000^^0~1008~-375^^0~M 1005 -378 L 1002 -375 L 1005 -372#@$P~show~1~1~975~-375~180~gge29865~0^^975~-375^^M 975 -375 h 10~#000000^^0~990~-372~0~1~start~~~#000000^^0~980~-376~0~1~end~~~#000000^^0~982~-375^^0~M 985 -372 L 988 -375 L 985 -378#@$R~985~-379~~~20~8~#880000~1~0~none~gge29886~0~", 166 | "LIB~910~-235~package`R0402`nameAlias`Value`Supplier`LCSC`Manufacturer`UNI-ROYAL(厚声)`Manufacturer Part`0402WGF5101TCE`Supplier Part`C25905`JLCPCB Part Class`Basic Part`link`https://lcsc.com/eda_search?q=C25905&%26type=1&ref=editor`spicePre`R`spiceSymbolName`0402WGF5101TCE`~~0~gge212ff42a856622ea~fafd024f554e426eb74cf4a204aa88b0~9a1dab2264ee9c0dd27f0d885a0978e6~0~549f2c71350b5ccc~yes~yes~38d7fdcdcaad44d9b817b156c601f628~1700720728~1b26d6bf573a49d49666878ee2150fe5#@$T~N~904.03~-242~0~#000080~Arial~~~~~comment~5.1kΩ~1~start~gge29898~0~pinpart#@$T~P~904.03~-251.11~0~#000080~Arial~~~~~comment~R4~1~start~gge29904~0~pinpart#@$P~show~1~2~930~-235~0~gge29910~0^^930~-235^^M 930 -235 h -10~#000000^^0~915~-232~0~2~end~~~#000000^^0~925~-236~0~2~start~~~#000000^^0~923~-235^^0~M 920 -238 L 917 -235 L 920 -232#@$P~show~1~1~890~-235~180~gge29931~0^^890~-235^^M 890 -235 h 10~#000000^^0~905~-232~0~1~start~~~#000000^^0~895~-236~0~1~end~~~#000000^^0~897~-235^^0~M 900 -232 L 903 -235 L 900 -238#@$R~900~-239~~~20~8~#880000~1~0~none~gge29952~0~", 167 | "LIB~660~-400~package`R0402`Supplier`LCSC`Manufacturer`UNI-ROYAL(厚声)`Manufacturer Part`0402WGF1501TCE`nameAlias`Resistance`Supplier Part`C25867`Resistance (Ohms)`1.5K`JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0402WGF1501TCE`~~0~gge4492577bf82cf786~fafd024f554e426eb74cf4a204aa88b0~848f911339e43c13f592593d19408346~0~932631eebaeac6ae~yes~yes~4ba16229742e481e9446f26413b45c50~1672254303~4f1aacec56df47e182011d22c1bd7e4f#@$T~N~654.03125~-407~0~#000080~Arial~~~~~comment~1.5kΩ~1~start~gge30036~0~pinpart#@$T~P~654.0390625~-416~0~#000080~Arial~~~~~comment~R3~1~start~gge30042~0~pinpart#@$P~show~1~2~680~-400~0~gge30048~0^^680~-400^^M 680 -400 h -10~#000000^^0~665~-397~0~2~end~~~#000000^^0~675~-401~0~2~start~~~#000000^^0~673~-400^^0~M 670 -403 L 667 -400 L 670 -397#@$P~show~1~1~640~-400~180~gge30069~0^^640~-400^^M 640 -400 h 10~#000000^^0~655~-397~0~1~start~~~#000000^^0~645~-401~0~1~end~~~#000000^^0~647~-400^^0~M 650 -397 L 653 -400 L 650 -403#@$R~650~-404~~~20~8~#880000~1~0~none~gge30090~0~", 168 | "LIB~725~-275~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer`SAMSUNG(三星)`Manufacturer Part`CL05A105KA5NQNC`Supplier Part`C52923`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05A105KA5NQNC`~90~0~ggeb612c980df28c4cc~0821ed6ea50c44f4909e4be7610e4198~c6551ffd8df4e1d9edf79a5278696201~0~e8c1a325887412e6~yes~yes~84898fbf393142a5ae692ff83f7007fd~1708448476~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~735~-262.64~0~#000080~Arial~~~~~comment~1uF~1~start~gge30105~0~pinpart#@$T~P~735~-271.79~0~#000080~Arial~~~~~comment~C2~1~start~gge30111~0~pinpart#@$PL~733 -273 717 -273~#A00000~1~0~none~gge30117~0#@$P~show~0~1~725~-255~270~gge30120~0^^725~-255^^M 725 -265 v 10~#800^^0~725~-269~270~1~start~~~#800^^0~721~-261~270~1~end~~~#800^^0~725~-242^^0~M 728 -245 L 725 -248 L 722 -245#@$PL~725 -285 725 -277~#A00000~1~0~none~gge30141~0#@$PL~717 -277 733 -277~#A00000~1~0~none~gge30144~0#@$P~show~0~2~725~-295~90~gge30147~0^^725~-295^^M 725 -285 v -10~#800^^0~725~-281~270~2~end~~~#800^^0~721~-289~270~2~start~~~#800^^0~725~-308^^0~M 722 -305 L 725 -302 L 728 -305#@$PL~725 -273 725 -265~#A00000~1~0~none~gge30168~0", 169 | "LIB~690~-275~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer`SAMSUNG(三星)`Manufacturer Part`CL05A105KA5NQNC`Supplier Part`C52923`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05A105KA5NQNC`~90~0~ggebe1ffbc1696a68cb~0821ed6ea50c44f4909e4be7610e4198~c6551ffd8df4e1d9edf79a5278696201~0~55f1a08f06ce8fe7~yes~yes~84898fbf393142a5ae692ff83f7007fd~1708448476~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~700~-262.64~0~#000080~Arial~~~~~comment~1uF~1~start~gge30252~0~pinpart#@$T~P~700~-271.79~0~#000080~Arial~~~~~comment~C3~1~start~gge30258~0~pinpart#@$PL~698 -273 682 -273~#A00000~1~0~none~gge30264~0#@$P~show~0~1~690~-255~270~gge30267~0^^690~-255^^M 690 -265 v 10~#800^^0~690~-269~270~1~start~~~#800^^0~686~-261~270~1~end~~~#800^^0~690~-242^^0~M 693 -245 L 690 -248 L 687 -245#@$PL~690 -285 690 -277~#A00000~1~0~none~gge30288~0#@$PL~682 -277 698 -277~#A00000~1~0~none~gge30291~0#@$P~show~0~2~690~-295~90~gge30294~0^^690~-295^^M 690 -285 v -10~#800^^0~690~-281~270~2~end~~~#800^^0~686~-289~270~2~start~~~#800^^0~690~-308^^0~M 687 -305 L 690 -302 L 693 -305#@$PL~690 -273 690 -265~#A00000~1~0~none~gge30315~0", 170 | "LIB~160~-250~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer`SAMSUNG(三星)`Manufacturer Part`CL05A105KA5NQNC`Supplier Part`C52923`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05A105KA5NQNC`~180~0~gge5dd3bd6d76ba07fa~0821ed6ea50c44f4909e4be7610e4198~c6551ffd8df4e1d9edf79a5278696201~0~1a3e274b2b30bd12~yes~yes~84898fbf393142a5ae692ff83f7007fd~1708448476~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~154.03~-261~0~#000080~Arial~~~~~comment~1uF~1~start~gge30340~0~pinpart#@$T~P~154.03~-270~0~#000080~Arial~~~~~comment~C6~1~start~gge30346~0~pinpart#@$PL~162 -258 162 -242~#A00000~1~0~none~gge30352~0#@$P~show~0~1~180~-250~0~gge30355~0^^180~-250^^M 170 -250 h 10~#800^^0~166~-250~0~1~end~~~#800^^0~174~-254~0~1~start~~~#800^^0~193~-250^^0~M 190 -253 L 187 -250 L 190 -247#@$PL~150 -250 158 -250~#A00000~1~0~none~gge30376~0#@$PL~158 -242 158 -258~#A00000~1~0~none~gge30379~0#@$P~show~0~2~140~-250~180~gge30382~0^^140~-250^^M 150 -250 h -10~#800^^0~154~-250~0~2~start~~~#800^^0~146~-254~0~2~end~~~#800^^0~127~-250^^0~M 130 -247 L 133 -250 L 130 -253#@$PL~162 -250 170 -250~#A00000~1~0~none~gge30403~0", 171 | "LIB~155~-290~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer Part`CL05B104KO5NNNC`Manufacturer`SAMSUNG(三星)`Supplier Part`C1525`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05B104KO5NNNC`~~0~gge87bd72944c04d3dc~0821ed6ea50c44f4909e4be7610e4198~ca94110f4544769d36adda4b0515e409~0~f0fe999d2ad739d3~yes~yes~230892c4a970424690d70c118a4a98bc~1701239830~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~149.03~-301~0~#000080~Arial~~~~~comment~100nF~1~start~gge30416~0~pinpart#@$T~P~149.03~-309.85~0~#000080~Arial~~~~~comment~C1~1~start~gge30422~0~pinpart#@$PL~153 -298 153 -282~#880000~1~0~none~gge30428~0#@$PL~157 -298 157 -282~#880000~1~0~none~gge30431~0#@$P~show~1~1~140~-290~180~gge30434~0^^140~-290^^M 140 -290 h 10~#000000^^0~155~-287~0~1~start~~~#000000^^0~145~-291~0~1~end~~~#000000^^0~147~-290^^0~M 150 -287 L 153 -290 L 150 -293#@$P~show~1~2~170~-290~0~gge30455~0^^170~-290^^M 170 -290 h -10~#000000^^0~155~-287~0~2~end~~~#000000^^0~165~-291~0~2~start~~~#000000^^0~163~-290^^0~M 160 -293 L 157 -290 L 160 -287#@$PL~150 -290 153 -290~#880000~1~0~none~gge30476~0#@$PL~157 -290 160 -290~#880000~1~0~none~gge30479~0", 172 | "LIB~155~-330~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer Part`CL05B104KO5NNNC`Manufacturer`SAMSUNG(三星)`Supplier Part`C1525`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05B104KO5NNNC`~~0~ggeea24e6b5101a2bfe~0821ed6ea50c44f4909e4be7610e4198~ca94110f4544769d36adda4b0515e409~0~f033bf08b93f941e~yes~yes~230892c4a970424690d70c118a4a98bc~1701239830~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~139.03~-342.95~0~#000080~Arial~~~~~comment~100nF~1~start~gge30564~0~pinpart#@$T~P~139.03~-351.8~0~#000080~Arial~~~~~comment~C4~1~start~gge30570~0~pinpart#@$PL~153 -338 153 -322~#880000~1~0~none~gge30576~0#@$PL~157 -338 157 -322~#880000~1~0~none~gge30579~0#@$P~show~1~1~140~-330~180~gge30582~0^^140~-330^^M 140 -330 h 10~#000000^^0~155~-327~0~1~start~~~#000000^^0~145~-331~0~1~end~~~#000000^^0~147~-330^^0~M 150 -327 L 153 -330 L 150 -333#@$P~show~1~2~170~-330~0~gge30603~0^^170~-330^^M 170 -330 h -10~#000000^^0~155~-327~0~2~end~~~#000000^^0~165~-331~0~2~start~~~#000000^^0~163~-330^^0~M 160 -333 L 157 -330 L 160 -327#@$PL~150 -330 153 -330~#880000~1~0~none~gge30624~0#@$PL~157 -330 160 -330~#880000~1~0~none~gge30627~0", 173 | "LIB~450~-470~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer Part`CL05B104KO5NNNC`Manufacturer`SAMSUNG(三星)`Supplier Part`C1525`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05B104KO5NNNC`~~0~gge7b26e561903c0c51~0821ed6ea50c44f4909e4be7610e4198~ca94110f4544769d36adda4b0515e409~0~4d98a69a0ad5db27~yes~yes~230892c4a970424690d70c118a4a98bc~1701239830~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~444.03~-481~0~#000080~Arial~~~~~comment~100nF~1~start~gge30648~0~pinpart#@$T~P~444.03~-489.85~0~#000080~Arial~~~~~comment~C5~1~start~gge30654~0~pinpart#@$PL~448 -478 448 -462~#880000~1~0~none~gge30660~0#@$PL~452 -478 452 -462~#880000~1~0~none~gge30663~0#@$P~show~1~1~435~-470~180~gge30666~0^^435~-470^^M 435 -470 h 10~#000000^^0~450~-467~0~1~start~~~#000000^^0~440~-471~0~1~end~~~#000000^^0~442~-470^^0~M 445 -467 L 448 -470 L 445 -473#@$P~show~1~2~465~-470~0~gge30687~0^^465~-470^^M 465 -470 h -10~#000000^^0~450~-467~0~2~end~~~#000000^^0~460~-471~0~2~start~~~#000000^^0~458~-470^^0~M 455 -473 L 452 -470 L 455 -467#@$PL~445 -470 448 -470~#880000~1~0~none~gge30708~0#@$PL~452 -470 455 -470~#880000~1~0~none~gge30711~0", 174 | "LIB~625~-670~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer Part`CL05B104KO5NNNC`Manufacturer`SAMSUNG(三星)`Supplier Part`C1525`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05B104KO5NNNC`~~0~gge8aed0ec10c07c722~0821ed6ea50c44f4909e4be7610e4198~ca94110f4544769d36adda4b0515e409~0~14140d8bbc428ade~yes~yes~230892c4a970424690d70c118a4a98bc~1701239830~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~619.03~-681~0~#000080~Arial~~~~~comment~100nF~1~start~gge30732~0~pinpart#@$T~P~619.03~-689.85~0~#000080~Arial~~~~~comment~C10~1~start~gge30738~0~pinpart#@$PL~623 -678 623 -662~#880000~1~0~none~gge30744~0#@$PL~627 -678 627 -662~#880000~1~0~none~gge30747~0#@$P~show~1~1~610~-670~180~gge30750~0^^610~-670^^M 610 -670 h 10~#000000^^0~625~-667~0~1~start~~~#000000^^0~615~-671~0~1~end~~~#000000^^0~617~-670^^0~M 620 -667 L 623 -670 L 620 -673#@$P~show~1~2~640~-670~0~gge30771~0^^640~-670^^M 640 -670 h -10~#000000^^0~625~-667~0~2~end~~~#000000^^0~635~-671~0~2~start~~~#000000^^0~633~-670^^0~M 630 -673 L 627 -670 L 630 -667#@$PL~620 -670 623 -670~#880000~1~0~none~gge30792~0#@$PL~627 -670 630 -670~#880000~1~0~none~gge30795~0", 175 | "LIB~675~-625~package`C0402`nameAlias`Value`Supplier`LCSC`Manufacturer Part`CL05B104KO5NNNC`Manufacturer`SAMSUNG(三星)`Supplier Part`C1525`JLCPCB Part Class`Basic Part`spicePre`C`spiceSymbolName`CL05B104KO5NNNC`~~0~gge077bd3b5899b46e5~0821ed6ea50c44f4909e4be7610e4198~ca94110f4544769d36adda4b0515e409~0~a566801177397322~yes~yes~230892c4a970424690d70c118a4a98bc~1701239830~cbe7defd8b0844dfa0b7772a1d6fb35e#@$T~N~669.03~-637.95~0~#000080~Arial~~~~~comment~100nF~1~start~gge30819~0~pinpart#@$T~P~669.03~-646.8~0~#000080~Arial~~~~~comment~C7~1~start~gge30825~0~pinpart#@$PL~673 -633 673 -617~#880000~1~0~none~gge30831~0#@$PL~677 -633 677 -617~#880000~1~0~none~gge30834~0#@$P~show~1~1~660~-625~180~gge30837~0^^660~-625^^M 660 -625 h 10~#000000^^0~675~-622~0~1~start~~~#000000^^0~665~-626~0~1~end~~~#000000^^0~667~-625^^0~M 670 -622 L 673 -625 L 670 -628#@$P~show~1~2~690~-625~0~gge30858~0^^690~-625^^M 690 -625 h -10~#000000^^0~675~-622~0~2~end~~~#000000^^0~685~-626~0~2~start~~~#000000^^0~683~-625^^0~M 680 -628 L 677 -625 L 680 -622#@$PL~670 -625 673 -625~#880000~1~0~none~gge30879~0#@$PL~677 -625 680 -625~#880000~1~0~none~gge30882~0", 176 | "LIB~640~-625~package`R0402`Supplier`LCSC`Manufacturer`UNI-ROYAL(厚声)`Manufacturer Part`0402WGF100JTCE`nameAlias`Resistance`Supplier Part`C25077`Resistance (Ohms)`10`JLCPCB Part Class`Basic Part`spicePre`R`spiceSymbolName`0402WGF100JTCE`~~0~gge506376a5c76437d4~fafd024f554e426eb74cf4a204aa88b0~a4703cb7c7a6bd58700c63f3708635a1~0~8a9193f3ce4f709d~yes~yes~f3695162c9a842779bb2023d4c75b605~1672248603~4f1aacec56df47e182011d22c1bd7e4f#@$T~N~631.3203125~-636.8~0~#000080~Arial~~~~~comment~10Ω~1~start~gge30911~0~pinpart#@$T~P~631.328125~-645.8~0~#000080~Arial~~~~~comment~R5~1~start~gge30917~0~pinpart#@$P~show~1~2~660~-625~0~gge30923~0^^660~-625^^M 660 -625 h -10~#000000^^0~645~-622~0~2~end~~~#000000^^0~655~-626~0~2~start~~~#000000^^0~653~-625^^0~M 650 -628 L 647 -625 L 650 -622#@$P~show~1~1~620~-625~180~gge30944~0^^620~-625^^M 620 -625 h 10~#000000^^0~635~-622~0~1~start~~~#000000^^0~625~-626~0~1~end~~~#000000^^0~627~-625^^0~M 630 -622 L 633 -625 L 630 -628#@$R~630~-629~~~20~8~#880000~1~0~none~gge30965~0~", 177 | "J~560~-295~2.5~#CC0000~gge5850~0", 178 | "J~1045~-315~2.5~#CC0000~gge6321~0", 179 | "J~1045~-325~2.5~#CC0000~gge6330~0", 180 | "J~885~-270~2.5~#CC0000~gge6339~0", 181 | "J~875~-320~2.5~#CC0000~gge6348~0", 182 | "J~1060~-655~2.5~#CC0000~gge12511~0", 183 | "J~990~-655~2.5~#CC0000~gge12515~0", 184 | "J~980~-695~2.5~#CC0000~gge12519~0", 185 | "J~1025~-500~2.5~#CC0000~gge24770~0", 186 | "J~1065~-500~2.5~#CC0000~gge24795~0", 187 | "J~190~-290~2.5~#CC0000~gge25982~0", 188 | "J~190~-300~2.5~#CC0000~gge25986~0", 189 | "J~180~-330~2.5~#CC0000~gge26005~0", 190 | "J~180~-290~2.5~#CC0000~gge26015~0", 191 | "J~180~-280~2.5~#CC0000~gge26019~0", 192 | "J~420~-520~2.5~#CC0000~gge28146~0", 193 | "J~435~-520~2.5~#CC0000~gge28225~0", 194 | "J~490~-510~2.5~#CC0000~gge28265~0", 195 | "J~700~-615~2.5~#CC0000~gge28460~0", 196 | "J~700~-625~2.5~#CC0000~gge28464~0", 197 | "J~700~-635~2.5~#CC0000~gge28549~0", 198 | "J~575~-670~2.5~#CC0000~gge28571~0", 199 | "J~1070~-695~2.5~#CC0000~gge29527~0", 200 | "J~1070~-685~2.5~#CC0000~gge29531~0", 201 | "J~1070~-655~2.5~#CC0000~gge29532~0", 202 | "J~690~-295~2.5~#CC0000~gge30325~0", 203 | "J~140~-250~2.5~#CC0000~gge30413~0", 204 | "J~140~-290~2.5~#CC0000~gge30552~0", 205 | "J~660~-625~2.5~#CC0000~gge30966~0" 206 | ], 207 | "BBox": { 208 | "x": 0, 209 | "y": -806.8, 210 | "width": 1149, 211 | "height": 807.3 212 | }, 213 | "colors": {} 214 | } 215 | } 216 | ] 217 | } -------------------------------------------------------------------------------- /Firmware-v2/adxlmcu.cfg: -------------------------------------------------------------------------------- 1 | [mcu adxl] 2 | serial: /dev/serial/by-id/xxx 3 | # Edit the above line with the correct serial address. Use "ls /dev/serial/by-id/*" to find the MCU serial address. 4 | 5 | [adxl345] 6 | cs_pin: adxl:PA4 7 | spi_bus: spi1 8 | 9 | [resonance_tester] 10 | accel_chip: adxl345 11 | probe_points: 12 | 0,0,0 13 | # Edit the above line with the correct probe points location. I recommend the center of your bed for X & Y, 20 for Z. 14 | # For 350 mm printers: 175,175,20 15 | # For 300 mm printers: 150,150,20 16 | # For 250 mm printers: 125,125,20 17 | # For 120 mm printers: 60,60,20 18 | 19 | # More info: https://www.klipper3d.org/Config_Reference.html#adxl345 20 | -------------------------------------------------------------------------------- /Firmware/adxlmcu.cfg: -------------------------------------------------------------------------------- 1 | [mcu adxl] 2 | serial: /dev/serial/by-id/xxx 3 | # Edit the above line with the correct serial address. Use "ls /dev/serial/by-id/*" to find the MCU serial address. 4 | 5 | [lis2dw] 6 | cs_pin: adxl:PA4 7 | spi_bus: spi1 8 | 9 | [resonance_tester] 10 | accel_chip: lis2dw 11 | probe_points: 12 | 0,0,0 13 | # Edit the above line with the correct probe points location. I recommend the center of your bed for X & Y, 20 for Z. 14 | # For 350 mm printers: 175,175,20 15 | # For 300 mm printers: 150,150,20 16 | # For 250 mm printers: 125,125,20 17 | # For 120 mm printers: 60,60,20 18 | 19 | # More info: https://www.klipper3d.org/Config_Reference.html#adxl345 20 | -------------------------------------------------------------------------------- /Gerbers/v1-LIS2DW/BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Gerbers/v1-LIS2DW/BOM.csv -------------------------------------------------------------------------------- /Gerbers/v1-LIS2DW/Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Gerbers/v1-LIS2DW/Gerber.zip -------------------------------------------------------------------------------- /Gerbers/v1-LIS2DW/PNP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Gerbers/v1-LIS2DW/PNP.csv -------------------------------------------------------------------------------- /Gerbers/v2-ADXL345/BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Gerbers/v2-ADXL345/BOM.csv -------------------------------------------------------------------------------- /Gerbers/v2-ADXL345/Gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Gerbers/v2-ADXL345/Gerber.zip -------------------------------------------------------------------------------- /Gerbers/v2-ADXL345/PNP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Gerbers/v2-ADXL345/PNP.csv -------------------------------------------------------------------------------- /Images/PCB-w-Mount.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Images/PCB-w-Mount.jpg -------------------------------------------------------------------------------- /Images/PCB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Images/PCB.jpg -------------------------------------------------------------------------------- /Images/PCBv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbst/KUSBA-PRO/cc81ecd9b60bc63975e7834a60dbea600bbe67e9/Images/PCBv2.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KUSBA Pro (Nozzle KUSBA) 2 | [YouTube Video](https://www.youtube.com/watch?v=ecENeHfXG64) 3 | 4 | ![KUSBA Pro](./Images/PCB-w-Mount.jpg) 5 | 6 | ## Purchasing a KUSBA Pro 7 | ### United States 8 | - [Isik's Tech](https://store.isiks.tech/products/kusba-pro) (Me) 9 | - [XR Bunker](https://xrbunker.works/products/kusba-pro-nozzle-usb-accelerometer-by-xbst_isik) 10 | ### United Kingdom 11 | - [Printy Please](https://www.printyplease.uk/KUSBAPro) 12 | ### European Union 13 | - [Lab4450 - Portugal](https://lab4450.com/product/nozzle-kusba-pro-accelerometer/) 14 | ### Australia 15 | - [DREMC](https://store.dremc.com.au/products/kusba-pro-usb-accelerometer-for-klipper-adxl345) 16 | 17 | This project is licensed under [GPL v3](./LICENSE), meaning vendors are allowed to sell PCBs without paying me. If you'd like to support the development of this and future projects please consider [sponsoring](https://github.com/sponsors/xbst) me on GitHub. You can also subscribe on [Patreon](https://l.isiks.tech/patreon) or [YouTube](https://l.isiks.tech/member). 18 | 19 | You can also use the included gerber files to order your own from a PCB manufacturer like [PCBWay](https://www.pcbway.com/setinvite.aspx?inviteid=374841) or [JLCPCB](https://jlcpcb.com/) and you can order the MJF mount from a 3D printing company like [JawsTec](https://www.jawstec.com/3d-printing-service/?aff=6). 20 |
21 | 22 | ## Instructions 23 | 24 | - [LIS2DW KUSBA Pro (v1.0) Firmware Flashing & Usage](./Docs/Firmware.md) 25 | - [ADXL345 KUSBA Pro (v2.0) Firmware Flashing & Usage](./Docs/Firmware-v2.md) 26 | - [Assembling PCB and MJF Mount](./Docs/Mount.md) 27 | 28 | ## KUSBA v2.4 vs Pro v1.0 vs Pro v2.0 29 | 30 | | |KUSBA Pro v2.0|KUSBA Pro v1.0|KUSBA v2.4| 31 | |-------------|--------------|--------------|----------| 32 | |Picture |||| 33 | |MCU |STM32G431 |STM32F042 |RP2040 | 34 | |Accelerometer|ADXL345 |LIS2DW |ADXL345 | 35 | |3.3V Regulator|LP5907MFX-3.3|LP5907MFX-3.3|AMS1117-3.3| 36 | |Flash |N/A |N/A |W25Q16JVSNIQ| 37 | |Connector |USB C |USB C |USB C | 38 | |Firmware |Klipper |Klipper |Klipper, Rampon| 39 | |PCB Size |26.0 x 17.6 mm|26.0 x 17.6 mm|34.0 x 25.0 mm| 40 | |Smallest SMD |0402 |0201 |0402 | 41 | 42 | ## YouTube 43 | 44 | I am a YouTube content creator. If you want content about these projects & more, please consider [subscribing to my YouTube channel](https://www.youtube.com/channel/UClAWYmCkHjsbaX9Wz1df2mg). 45 |
46 | 47 | If you feel like contributing to the development of this project and other projects like this you can sponsor me on [GitHub](https://github.com/sponsors/xbst), subscribe on [Patreon](https://l.isiks.tech/patreon) or [YouTube](https://l.isiks.tech/member). 48 | 49 | ## Notes 50 | - Readme files in this repo may contain Amazon Associate, Aliexpress affiliate, PCBWay affiliate, JawsTec affiliate links. I make a comission on qualifying purchases. 51 | - This project does not come with any warranty, if you choose to build/use a PCB manufactured using published files in this repository, you are doing this at your own risk! 52 | - If you want to sell PCBs manufactured using published files in this repository, you are allowed to, and you will not owe me any royalties. **You cannot claim that I endorse the sale**. You can check the license file for more information. However, if you **wish** to give me a share you can sponsor me on [GitHub](https://github.com/sponsors/xbst), subscribe on [Patreon](https://l.isiks.tech/patreon) or [YouTube](https://l.isiks.tech/member). 53 | --------------------------------------------------------------------------------