├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── ASSEMBLY.md ├── DESIGN.md ├── LICENSE ├── README.md ├── case ├── README.md ├── keezyboost40 v15.step ├── keezyboost40 v15.stl ├── keezyboost40 v16.step └── keezyboost40 v16.stl ├── drafts └── KLE.txt ├── firmware ├── README.md ├── keezus │ ├── .cargo │ │ └── config.toml │ ├── .vscode │ │ └── settings.json │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── 1stgen.png │ │ ├── 1stgen565.bmp │ │ ├── ferris.raw │ │ └── pi.raw │ ├── build.rs │ ├── memory.x │ └── src │ │ ├── delay.rs │ │ ├── layout.rs │ │ ├── main.rs │ │ └── main_old.rs └── sporewoh_keezyboost40_default.uf2 ├── images ├── keezyboost40pcb.jpg └── keezyboost40splash.jpg ├── outlines ├── 227-2278364_raspberry-pi-filled-icon-raspberry-pi-logo-png.png ├── plate-2022-07-10T20 48 17.110Z.dxf ├── plate-2022-07-10T20 48 18.525Z.svg ├── plate_outline.dxf └── plate_outline.svg ├── pcb ├── keezyboost40 │ ├── Printing Print Schematic.pdf │ ├── fp-info-cache │ ├── fp-lib-table │ ├── gerbers.zip │ ├── gerbers │ │ ├── keezyboost40-NPTH-drl_map.ps │ │ └── keezyboost40-PTH-drl_map.ps │ ├── keezyboost40.kicad_pcb │ ├── keezyboost40.kicad_prl │ ├── keezyboost40.kicad_pro │ ├── keezyboost40.kicad_sch │ ├── keezyboost40.kicad_sch-bak │ └── sym-lib-table ├── kicad-plugins │ └── horizon-board-producer.py └── sporewoh-keyboard-extras │ ├── Library.pretty │ └── kicub_keyboard_extras.pretty │ │ ├── RPi_Pico_SMD_TH_OPEN.kicad_mod │ │ └── ST7735_1.8inch.kicad_mod │ ├── kicub_keyboard_extras.bak │ └── kicub_keyboard_extras.kicad_sym └── temp ├── fp-info-cache ├── keezyboost40-bottom-plate.kicad_pcb ├── keezyboost40-bottom-plate.kicad_prl ├── keezyboost40-bottom-plate.kicad_pro ├── keezyboost40-top-plate.kicad_pcb ├── keezyboost40-top-plate.kicad_prl ├── keezyboost40-top-plate.kicad_pro ├── keezyboost40.kicad_pcb ├── keezyboost40.kicad_prl ├── keezyboost40.kicad_pro └── keezyboost40 ├── keezyboost40-B_Cu.gbl ├── keezyboost40-B_Mask.gbs ├── keezyboost40-B_SilkS.gbo ├── keezyboost40-Edge_Cuts.gm1 ├── keezyboost40-F_Cu.gtl ├── keezyboost40-F_Mask.gts ├── keezyboost40-F_SilkS.gto ├── keezyboost40-NPTH.drl └── keezyboost40-PTH.drl /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: sporewoh 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # VSCode 3 | .vscode/* 4 | !.vscode/settings.json 5 | !.vscode/tasks.json 6 | !.vscode/launch.json 7 | !.vscode/extensions.json 8 | *.code-workspace 9 | # Local History for Visual Studio Code 10 | .history/ 11 | 12 | # Common credential files 13 | **/credentials.json 14 | **/client_secrets.json 15 | **/client_secret.json 16 | *creds* 17 | *.dat 18 | *password* 19 | *.httr-oauth* 20 | 21 | # Private Node Modules 22 | node_modules/ 23 | creds.js 24 | 25 | # Private Files 26 | *.csv 27 | *.csv.gz 28 | *.tsv 29 | *.tsv.gz 30 | *.xlsx 31 | 32 | 33 | # Mac/OSX 34 | .DS_Store 35 | 36 | 37 | # Byte-compiled / optimized / DLL files 38 | __pycache__/ 39 | *.py[cod] 40 | *$py.class 41 | 42 | # C extensions 43 | *.so 44 | 45 | # Distribution / packaging 46 | .Python 47 | build/ 48 | develop-eggs/ 49 | dist/ 50 | downloads/ 51 | eggs/ 52 | .eggs/ 53 | lib/ 54 | lib64/ 55 | parts/ 56 | sdist/ 57 | var/ 58 | wheels/ 59 | share/python-wheels/ 60 | *.egg-info/ 61 | .installed.cfg 62 | *.egg 63 | MANIFEST 64 | 65 | # PyInstaller 66 | # Usually these files are written by a python script from a template 67 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 68 | *.manifest 69 | *.spec 70 | 71 | # Installer logs 72 | pip-log.txt 73 | pip-delete-this-directory.txt 74 | 75 | # Unit test / coverage reports 76 | htmlcov/ 77 | .tox/ 78 | .nox/ 79 | .coverage 80 | .coverage.* 81 | .cache 82 | nosetests.xml 83 | coverage.xml 84 | *.cover 85 | *.py,cover 86 | .hypothesis/ 87 | .pytest_cache/ 88 | cover/ 89 | 90 | # Translations 91 | *.mo 92 | *.pot 93 | 94 | # Django stuff: 95 | *.log 96 | local_settings.py 97 | db.sqlite3 98 | db.sqlite3-journal 99 | 100 | # Flask stuff: 101 | instance/ 102 | .webassets-cache 103 | 104 | # Scrapy stuff: 105 | .scrapy 106 | 107 | # Sphinx documentation 108 | docs/_build/ 109 | 110 | # PyBuilder 111 | .pybuilder/ 112 | target/ 113 | 114 | # Jupyter Notebook 115 | .ipynb_checkpoints 116 | 117 | # IPython 118 | profile_default/ 119 | ipython_config.py 120 | 121 | # pyenv 122 | # For a library or package, you might want to ignore these files since the code is 123 | # intended to run in multiple environments; otherwise, check them in: 124 | # .python-version 125 | 126 | # pipenv 127 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 128 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 129 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 130 | # install all needed dependencies. 131 | #Pipfile.lock 132 | 133 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 134 | __pypackages__/ 135 | 136 | # Celery stuff 137 | celerybeat-schedule 138 | celerybeat.pid 139 | 140 | # SageMath parsed files 141 | *.sage.py 142 | 143 | # Environments 144 | .env 145 | .venv 146 | env/ 147 | venv/ 148 | ENV/ 149 | env.bak/ 150 | venv.bak/ 151 | 152 | # Spyder project settings 153 | .spyderproject 154 | .spyproject 155 | 156 | # Rope project settings 157 | .ropeproject 158 | 159 | # mkdocs documentation 160 | /site 161 | 162 | # mypy 163 | .mypy_cache/ 164 | .dmypy.json 165 | dmypy.json 166 | 167 | # Pyre type checker 168 | .pyre/ 169 | 170 | # pytype static type analyzer 171 | .pytype/ 172 | 173 | # Cython debug symbols 174 | cython_debug/ 175 | 176 | keezyboost40-backups/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "pcb/keyswitches.pretty"] 2 | path = pcb/keyswitches.pretty 3 | url = https://github.com/daprice/keyswitches.pretty 4 | [submodule "pcb/KiCad-RP-Pico"] 5 | path = pcb/KiCad-RP-Pico 6 | url = https://github.com/ncarandini/KiCad-RP-Pico 7 | [submodule "firmware/keyberon"] 8 | path = firmware/keyberon 9 | url = https://github.com/ChrisChrisLoLo/keyberon 10 | -------------------------------------------------------------------------------- /ASSEMBLY.md: -------------------------------------------------------------------------------- 1 | # Assembly 2 | 3 | This is the assembly doc used to outline the steps used to assemble a keezyboost40. For the most part, it's fairly typical, and a similar build process to the Corne or Reviung. 4 | 5 | For now, I will outline steps of interest, and leave best techniques (such as smd diode soldering) as an exercise to the reader due to time constraints in my personal life. Down the road, I may add more fleshed out steps and pictures for a better beginner build experience. 6 | 7 | # General Tools 8 | For the best experience, at the minimum, I suggest a decent soldering iron, flux, wire cutters, and a pair of tweezers to hold/move the SMD parts. I use lead-free solder for generally philisophical reasons, though many do claim that using lead solder is easier to work with. Hot air stations are likely very nice too, though I haven't used one personally. 9 | 10 | # PCB Assembly 11 | Firstly, solder the diodes onto the board. You want the black bar (cathode) on the diode to face _down_ for rows 1,2, and 3. For row 4, you will want the diodes to face _up_. This may change in future iterations. Once done I like to wiggle the diodes gently with my tweezers to see if there's any loose connections. Don't be too rough, or you may tear off a pad! 12 | 13 | After that, you will want to solder the hotswap sockets on. Don't worry if the solder from the socket touches the solder from the diode: it's positioned in a way where this isn't a problem. 14 | 15 | Then, you'll want to solder the Raspberry pico on the board. You'll have to be fairly careful with this step. You want the "front" of the pico to lay down on the "front" PCB such that reset button is facing downwards, and the diodes and sockets are downwards. The pico should also be resting on _top_ of the PCB, so that the PCB sandwich roughly looks like `pico -> PCB -> diodes/sockets`. 16 | From there, solder the pico onto the board using the castelated pins. Using headers with the pico will almost certainly lead to interference with the LCD screen. Solder one corner of the pico to position it, and then an opposite to secure it once the postioning looks good. 17 | 18 | Generally speaking, you'll want to test the connections before going further. You'll want to flash the pico with your firmware of choice, and then test all of the keys to confirm that they work. You can do this by shorting the hotswap sockets. 19 | 20 | After that, you'll then want to solder on the LCD display. You can keep the pin headers on, though you will need to clip off the SD card with a pair of wire cutters. We do this as the there is no room to utilize the SD card reader, and leaving it on leads to interference. You'll want to clip around the traces of the SD card to free it. Once clipped off, you'll want to tape the entire backside of the display to cover the pokey bits, as well as the conductive bits that could potentially short with the pico below it. After that, put the TFT onto the board and solder the header pins in place. I suggest securing the TFT down with tape or prop it up with a small piece of foam to minimize it moving around during the soldering process. 21 | 22 | Once you have soldered that on, you're now done with the PCB! 23 | 24 | # Board assembly 25 | The assemly of the case/board is fairly simple. 26 | 27 | Assuming you have an acrylic screen, you'll want to make the following "sandwich" with your long 12mm M2 screw: 28 | `screw head -> acrylic piece -> M2 spacer (goes right through it) -> PCB -> M2 nut`. This will effectively secure the acrylic piece to the PCB. 29 | 30 | Afterwards, screw the PCB to the case with the following "sandwich": 31 | `screw head -> bottom of case -> PCB -> M2 nut` 32 | 33 | Once done, put on your switches and keycaps, and you're done! 34 | -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- 1 | # Design 2 | 3 | This document outlines some of the design choices I've made with this keyboard, as it is one of my more ambitious designs thus far. 4 | 5 | It's a bit more like a rambly blog than anything else. 6 | 7 | ## Motive and inspiration 8 | I really wanted to play around with low choc profile switches in an ortholinear board, and I wanted to see if the portability of a low profile board would be more convinient than my other current boards. 9 | 10 | The three big inspirations (among many others) for this design were the Ghoul, the Technik, the Lumberjack. 11 | 12 | The keezyboost40 has the microcontroller in the center, which allows me to fit a microcontroller onto the board without gaining any additional height that would come with, say, soldering the microcontroller under the board. 13 | 14 | The acrylic screen and the LCD help make use of the realestate made by having the microcontroller in the center. 15 | 16 | ## Part choice 17 | I found that generally speaking, the parts I picked generally complemented each other, somewhat by accident. 18 | 19 | I initially picked the rapsberry pi pico over a pro micro due to its lower cost and castelated pins, which I was hoping to use to make the board low profile. However the pico took up considerably more space than the pro-micro. To make use of the real estate, I wanted to do what the Ghoul did, and make use of an LCD screen in the middle. This turned out to be a great compliment, as the large amount of computing power and pins required by the LCD were easily satisfied by the pico. Due to the large amount of pins of the pico, no IO expander or the like is required to have a display _and_ a standard key matrix. This combination of large display and powerful (compared to the ATMega line, at least) microcontroller opens up the door to different kinds of software, UI, and games. I'm excited as this board, on paper, should be capable of doing more things that wasn't previously feasible with a typical OLED and pro-micro. Some ideas I had in mind includes making games or even some sort of tamagotchi program. 20 | 21 | ## Firmware design choice 22 | This is arguably where I'm the most torn (and most likely to garner critisism from an online stranger), though this isn't necesarily a one way door either. I needed a firmware that could perform keybaord duties, display to an LCD, as well as be extensible enough that I can comfortably write user programs on top of it. QMK certainly ticks the first box, and thanks to the work of tzarc, writing to a SPI LCD display like mine should be doable with Quantum Painter. My bigger concern with QMK was extensibility (though I'm sure there's some QMK experts who would disagree). To me, I wasn't fully confident that QMK would always have what I need, espectially for something like a tamagotchi game (clocks? interupts? writing to flash? potentially using the pico's second core? There might be a good answer for all of these with QMK, but I didn't like the fact that it feels like I need to / should rely on the constructs and functions that it offers). I could be wrong about most of this QMK stuff, so constructive conversation is welcome. 23 | 24 | The biggest appeals to using a Rust based firmware with the keyberon library was the idea that it felt like I was in control of the firmware, and that if there was any problem that I hit with the RP2040 or with the libraries/framework, that I could go into the code and directly fix it myself, rather than having to work in a monolithic structure of sorts. I also like that I could work with a language that has some of the niceities that came with high level languages of the past, as well as a language that can stop me from causing a whole class of bugs. From my limited experience with it, it's a lot more fun programming with it than with C, by a fair margin. Best of all, it's easy to add a library or add a new task to the RTOS if I ever decide to do something esoteric by keyboard standards. 25 | 26 | ## PCB cutout design choice 27 | For the most part, the PCB is fairly bog-standard. An interesting design choice, of note, however, was the use of having a giant cutout for the pico in the middle of the board. The point of it is so that you can have the pico face down on top of the PCB _and_ be able to access the reset button. It also helps reduce thickness, to a degree by being able to put the pico on top of the PCB rather than at the bottom. 28 | 29 | This cut out idea worked well enough in my case, though there's a few caveats that other board builders should be aware of: 30 | - It does somewhat affect board rigdity 31 | - While completely usable, and not curled up as I initially feared, intentional flexing of the board does concern me a bit. 32 | - Soldering on a pico helps give board rigidity, though in theory, you're now putting structural strain on the solder joints (!!!) if the board flexes too much 33 | - Applying generous amounts of solder helps, and having a rigid case prevents this from being a major concern, but I would have fair doubts about putting in in a gasket mount case or without a case 34 | - There's less PCB space 35 | - hard to fit in fun stuff like buzzers 36 | - problem is amplified by the size of the pico 37 | - Wrapping traces around the cutout may introduce inductance 38 | - it's possible that the leads may form a bit of a coil 39 | - not enough to wreak havoc, though it my be enough to slow/shift keyboard signals enough that adding delays in your firmware become mandatory -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # keezyboost40 2 | 3 | 4 | 5 | A 4x10 low profile ortholinear keyboard with an lcd screen in the center. Uses the Raspberry Pi Pico as well as firmware written in Rust (though QMK works too*) 6 | 7 | ## Features 8 | - Low Profile 9 | - Keyboard is around 16.5mm thick, keys and keycaps included 10 | - 1.8" LCD Screen 11 | - Ample real estate for animations, UI, games(?), etc. 12 | - Uses the Raspberry Pi Pico 13 | - 2MB of flash storage 14 | - Lots of room for programming with MicroPython, or room for graphics and code 15 | - Parts readily available 16 | - Only SMD parts required are diodes and kailh choc hotswap sockets 17 | - Supports QMK or Rust firmware 18 | - QMK hex can be found in firmware file 19 | - Uses Keyberon as the firmware base, allowing for a "modular" firmware that can easily be built upon 20 | - More details can be found in DESIGN.md 21 | 22 | Display demo here: 23 | 24 | [![keezyboost40 display demo](https://img.youtube.com/vi/Bl2fR8NX23E/0.jpg)](https://www.youtube.com/watch?v=Bl2fR8NX23E) 25 | 26 | ## Status 27 | Prototypes are functional, though firmware is still WIP! v0.0 needs a jumper cable from the Pico to the reset pin in the TFT, but works perfectly fine with the Raspberry Pi Pico aside from that. v0.1 fixes this issue (currently in the `master` branch), though hasn't been produced and tested yet. 28 | 29 | I need to fix a bug with the animation slowing down, though I suspect it'll mostly involve tinkering with RTOS timings 30 | 31 | ## PCB 32 | You can generate the gerbers from source in the `pcb` directory, and send off imediately to PCBWay or the like. [PCBWay](https://www.pcbway.com/) has helped sponsor this project, and has provided a fast, easy service while ordering from them. I was also suprised how well my board came out desipte being quite oddly shaped, so I recommend checking them out for your next project! 33 | 34 | 35 | 36 | ## BOM 37 | The following is the materials you will want/need to make your own keezyboost40. Note that anything amount after a `+` denotes the rough amount of spares you may want to have when ordering the parts. Anything involving the acrylic screen is optional. Even the LCD is optional if you prefer more of a lumberjack-y vibe :) 38 | |Part|Count|Notes 39 | |---|---|---| 40 | |PCB| 1| duh| 41 | |Kailh Choc Hotswap Switches| 40+10| | 42 | |LL4148 SMD Diodes| 40+10| This board uses SMD diodes exclusively. I found though-hole diodes often easily slipped around in a way such that the board was no longer able to fit inside the case| 43 | |1.8" ST7735 TFT| 1| Generally speaking, you want the one with the Red PCB. Do NOT use the one from Adafruit, as the pin order on that one is different| 44 | |Raspberry Pi Pico| 1| Try to get the original or a _very_ similar clone with castellated pins. From casual testing, other RP2040 boards may not work (for example, the Pico clones from WeAct can't seem to properly drive the LCD with 3.3V logic)| 45 | |Rubber Feet| 6+2| Any should generally work, though I'm using ~2.5mm thick ones, as they give more space for screw heads, as well as the magnetic connector I'm using| 46 | |3D Printed Case| 1| You could use PCB printing services like PCBWay to make one in resin, though I haven't confirmed if they'd be durable enough to survive in transit| 47 | |M2 Nuts| 10+5| 6 nuts to hold the PCB to the case, and another 4 to hold the acrylic screen to the PCB. I'm using nylon nuts, though any should work. I recommend you grab this with a hex spacer kit, as you get all the M2 parts you need in a single purchase!| 48 | |M2 8mm Double Female spacer| 4+2| Spacers to keep the acrylic from the pcb| 49 | |M2 12mm Screw| 4+2| Screws for the acrylic screen| 50 | |M2 6mm Screw| 6+3| Screws for the PCB and case. Be careful of the size of the screw head! the flatter the better!| 51 | |Acrylic Screen| 1| You can cut one out using the svgs in the `outlines` folder| 52 | 53 | 54 | ## Design 55 | See `DESIGN.md` for small insights about the design choices that went into this board. 56 | 57 | ## Directory Structure 58 | - `case` 59 | You can find the files you need in this folder to print out a case for the keyboard 60 | - `drafts` 61 | Stores any KLE or intermediate information used in making the case 62 | - `firmware` 63 | Used to store any firmware relating to the keyboard. Merges to the QMK repo planned. 64 | - `outlines` 65 | Outlines used for the acrylic screen. Use these to cut your own! 66 | - `pcb` 67 | Kicad project relating to the project 68 | -------------------------------------------------------------------------------- /case/README.md: -------------------------------------------------------------------------------- 1 | # Case 2 | Case assembly can be found in `ASSEMBLY.md`. 3 | 4 | Case v15 works fairly well, though I may make a newer iteration that makes the Reset button cutout just a tad bit bigger 5 | 6 | Case v16 (by Leo Lou) has a larger cutout, which allows for USB-C boards to be used, and it also makes it easier to access the BOOTSEL button. 7 | -------------------------------------------------------------------------------- /case/keezyboost40 v15.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/case/keezyboost40 v15.stl -------------------------------------------------------------------------------- /case/keezyboost40 v16.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/case/keezyboost40 v16.stl -------------------------------------------------------------------------------- /drafts/KLE.txt: -------------------------------------------------------------------------------- 1 | [{a:7},"Tab","Q","W","E","R",{x:2},"U","I","O","P","Back Space"], 2 | ["Esc","A","S","D","F",{x:2},"J","K","L",";","'"], 3 | ["Shift","Z","X","C","V",{x:2},"M",",",".","/","Return"], 4 | ["","Ctrl","Alt","Super","⇓",{x:2},"⇑","←","↓","↑","→"] 5 | -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- 1 | # Firmware 2 | 3 | This folder holds firmware code. `keezus` is the name of my "homebrew" firmware in Rust. It uses Keyberon to read and report keys, and down the road, will include code that I write that focuses on the graphics/programs that display to the LCD screen. 4 | 5 | I now have a hex file for QMK. The screen works with this hex. For the most up to date firmware/source code, check out my local fork of QMK [here](https://github.com/ChrisChrisLoLo/qmk_firmware/tree/keezyboost40_2/keyboards/sporewoh/keezyboost40) 6 | 7 | You can find the general layout of the QMK firmware here: https://github.com/ChrisChrisLoLo/TypeBeastXDPlus 8 | 9 | I may get to putting a QMK VIA(L) hex file here once the folks at QMK engineer a way to get VIA(L) working with the RP2040. 10 | -------------------------------------------------------------------------------- /firmware/keezus/.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | target="thumbv6m-none-eabi" # Build for ARM Cortex-M0 3 | 4 | [target.thumbv6m-none-eabi] 5 | runner = "elf2uf2-rs -d" 6 | # runner = "picotool load -x -t elf" 7 | # runner = "probe-run --chip RP2040" 8 | rustflags = [ 9 | "-C", "linker=flip-link", 10 | "-C", "link-arg=-Tlink.x", 11 | # Flag required for defmt, when using probe-run 12 | "-C", "link-arg=-Tdefmt.x", 13 | # This is needed if your flash or ram addresses are not aligned to 0x10000 in memory.x 14 | # See https://github.com/rust-embedded/cortex-m-quickstart/pull/95 15 | "-C", "link-arg=--nmagic", 16 | ] -------------------------------------------------------------------------------- /firmware/keezus/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.languageServer": "Pylance", 3 | "python.linting.pylintEnabled": false, 4 | "python.analysis.diagnosticSeverityOverrides": { 5 | "reportMissingModuleSource": "none" 6 | }, 7 | "python.analysis.extraPaths": [ 8 | "", 9 | "/Users/chriz/.vscode/extensions/joedevivo.vscode-circuitpython-0.1.17-darwin-arm64/stubs", 10 | "/Users/chriz/Library/Application Support/Code/User/globalStorage/joedevivo.vscode-circuitpython/bundle/20220804/adafruit-circuitpython-bundle-py-20220804/lib" 11 | ], 12 | "circuitpython.board.version": null 13 | } -------------------------------------------------------------------------------- /firmware/keezus/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "keezus" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | # keyberon = { git = "https://github.com/TeXitoi/keyberon" } 10 | # Use local fork that has hardcoded timeout in matrix scanning function 11 | # Used until https://github.com/TeXitoi/keyberon/issues/97 is resolved 12 | # keyberon = { git = "https://github.com/ChrisChrisLoLo/keyberon", branch = "delay_workaround" } 13 | # Local fork 14 | keyberon = {path = "../keyberon"} 15 | cortex-m = "0.7.3" 16 | cortex-m-rt = "0.7.0" 17 | cortex-m-rtic = "1.0.0" 18 | embedded-hal = { version = "0.2.5", features=["unproven"] } 19 | embedded-time = "0.12" 20 | panic-reset = "0.1" 21 | panic-halt= "0.2.0" 22 | rp2040-boot2 = { version = "0.2", optional = true } 23 | rp2040-hal = { version = "0.5", features=["rt"] } 24 | usb-device = "0.2" 25 | usbd-hid = "0.6" 26 | st7735-lcd = "0.8" 27 | embedded-graphics = "0.7.1" 28 | asm-delay = "0.9.0" 29 | 30 | # Dependencies for debug probe 31 | defmt = "0.3" # Macros and support for deferred formatting logging 32 | defmt-rtt = "0.3" # Contains a definition for a #[global_logger] 33 | panic-probe = { version = "0.3", features = ["print-defmt"] } 34 | 35 | [features] 36 | default = ["boot2"] 37 | boot2 = ["rp2040-boot2"] -------------------------------------------------------------------------------- /firmware/keezus/README.md: -------------------------------------------------------------------------------- 1 | # keezus 2 | 3 | ## Dependencies 4 | rustup default beta 5 | cargo install flip-link 6 | cargo install probe-run 7 | rustup target add thumbv6m-none-eabi 8 | cargo install elf2uf2-rs 9 | 10 | ## Flash Code 11 | Hold the "USB Boot" button (near the QSPI chip), and either press the reset button or re-insert the USB cable to put the board in USB mass-storage bootloader mode. 12 | 13 | cargo run --release 14 | ## Troubleshooting 15 | If you get an error such as: 16 | 17 | Error: "Memory segment 0x010000->0x010094 is outside of valid address range for device" 18 | Double check that your RUSTFLAGS environment variable, as it will take precedence over the values set in ./cargo/config.toml. -------------------------------------------------------------------------------- /firmware/keezus/assets/1stgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/firmware/keezus/assets/1stgen.png -------------------------------------------------------------------------------- /firmware/keezus/assets/1stgen565.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/firmware/keezus/assets/1stgen565.bmp -------------------------------------------------------------------------------- /firmware/keezus/assets/ferris.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/firmware/keezus/assets/ferris.raw -------------------------------------------------------------------------------- /firmware/keezus/assets/pi.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/firmware/keezus/assets/pi.raw -------------------------------------------------------------------------------- /firmware/keezus/build.rs: -------------------------------------------------------------------------------- 1 | //! This build script copies the `memory.x` file from the crate root into 2 | //! a directory where the linker can always find it at build time. 3 | //! For many projects this is optional, as the linker always searches the 4 | //! project root directory -- wherever `Cargo.toml` is. However, if you 5 | //! are using a workspace or have a more complicated build setup, this 6 | //! build script becomes required. Additionally, by requesting that 7 | //! Cargo re-run the build script whenever `memory.x` is changed, 8 | //! updating `memory.x` ensures a rebuild of the application with the 9 | //! new memory settings. 10 | 11 | use std::{env, fs::File, io::Write, path::PathBuf}; 12 | 13 | fn main() { 14 | // Put `memory.x` in our output directory and ensure it's 15 | // on the linker search path. 16 | let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap()); 17 | File::create(out.join("memory.x")).unwrap().write_all(include_bytes!("memory.x")).unwrap(); 18 | println!("cargo:rustc-link-search={}", out.display()); 19 | 20 | // By default, Cargo will re-run a build script whenever 21 | // any file in the project changes. By specifying `memory.x` 22 | // here, we ensure the build script is only re-run when 23 | // `memory.x` is changed. 24 | println!("cargo:rerun-if-changed=memory.x"); 25 | } -------------------------------------------------------------------------------- /firmware/keezus/memory.x: -------------------------------------------------------------------------------- 1 | MEMORY { 2 | BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100 3 | FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100 4 | RAM : ORIGIN = 0x20000000, LENGTH = 256K 5 | } 6 | 7 | EXTERN(BOOT2_FIRMWARE) 8 | 9 | SECTIONS { 10 | /* ### Boot loader */ 11 | .boot2 ORIGIN(BOOT2) : 12 | { 13 | KEEP(*(.boot2)); 14 | } > BOOT2 15 | } INSERT BEFORE .text; -------------------------------------------------------------------------------- /firmware/keezus/src/delay.rs: -------------------------------------------------------------------------------- 1 | //! no_std implementation of DelayMs and DelayUs for cortex-m 2 | #![no_std] 3 | 4 | extern crate embedded_hal as hal; 5 | use core::ops::Mul; 6 | 7 | use hal::prelude::*; 8 | 9 | use embedded_hal::blocking::delay::{DelayMs,DelayUs}; 10 | use embedded_time::duration::{Microseconds, Extensions}; 11 | use embedded_time::TimeInt; 12 | 13 | 14 | use rp2040_hal::pac::watchdog::tick; 15 | use rp2040_hal::{Timer}; 16 | 17 | // Todo: duplicate constant for testing: simplify this 18 | const EXTERNAL_XTAL_FREQ_HZ: u32 = 12_000_000u32; 19 | 20 | 21 | /// asm::delay based Timer 22 | pub struct RP2040TimerDelay<'a> { 23 | timer: &'a Timer, 24 | sum: i32 25 | } 26 | 27 | impl RP2040TimerDelay<'_> { 28 | pub fn new<'a>(timer: &'a Timer) -> RP2040TimerDelay 29 | { 30 | RP2040TimerDelay{ 31 | timer, 32 | sum: 0, 33 | } 34 | } 35 | } 36 | 37 | impl DelayMs for RP2040TimerDelay<'_> 38 | where 39 | U: Into + Mul, 40 | { 41 | fn delay_ms(&mut self, ms: U) { 42 | 43 | //self.timer.count_down().start(2000000_u32.microseconds()); 44 | //self.timer.count_down().wait(); 45 | let ticksPerSecond = EXTERNAL_XTAL_FREQ_HZ; 46 | 47 | let ticksPerMillisecond = ticksPerSecond/1000; 48 | 49 | let iterations = ms * 1; 50 | 51 | // Iterate rather than multiply to prevent buffer overflow 52 | for _ in 0..iterations{ 53 | cortex_m::asm::delay(ticksPerMillisecond); 54 | } 55 | } 56 | } 57 | // impl DelayUs for RP2040TimerDelay 58 | // where 59 | // U: Into, 60 | // { 61 | // fn delay_us(&mut self, us: U) { 62 | // self.timer.count_down().start(us.us()); 63 | // self.timer.count_down().wait(); 64 | // } 65 | // } -------------------------------------------------------------------------------- /firmware/keezus/src/layout.rs: -------------------------------------------------------------------------------- 1 | 2 | use keyberon::action::{k, Action, Action::*}; 3 | use keyberon::key_code::KeyCode::*; 4 | 5 | use crate::{NUM_COLS, NUM_ROWS, NUM_LAYERS}; 6 | #[allow(unused_macros)] 7 | 8 | // Shift + KeyCode 9 | macro_rules! s { 10 | ($k:ident) => { 11 | m(&[LShift, $k]) 12 | }; 13 | } 14 | 15 | #[derive(Debug, Clone, Copy, Eq, PartialEq)] 16 | pub enum CustomActions { 17 | Bootloader, 18 | } 19 | 20 | #[allow(dead_code)] 21 | const BOOTLOADER: Action = Action::Custom(CustomActions::Bootloader); 22 | 23 | #[rustfmt::skip] 24 | pub static LAYERS: keyberon::layout::Layers = [ 25 | /* QWERTY */ 26 | /* 27 | All Trans keys are placeholders to even out the layout 28 | All k(No) keys are functional 29 | */ 30 | [ 31 | [k(Q), k(W), k(E), k(R), k(T), k(Y), k(U), k(I), k(O), k(P)], 32 | [k(A), k(S), k(D), k(F), k(G), k(H), k(J), k(K), k(L), k(SColon)], 33 | [k(Z), k(X), k(C), k(V), k(B), k(N), k(M), k(Comma), k(Dot), k(Slash)], 34 | [ k(LGui), k(LAlt), Trans, Trans, k(Space), Trans, Trans, k(RAlt), k(RCtrl), k(No),], 35 | ] 36 | ]; -------------------------------------------------------------------------------- /firmware/keezus/src/main.rs: -------------------------------------------------------------------------------- 1 | #![no_main] 2 | #![no_std] 3 | 4 | mod layout; 5 | mod delay; 6 | 7 | const NUM_COLS: usize = 10; 8 | const NUM_ROWS: usize = 4; 9 | const NUM_LAYERS: usize = 1; 10 | 11 | pub struct Graphics{ 12 | x: i32, 13 | y: i32, 14 | } 15 | 16 | /// The linker will place this boot block at the start of our program image. We 17 | /// need this to help the ROM bootloader get our code up and running. 18 | #[link_section = ".boot2"] 19 | #[used] 20 | pub static BOOT2: [u8; 256] = rp2040_boot2::BOOT_LOADER_W25Q080; 21 | 22 | #[defmt::panic_handler] 23 | fn panic() -> ! { 24 | cortex_m::asm::udf() 25 | } 26 | 27 | #[rtic::app(device = rp2040_hal::pac, peripherals = true, dispatchers = [PIO0_IRQ_0, PIO0_IRQ_1, PIO1_IRQ_0])] 28 | mod app { 29 | use cortex_m::prelude::{ 30 | _embedded_hal_watchdog_Watchdog, _embedded_hal_watchdog_WatchdogEnable, 31 | }; 32 | use defmt_rtt as _; 33 | use embedded_time::duration::Extensions; 34 | use embedded_time::rate::Extensions as RateExtensions; 35 | use panic_probe as _; 36 | use rp2040_hal; 37 | use rp2040_hal::{ 38 | clocks::{init_clocks_and_plls, Clock}, 39 | gpio::{bank0::*, dynpin::DynPin}, 40 | pac::{I2C0, PIO0, RESETS, SPI0, CorePeripherals}, 41 | pio::{PIOExt, SM0, SM1}, 42 | sio::Sio, 43 | timer::{Alarm3, Timer, Alarm, Alarm2}, 44 | usb::UsbBus, 45 | watchdog::Watchdog, 46 | }; 47 | use embedded_hal::{ 48 | digital::v2::{InputPin, OutputPin}, 49 | timer::CountDown, 50 | }; 51 | 52 | // lcd traits 53 | use embedded_graphics::image::{Image, ImageRaw, ImageRawLE}; 54 | use embedded_graphics::prelude::*; 55 | use embedded_graphics::pixelcolor::Rgb565; 56 | use embedded_graphics::geometry::Point; 57 | use st7735_lcd; 58 | use st7735_lcd::Orientation; 59 | use embedded_time::rate::Hertz; 60 | 61 | use core::iter::once; 62 | 63 | use crate::delay::RP2040TimerDelay; 64 | use crate::{NUM_COLS, NUM_ROWS, NUM_LAYERS}; 65 | use crate::Graphics; 66 | 67 | 68 | use crate::layout as kb_layout; 69 | use keyberon::debounce::Debouncer; 70 | use keyberon::key_code; 71 | use keyberon::layout::{ Event, Layout}; 72 | 73 | use usb_device::class::UsbClass; 74 | use usb_device::class_prelude::UsbBusAllocator; 75 | use usb_device::device::UsbDeviceState; 76 | 77 | // hardware delay 78 | // we explicitly do NOT use any delays using SYST as 79 | // RTIC has already taken it 80 | use embedded_hal::{prelude::*, watchdog}; 81 | use asm_delay::AsmDelay; 82 | use asm_delay::bitrate::U32BitrateExt; 83 | 84 | // const SCAN_TIME_US: u32 = 1000; 85 | const SCAN_TIME_US: u32 = 2000; 86 | 87 | const DISPLAY_UPDATE_TIME_US: u32 = 1700; 88 | // const DISPLAY_UPDATE_TIME_US: u32 = 3400; 89 | 90 | const EXTERNAL_XTAL_FREQ_HZ: u32 = 12_000_000u32; 91 | static mut USB_BUS: Option> = None; 92 | 93 | const SCREEN_WIDTH: u32 = 128; 94 | const SCREEN_HEIGHT: u32 = 160; 95 | 96 | #[shared] 97 | struct Shared { 98 | usb_dev: usb_device::device::UsbDevice<'static, UsbBus>, 99 | usb_class: keyberon::Class<'static, UsbBus, ()>, 100 | timer: Timer, 101 | alarm: Alarm3, 102 | #[lock_free] 103 | matrix: keyberon::matrix::Matrix , 104 | layout: Layout, 105 | #[lock_free] 106 | debouncer: Debouncer<[[bool; NUM_COLS]; NUM_ROWS]>, 107 | #[lock_free] 108 | watchdog: Watchdog, 109 | #[lock_free] 110 | display: st7735_lcd::ST7735 , rp2040_hal::gpio::Pin> , rp2040_hal::gpio::Pin>>, 111 | displayAlarm: Alarm2, 112 | #[lock_free] 113 | graphics: Graphics 114 | } 115 | 116 | #[local] 117 | struct Local {} 118 | 119 | 120 | #[init] 121 | fn init(c: init::Context) -> (Shared, Local, init::Monotonics) { 122 | let mut resets = c.device.RESETS; 123 | let mut watchdog = Watchdog::new(c.device.WATCHDOG); 124 | watchdog.pause_on_debug(false); 125 | 126 | let clocks = init_clocks_and_plls( 127 | EXTERNAL_XTAL_FREQ_HZ, 128 | c.device.XOSC, 129 | c.device.CLOCKS, 130 | c.device.PLL_SYS, 131 | c.device.PLL_USB, 132 | &mut resets, 133 | &mut watchdog, 134 | ) 135 | .ok() 136 | .unwrap(); 137 | 138 | let sio = Sio::new(c.device.SIO); 139 | let pins = rp2040_hal::gpio::Pins::new( 140 | c.device.IO_BANK0, 141 | c.device.PADS_BANK0, 142 | sio.gpio_bank0, 143 | &mut resets, 144 | ); 145 | 146 | let mut timer = Timer::new(c.device.TIMER, &mut resets); 147 | let mut alarm = timer.alarm_3().unwrap(); 148 | let _ = alarm.schedule(SCAN_TIME_US.microseconds()); 149 | alarm.enable_interrupt(); 150 | let mut displayAlarm = timer.alarm_2().unwrap(); 151 | let _ = displayAlarm.schedule(DISPLAY_UPDATE_TIME_US.microseconds()); 152 | displayAlarm.enable_interrupt(); 153 | 154 | 155 | let (mut pio, sm0, sm1, _, _) = c.device.PIO0.split(&mut resets); 156 | 157 | let usb_bus = UsbBusAllocator::new(UsbBus::new( 158 | c.device.USBCTRL_REGS, 159 | c.device.USBCTRL_DPRAM, 160 | clocks.usb_clock, 161 | true, 162 | &mut resets, 163 | )); 164 | 165 | unsafe { 166 | USB_BUS = Some(usb_bus); 167 | } 168 | 169 | let usb_class = keyberon::new_class(unsafe { USB_BUS.as_ref().unwrap() }, ()); 170 | let usb_dev = keyberon::new_device(unsafe { USB_BUS.as_ref().unwrap() }); 171 | 172 | let matrix = keyberon::matrix::Matrix::new( 173 | [ 174 | pins.gpio27.into_pull_up_input().into(), 175 | pins.gpio26.into_pull_up_input().into(), 176 | pins.gpio22.into_pull_up_input().into(), 177 | pins.gpio21.into_pull_up_input().into(), 178 | pins.gpio20.into_pull_up_input().into(), 179 | pins.gpio4.into_pull_up_input().into(), 180 | pins.gpio3.into_pull_up_input().into(), 181 | pins.gpio2.into_pull_up_input().into(), 182 | pins.gpio1.into_pull_up_input().into(), 183 | pins.gpio0.into_pull_up_input().into(), 184 | ], 185 | [ 186 | pins.gpio5.into_push_pull_output().into(), 187 | pins.gpio6.into_push_pull_output().into(), 188 | pins.gpio7.into_push_pull_output().into(), 189 | pins.gpio8.into_push_pull_output().into(), 190 | ], 191 | ); 192 | // let matrix = keyberon::matrix::Matrix::new( 193 | // [ 194 | // pins.gpio27.into_push_pull_output().into(), 195 | // pins.gpio26.into_push_pull_output().into(), 196 | // pins.gpio22.into_push_pull_output().into(), 197 | // pins.gpio21.into_push_pull_output().into(), 198 | // pins.gpio20.into_push_pull_output().into(), 199 | // pins.gpio4.into_push_pull_output().into(), 200 | // pins.gpio3.into_push_pull_output().into(), 201 | // pins.gpio2.into_push_pull_output().into(), 202 | // pins.gpio1.into_push_pull_output().into(), 203 | // pins.gpio0.into_push_pull_output().into(), 204 | // ], 205 | // [ 206 | // pins.gpio5.into_pull_down_input().into(), 207 | // pins.gpio6.into_pull_down_input().into(), 208 | // pins.gpio7.into_pull_down_input().into(), 209 | // pins.gpio8.into_pull_down_input().into(), 210 | // ], 211 | // ); 212 | 213 | 214 | // These are implicitly used by the spi driver if they are in the correct mode 215 | let _spi_sclk = pins.gpio18.into_mode::(); 216 | let _spi_mosi = pins.gpio19.into_mode::(); 217 | //let _spi_miso = pins.gpio4.into_mode::(); 218 | let spi = rp2040_hal::Spi::<_, _, 8>::new(c.device.SPI0); 219 | 220 | let mut lcd_led = pins.gpio15.into_push_pull_output(); 221 | let dc = pins.gpio16.into_push_pull_output(); 222 | let rst = pins.gpio14.into_push_pull_output(); 223 | 224 | // Exchange the uninitialised SPI driver for an initialised one 225 | let spi = spi.init( 226 | &mut resets, 227 | clocks.peripheral_clock.freq(), 228 | Hertz::new(16_000_000u32), 229 | &embedded_hal::spi::MODE_0, 230 | ); 231 | 232 | let mut display = st7735_lcd::ST7735::new(spi, dc, rst, true, false, SCREEN_WIDTH, SCREEN_HEIGHT); 233 | 234 | 235 | // Cannot use SYST as RTIC has already taken this 236 | // https://github.com/rtic-rs/cortex-m-rtic/issues/523 237 | 238 | let mut delay = RP2040TimerDelay::new(&timer); 239 | // let mut delay = cortex_m::delay::Delay::new(core.SYST, clocks.system_clock.freq().0); 240 | 241 | 242 | // This WORKS 243 | // use cortex_m::asm::delay; 244 | // cortex_m::asm::delay(10000000_u32); 245 | // lcd_led.set_high().unwrap(); 246 | 247 | 248 | // delay.delay_ms(1000_u32); 249 | // lcd_led.set_high().unwrap(); 250 | 251 | display.init(&mut delay).unwrap(); 252 | display.set_orientation(&Orientation::PortraitSwapped).unwrap(); 253 | display.clear(Rgb565::BLACK).unwrap(); 254 | display.set_offset(0, 0); 255 | 256 | // let image_raw: ImageRawLE = 257 | // ImageRaw::new(include_bytes!("../assets/ferris.raw"), 86); 258 | 259 | // let image: Image<_> = Image::new(&image_raw, Point::new(24, 28)); 260 | 261 | // image.draw(&mut display).unwrap(); 262 | 263 | // Wait until the background and image have been rendered otherwise 264 | // the screen will show random pixels for a brief moment 265 | 266 | lcd_led.set_high().unwrap(); 267 | 268 | // start watchdog after initialization 269 | // It needs to be fairly high though to account for screen drawing etc 270 | // watchdog.start(10_000.microseconds()); 271 | watchdog.start(1_000_000.microseconds()); 272 | 273 | 274 | ( 275 | Shared { 276 | usb_dev, 277 | usb_class, 278 | timer, 279 | alarm, 280 | matrix: matrix.unwrap(), 281 | debouncer: Debouncer::new([[false; NUM_COLS]; NUM_ROWS], [[false; NUM_COLS]; NUM_ROWS], 10), 282 | layout: Layout::new(&kb_layout::LAYERS), 283 | watchdog, 284 | display, 285 | displayAlarm, 286 | graphics: crate::Graphics{x:0,y:0} 287 | }, 288 | Local {}, 289 | init::Monotonics(), 290 | ) 291 | } 292 | 293 | #[task(binds = USBCTRL_IRQ, priority = 4, shared = [usb_dev, usb_class])] 294 | fn usb_rx(c: usb_rx::Context) { 295 | let usb = c.shared.usb_dev; 296 | let kb = c.shared.usb_class; 297 | (usb, kb).lock(|usb, kb| { 298 | if usb.poll(&mut [kb]) { 299 | kb.poll(); 300 | } 301 | }); 302 | } 303 | 304 | #[task(priority = 2, capacity = 8, shared = [usb_dev, usb_class, layout])] 305 | fn handle_event(mut c: handle_event::Context, event: Option) { 306 | let mut layout = c.shared.layout; 307 | match event { 308 | None => { 309 | if let keyberon::layout::CustomEvent::Press(event) = layout.lock(|l| l.tick()) { 310 | match event { 311 | kb_layout::CustomActions::Bootloader => { 312 | rp2040_hal::rom_data::reset_to_usb_boot(0, 0); 313 | } 314 | }; 315 | } 316 | } 317 | Some(e) => { 318 | layout.lock(|l| l.event(e)); 319 | return; 320 | } 321 | } 322 | 323 | let report: key_code::KbHidReport = layout.lock(|l| l.keycodes().collect()); 324 | if !c 325 | .shared 326 | .usb_class 327 | .lock(|k| k.device_mut().set_keyboard_report(report.clone())) 328 | { 329 | return; 330 | } 331 | if c.shared.usb_dev.lock(|d| d.state()) != UsbDeviceState::Configured { 332 | return; 333 | } 334 | while let Ok(0) = c.shared.usb_class.lock(|k| k.write(report.as_bytes())) {} 335 | } 336 | 337 | #[task(binds = TIMER_IRQ_2, priority = 1, shared = [ display, displayAlarm, graphics ])] 338 | fn screen_update_irq(c: screen_update_irq::Context) { 339 | // please ignore some of this sloppy code 340 | // i am a good coder irl i pinky promise 341 | 342 | let mut alarm = c.shared.displayAlarm; 343 | 344 | let display = c.shared.display; 345 | let graphics = c.shared.graphics; 346 | 347 | let image_raw: ImageRawLE = 348 | ImageRaw::new(include_bytes!("../assets/ferris.raw"), 86); 349 | 350 | let image: Image<_> = Image::new(&image_raw, Point::new(0, graphics.y)); 351 | 352 | //display.clear(Rgb565::BLACK).unwrap(); 353 | 354 | //let style = embedded_graphics::mono_font::MonoTextStyle::new(, Rgb565::WHITE); 355 | let styleBlack = embedded_graphics::mono_font::MonoTextStyle::new(&embedded_graphics::mono_font::ascii::FONT_8X13_BOLD, Rgb565::BLACK); 356 | 357 | let textStyleWhite = embedded_graphics::mono_font::MonoTextStyleBuilder::new() 358 | .font(&embedded_graphics::mono_font::ascii::FONT_8X13_BOLD) 359 | .text_color(Rgb565::WHITE) 360 | .background_color(Rgb565::BLACK) 361 | .build(); 362 | let textStyleRed = embedded_graphics::mono_font::MonoTextStyleBuilder::new() 363 | .font(&embedded_graphics::mono_font::jis_x0201::FONT_10X20) 364 | .text_color(Rgb565::RED) 365 | .background_color(Rgb565::BLACK) 366 | .build(); 367 | 368 | let FONT_BUFFER = 13; 369 | // let NUM_LINES = 9; 370 | let NUM_LINES = 8; 371 | let TOTAL_HEIGHT = SCREEN_HEIGHT as i32+FONT_BUFFER; 372 | 373 | //embedded_graphics::text::Text::new("Hello Rust!", Point::new(20, graphics.y-1), styleBlack).draw(display); 374 | for i in 0..NUM_LINES { 375 | //graphics.y += (( i/NUM_LINES) * 200); 376 | let newY = (graphics.y+(((SCREEN_HEIGHT as i32+FONT_BUFFER)/(NUM_LINES))*i))%(SCREEN_HEIGHT as i32+FONT_BUFFER);// %(SCREEN_HEIGHT as i32+FONT_BUFFER); 377 | let style = if i == 0 {textStyleRed} else {textStyleWhite}; 378 | //let text1 = if i == 0 {"! 「システム"} else {"! SYSTEM"}; 379 | let text1 = if i == 0 {"! システム"} else {"! SYSTEM"}; 380 | //let text2 = if i == 0 {"パニック」!"} else {"PANIC !"}; 381 | let text2 = if i == 0 {"パニック!"} else {"PANIC !"}; 382 | // let text = if i%2==0 {"hocus"} else {"pocus"}; 383 | embedded_graphics::text::Text::new(text1, Point::new(0, TOTAL_HEIGHT-newY), style).draw(display); 384 | embedded_graphics::text::Text::new(text2, Point::new(70, newY), style).draw(display); 385 | } 386 | 387 | 388 | graphics.y = (graphics.y + 1)%(SCREEN_HEIGHT as i32+FONT_BUFFER); 389 | 390 | //image.draw(display).unwrap(); 391 | 392 | alarm.lock(|a| { 393 | a.clear_interrupt(); 394 | let _ = a.schedule(DISPLAY_UPDATE_TIME_US.microseconds()); 395 | }); 396 | 397 | } 398 | 399 | 400 | #[task(binds = TIMER_IRQ_3, priority = 2, shared = [ matrix, debouncer, timer, alarm, watchdog, usb_dev, usb_class])] 401 | fn scan_timer_irq(mut c: scan_timer_irq::Context) { 402 | 403 | 404 | c.shared.watchdog.feed(); 405 | 406 | for event in c.shared.debouncer.events(c.shared.matrix.get().unwrap()) { 407 | handle_event::spawn(Some(event)).unwrap(); 408 | } 409 | 410 | handle_event::spawn(None).unwrap(); 411 | 412 | let mut alarm = c.shared.alarm; 413 | 414 | alarm.lock(|a| { 415 | a.clear_interrupt(); 416 | let _ = a.schedule(SCAN_TIME_US.microseconds()); 417 | }); 418 | } 419 | } -------------------------------------------------------------------------------- /firmware/keezus/src/main_old.rs: -------------------------------------------------------------------------------- 1 | // Base taken from https://github.com/bschwind/key-ripper/blob/main/firmware/src/main.rs 2 | 3 | #![no_main] 4 | #![no_std] 5 | 6 | 7 | 8 | use core::convert::Infallible; 9 | use cortex_m::delay::Delay; 10 | use defmt::{error, info}; 11 | use defmt_rtt as _; 12 | use embedded_hal::{ 13 | digital::v2::{InputPin, OutputPin}, 14 | timer::CountDown, 15 | }; 16 | use embedded_time::duration::Extensions; 17 | // use panic_reset as _; 18 | use panic_probe as _; 19 | use rp2040_hal::{pac, usb::UsbBus, Clock, Watchdog}; 20 | use usb_device::{bus::UsbBusAllocator, device::UsbDeviceBuilder, prelude::UsbVidPid, UsbError}; 21 | use usbd_hid::{ 22 | descriptor::KeyboardReport, 23 | hid_class::{ 24 | HIDClass, HidClassSettings, HidCountryCode, HidProtocol, HidSubClass, ProtocolModeConfig, 25 | }, 26 | }; 27 | 28 | // lcd traits 29 | use embedded_graphics::image::{Image, ImageRaw, ImageRawLE}; 30 | use embedded_graphics::prelude::*; 31 | use embedded_graphics::pixelcolor::Rgb565; 32 | use st7735_lcd; 33 | use st7735_lcd::Orientation; 34 | use embedded_time::rate::Hertz; 35 | 36 | /// The linker will place this boot block at the start of our program image. We 37 | /// need this to help the ROM bootloader get our code up and running. 38 | #[link_section = ".boot2"] 39 | #[used] 40 | pub static BOOT2: [u8; 256] = rp2040_boot2::BOOT_LOADER_W25Q080; 41 | 42 | mod hid_descriptor; 43 | mod key_codes; 44 | mod key_mapping; 45 | 46 | const NUM_COLS: usize = 14; 47 | const NUM_ROWS: usize = 6; 48 | 49 | const EXTERNAL_CRYSTAL_FREQUENCY_HZ: u32 = 12_000_000; 50 | 51 | #[defmt::panic_handler] 52 | fn panic() -> ! { 53 | cortex_m::asm::udf() 54 | } 55 | 56 | #[cortex_m_rt::entry] 57 | fn main() -> ! { 58 | info!("Start of main()"); 59 | let mut pac = pac::Peripherals::take().unwrap(); 60 | let core = pac::CorePeripherals::take().unwrap(); 61 | 62 | let mut watchdog = Watchdog::new(pac.WATCHDOG); 63 | 64 | let clocks = rp2040_hal::clocks::init_clocks_and_plls( 65 | EXTERNAL_CRYSTAL_FREQUENCY_HZ, 66 | pac.XOSC, 67 | pac.CLOCKS, 68 | pac.PLL_SYS, 69 | pac.PLL_USB, 70 | &mut pac.RESETS, 71 | &mut watchdog, 72 | ) 73 | .ok() 74 | .unwrap(); 75 | 76 | // Setup USB 77 | let force_vbus_detect_bit = true; 78 | let usb_bus = UsbBus::new( 79 | pac.USBCTRL_REGS, 80 | pac.USBCTRL_DPRAM, 81 | clocks.usb_clock, 82 | force_vbus_detect_bit, 83 | &mut pac.RESETS, 84 | ); 85 | 86 | let bus_allocator = UsbBusAllocator::new(usb_bus); 87 | 88 | // Note - Going lower than this requires switch debouncing. 89 | let poll_ms = 8; 90 | let mut hid_endpoint = HIDClass::new_with_settings( 91 | &bus_allocator, 92 | hid_descriptor::KEYBOARD_REPORT_DESCRIPTOR, 93 | poll_ms, 94 | HidClassSettings { 95 | subclass: HidSubClass::NoSubClass, 96 | protocol: HidProtocol::Keyboard, 97 | config: ProtocolModeConfig::ForceReport, 98 | // locale: HidCountryCode::NotSupported, 99 | locale: HidCountryCode::US, 100 | }, 101 | ); 102 | 103 | info!("USB initialized"); 104 | 105 | // https://github.com/obdev/v-usb/blob/7a28fdc685952412dad2b8842429127bc1cf9fa7/usbdrv/USB-IDs-for-free.txt#L128 106 | let mut keyboard_usb_device = UsbDeviceBuilder::new(&bus_allocator, UsbVidPid(0x16c0, 0x27db)) 107 | .manufacturer("bschwind") 108 | .product("key ripper") 109 | .build(); 110 | 111 | // Get the GPIO peripherals. 112 | let sio = rp2040_hal::Sio::new(pac.SIO); 113 | 114 | let pins = 115 | rp2040_hal::gpio::Pins::new(pac.IO_BANK0, pac.PADS_BANK0, sio.gpio_bank0, &mut pac.RESETS); 116 | 117 | // Set up keyboard matrix pins. 118 | let rows: &[&dyn InputPin] = &[ 119 | &pins.gpio5.into_pull_down_input(), 120 | &pins.gpio6.into_pull_down_input(), 121 | &pins.gpio7.into_pull_down_input(), 122 | &pins.gpio8.into_pull_down_input(), 123 | ]; 124 | 125 | let cols: &mut [&mut dyn OutputPin] = &mut [ 126 | &mut pins.gpio27.into_push_pull_output(), 127 | &mut pins.gpio26.into_push_pull_output(), 128 | &mut pins.gpio22.into_push_pull_output(), 129 | &mut pins.gpio21.into_push_pull_output(), 130 | &mut pins.gpio20.into_push_pull_output(), 131 | &mut pins.gpio4.into_push_pull_output(), 132 | &mut pins.gpio3.into_push_pull_output(), 133 | &mut pins.gpio2.into_push_pull_output(), 134 | &mut pins.gpio1.into_push_pull_output(), 135 | &mut pins.gpio0.into_push_pull_output(), 136 | ]; 137 | 138 | // Timer-based resources. 139 | let mut delay = cortex_m::delay::Delay::new(core.SYST, clocks.system_clock.freq().0); 140 | 141 | let timer = rp2040_hal::Timer::new(pac.TIMER, &mut pac.RESETS); 142 | let mut scan_countdown = timer.count_down(); 143 | 144 | // Start on a 500ms countdown so the USB endpoint writes don't block. 145 | scan_countdown.start(500.milliseconds()); 146 | 147 | //// Start the TFT screen 148 | 149 | // These are implicitly used by the spi driver if they are in the correct mode 150 | let _spi_sclk = pins.gpio18.into_mode::(); 151 | let _spi_mosi = pins.gpio19.into_mode::(); 152 | //let _spi_miso = pins.gpio4.into_mode::(); 153 | let spi = rp2040_hal::Spi::<_, _, 8>::new(pac.SPI0); 154 | 155 | let mut lcd_led = pins.gpio15.into_push_pull_output(); 156 | let dc = pins.gpio16.into_push_pull_output(); 157 | let rst = pins.gpio14.into_push_pull_output(); 158 | 159 | // Exchange the uninitialised SPI driver for an initialised one 160 | let spi = spi.init( 161 | &mut pac.RESETS, 162 | clocks.peripheral_clock.freq(), 163 | Hertz::new(16_000_000u32), 164 | &embedded_hal::spi::MODE_0, 165 | ); 166 | 167 | 168 | let mut disp = st7735_lcd::ST7735::new(spi, dc, rst, true, false, 128, 160); 169 | 170 | disp.init(&mut delay).unwrap(); 171 | disp.set_orientation(&Orientation::PortraitSwapped).unwrap(); 172 | disp.clear(Rgb565::BLACK).unwrap(); 173 | disp.set_offset(0, 25); 174 | 175 | let image_raw: ImageRawLE = 176 | ImageRaw::new(include_bytes!("../assets/ferris.raw"), 86); 177 | 178 | let image: Image<_> = Image::new(&image_raw, Point::new(24, 28)); 179 | 180 | image.draw(&mut disp).unwrap(); 181 | 182 | // Wait until the background and image have been rendered otherwise 183 | // the screen will show random pixels for a brief moment 184 | lcd_led.set_high().unwrap(); 185 | 186 | info!("Start main loop"); 187 | 188 | // Main keyboard polling loop. 189 | loop { 190 | keyboard_usb_device.poll(&mut [&mut hid_endpoint]); 191 | 192 | if scan_countdown.wait().is_ok() { 193 | // Scan the keys and send a report. 194 | let matrix = scan_keys(rows, cols, &mut delay); 195 | let report = report_from_matrix(&matrix); 196 | 197 | match hid_endpoint.push_input(&report) { 198 | Ok(_) => { 199 | scan_countdown.start(8.milliseconds()); 200 | }, 201 | Err(err) => match err { 202 | UsbError::WouldBlock => info!("UsbError::WouldBlock"), 203 | UsbError::ParseError => error!("UsbError::ParseError"), 204 | UsbError::BufferOverflow => error!("UsbError::BufferOverflow"), 205 | UsbError::EndpointOverflow => error!("UsbError::EndpointOverflow"), 206 | UsbError::EndpointMemoryOverflow => error!("UsbError::EndpointMemoryOverflow"), 207 | UsbError::InvalidEndpoint => error!("UsbError::InvalidEndpoint"), 208 | UsbError::Unsupported => error!("UsbError::Unsupported"), 209 | UsbError::InvalidState => error!("UsbError::InvalidState"), 210 | }, 211 | } 212 | } 213 | 214 | hid_endpoint.pull_raw_output(&mut [0; 64]).ok(); 215 | } 216 | } 217 | 218 | fn scan_keys( 219 | rows: &[&dyn InputPin], 220 | columns: &mut [&mut dyn embedded_hal::digital::v2::OutputPin], 221 | delay: &mut Delay, 222 | ) -> [[bool; NUM_ROWS]; NUM_COLS] { 223 | let mut matrix = [[false; NUM_ROWS]; NUM_COLS]; 224 | 225 | for (gpio_col, matrix_col) in columns.iter_mut().zip(matrix.iter_mut()) { 226 | gpio_col.set_high().unwrap(); 227 | delay.delay_us(10); 228 | 229 | for (gpio_row, matrix_row) in rows.iter().zip(matrix_col.iter_mut()) { 230 | *matrix_row = gpio_row.is_high().unwrap(); 231 | } 232 | 233 | gpio_col.set_low().unwrap(); 234 | delay.delay_us(10); 235 | } 236 | 237 | matrix 238 | } 239 | 240 | fn report_from_matrix(matrix: &[[bool; NUM_ROWS]; NUM_COLS]) -> KeyboardReport { 241 | let mut keycodes = [0u8; 6]; 242 | let mut keycode_index = 0; 243 | let mut modifier = 0; 244 | 245 | let mut push_keycode = |key| { 246 | if keycode_index < keycodes.len() { 247 | keycodes[keycode_index] = key; 248 | keycode_index += 1; 249 | } 250 | }; 251 | 252 | // let layer_mapping = if matrix[0][5] { 253 | // key_mapping::FN_LAYER_MAPPING 254 | // } else { 255 | // key_mapping::NORMAL_LAYER_MAPPING 256 | // }; 257 | layer_mapping = key_mapping::NORMAL_LAYER_MAPPING; 258 | 259 | for (matrix_column, mapping_column) in matrix.iter().zip(layer_mapping) { 260 | for (key_pressed, mapping_row) in matrix_column.iter().zip(mapping_column) { 261 | if *key_pressed { 262 | if let Some(bitmask) = mapping_row.modifier_bitmask() { 263 | modifier |= bitmask; 264 | } else { 265 | push_keycode(mapping_row as u8); 266 | } 267 | } 268 | } 269 | } 270 | 271 | KeyboardReport { modifier, reserved: 0, leds: 0, keycodes } 272 | } -------------------------------------------------------------------------------- /firmware/sporewoh_keezyboost40_default.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/firmware/sporewoh_keezyboost40_default.uf2 -------------------------------------------------------------------------------- /images/keezyboost40pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/images/keezyboost40pcb.jpg -------------------------------------------------------------------------------- /images/keezyboost40splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/images/keezyboost40splash.jpg -------------------------------------------------------------------------------- /outlines/227-2278364_raspberry-pi-filled-icon-raspberry-pi-logo-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/outlines/227-2278364_raspberry-pi-filled-icon-raspberry-pi-logo-png.png -------------------------------------------------------------------------------- /outlines/plate-2022-07-10T20 48 18.525Z.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outlines/plate_outline.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | HEADER 5 | 9 6 | $INSUNITS 7 | 70 8 | 4 9 | 9 10 | $ACADVER 11 | 1 12 | AC1014 13 | 9 14 | $HANDSEED 15 | 5 16 | FFFF 17 | 0 18 | ENDSEC 19 | 0 20 | SECTION 21 | 2 22 | TABLES 23 | 0 24 | TABLE 25 | 2 26 | VPORT 27 | 5 28 | 8 29 | 100 30 | AcDbSymbolTable 31 | 0 32 | ENDTAB 33 | 0 34 | TABLE 35 | 2 36 | LTYPE 37 | 5 38 | 5 39 | 100 40 | AcDbSymbolTable 41 | 0 42 | LTYPE 43 | 5 44 | 14 45 | 100 46 | AcDbSymbolTableRecord 47 | 100 48 | AcDbLinetypeTableRecord 49 | 2 50 | BYBLOCK 51 | 70 52 | 0 53 | 0 54 | LTYPE 55 | 5 56 | 15 57 | 100 58 | AcDbSymbolTableRecord 59 | 100 60 | AcDbLinetypeTableRecord 61 | 2 62 | BYLAYER 63 | 70 64 | 0 65 | 0 66 | ENDTAB 67 | 0 68 | TABLE 69 | 2 70 | LAYER 71 | 5 72 | 2 73 | 100 74 | AcDbSymbolTable 75 | 70 76 | 2 77 | 0 78 | LAYER 79 | 5 80 | 50 81 | 100 82 | AcDbSymbolTableRecord 83 | 100 84 | AcDbLayerTableRecord 85 | 2 86 | 0 87 | 70 88 | 0 89 | 6 90 | CONTINUOUS 91 | 0 92 | ENDTAB 93 | 0 94 | TABLE 95 | 2 96 | STYLE 97 | 5 98 | 3 99 | 100 100 | AcDbSymbolTable 101 | 70 102 | 1 103 | 0 104 | STYLE 105 | 5 106 | 11 107 | 100 108 | AcDbSymbolTableRecord 109 | 100 110 | AcDbTextStyleTableRecord 111 | 2 112 | STANDARD 113 | 70 114 | 0 115 | 0 116 | ENDTAB 117 | 0 118 | TABLE 119 | 2 120 | VIEW 121 | 5 122 | 6 123 | 100 124 | AcDbSymbolTable 125 | 70 126 | 0 127 | 0 128 | ENDTAB 129 | 0 130 | TABLE 131 | 2 132 | UCS 133 | 5 134 | 7 135 | 100 136 | AcDbSymbolTable 137 | 70 138 | 0 139 | 0 140 | ENDTAB 141 | 0 142 | TABLE 143 | 2 144 | APPID 145 | 5 146 | 9 147 | 100 148 | AcDbSymbolTable 149 | 70 150 | 2 151 | 0 152 | APPID 153 | 5 154 | 12 155 | 100 156 | AcDbSymbolTableRecord 157 | 100 158 | AcDbRegAppTableRecord 159 | 2 160 | ACAD 161 | 70 162 | 0 163 | 0 164 | ENDTAB 165 | 0 166 | TABLE 167 | 2 168 | DIMSTYLE 169 | 5 170 | A 171 | 100 172 | AcDbSymbolTable 173 | 70 174 | 1 175 | 0 176 | ENDTAB 177 | 0 178 | TABLE 179 | 2 180 | BLOCK_RECORD 181 | 5 182 | 1 183 | 100 184 | AcDbSymbolTable 185 | 70 186 | 1 187 | 0 188 | BLOCK_RECORD 189 | 5 190 | 1F 191 | 100 192 | AcDbSymbolTableRecord 193 | 100 194 | AcDbBlockTableRecord 195 | 2 196 | *MODEL_SPACE 197 | 0 198 | BLOCK_RECORD 199 | 5 200 | 1B 201 | 100 202 | AcDbSymbolTableRecord 203 | 100 204 | AcDbBlockTableRecord 205 | 2 206 | *PAPER_SPACE 207 | 0 208 | ENDTAB 209 | 0 210 | ENDSEC 211 | 0 212 | SECTION 213 | 2 214 | BLOCKS 215 | 0 216 | BLOCK 217 | 5 218 | 20 219 | 100 220 | AcDbEntity 221 | 100 222 | AcDbBlockBegin 223 | 2 224 | *MODEL_SPACE 225 | 0 226 | ENDBLK 227 | 5 228 | 21 229 | 100 230 | AcDbEntity 231 | 100 232 | AcDbBlockEnd 233 | 0 234 | BLOCK 235 | 5 236 | 1C 237 | 100 238 | AcDbEntity 239 | 100 240 | AcDbBlockBegin 241 | 2 242 | *PAPER_SPACE 243 | 0 244 | ENDBLK 245 | 5 246 | 1D 247 | 100 248 | AcDbEntity 249 | 100 250 | AcDbBlockEnd 251 | 0 252 | ENDSEC 253 | 0 254 | SECTION 255 | 2 256 | ENTITIES 257 | 0 258 | LWPOLYLINE 259 | 5 260 | 100 261 | 100 262 | AcDbEntity 263 | 8 264 | 0 265 | 100 266 | AcDbPolyline 267 | 90 268 | 9 269 | 70 270 | 1 271 | 43 272 | 0.0 273 | 10 274 | 35.399999999999999 275 | 20 276 | 2.0000000000000018 277 | 10 278 | 35.399999999999999 279 | 20 280 | 65.599999999999994 281 | 42 282 | 0.41421356237309437 283 | 10 284 | 33.399999999999999 285 | 20 286 | 67.599999999999994 287 | 10 288 | 2.0000000000000062 289 | 20 290 | 67.599999999999994 291 | 42 292 | 0.4142135623730937 293 | 10 294 | -4.4408920985006262e-15 295 | 20 296 | 65.599999999999994 297 | 10 298 | 0 299 | 20 300 | 2.0000000000000018 301 | 42 302 | 0.4142135623730957 303 | 10 304 | 2.0000000000000018 305 | 20 306 | 0 307 | 10 308 | 32.600000000000001 309 | 20 310 | 0 311 | 10 312 | 33.399999999999999 313 | 20 314 | 0 315 | 42 316 | 0.41421356237309492 317 | 0 318 | CIRCLE 319 | 5 320 | 101 321 | 100 322 | AcDbEntity 323 | 8 324 | 0 325 | 100 326 | AcDbCircle 327 | 10 328 | 2.7999999999999998 329 | 20 330 | 2.2999999999999998 331 | 30 332 | 0 333 | 40 334 | 1.1000000000000001 335 | 210 336 | 0 337 | 220 338 | 0 339 | 230 340 | 1 341 | 0 342 | CIRCLE 343 | 5 344 | 102 345 | 100 346 | AcDbEntity 347 | 8 348 | 0 349 | 100 350 | AcDbCircle 351 | 10 352 | 32.600000000000001 353 | 20 354 | 2.2999999999999998 355 | 30 356 | 0 357 | 40 358 | 1.0999999999999999 359 | 210 360 | 0 361 | 220 362 | 0 363 | 230 364 | 1 365 | 0 366 | CIRCLE 367 | 5 368 | 103 369 | 100 370 | AcDbEntity 371 | 8 372 | 0 373 | 100 374 | AcDbCircle 375 | 10 376 | 2.7999999999999998 377 | 20 378 | 65.299999999999997 379 | 30 380 | 0 381 | 40 382 | 1.1000000000000005 383 | 210 384 | 0 385 | 220 386 | 0 387 | 230 388 | 1 389 | 0 390 | CIRCLE 391 | 5 392 | 104 393 | 100 394 | AcDbEntity 395 | 8 396 | 0 397 | 100 398 | AcDbCircle 399 | 10 400 | 32.600000000000001 401 | 20 402 | 65.299999999999997 403 | 30 404 | 0 405 | 40 406 | 1.0999999999999988 407 | 210 408 | 0 409 | 220 410 | 0 411 | 230 412 | 1 413 | 0 414 | ENDSEC 415 | 0 416 | SECTION 417 | 2 418 | OBJECTS 419 | 0 420 | DICTIONARY 421 | 5 422 | C 423 | 100 424 | AcDbDictionary 425 | 3 426 | ACAD_GROUP 427 | 350 428 | D 429 | 3 430 | ACAD_MLINESTYLE 431 | 350 432 | 17 433 | 0 434 | DICTIONARY 435 | 5 436 | D 437 | 100 438 | AcDbDictionary 439 | 0 440 | DICTIONARY 441 | 5 442 | 1A 443 | 330 444 | C 445 | 100 446 | AcDbDictionary 447 | 0 448 | DICTIONARY 449 | 5 450 | 17 451 | 100 452 | AcDbDictionary 453 | 0 454 | ENDSEC 455 | 0 456 | EOF 457 | -------------------------------------------------------------------------------- /outlines/plate_outline.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 32 | plate_outline.dxf - scale = 1.0, origin = (0.0, 0.0), method = manual 34 | 36 | 42 | 46 | 47 | 54 | 60 | 66 | 72 | 73 | 75 | 77 | 78 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /pcb/keezyboost40/Printing Print Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/pcb/keezyboost40/Printing Print Schematic.pdf -------------------------------------------------------------------------------- /pcb/keezyboost40/fp-info-cache: -------------------------------------------------------------------------------- 1 | 3295166796759 2 | Audio_Module 3 | Reverb_BTDR-1H 4 | Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) 5 | audio belton reverb 6 | 0 7 | 7 8 | 7 9 | Audio_Module 10 | Reverb_BTDR-1V 11 | Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) 12 | audio belton reverb 13 | 0 14 | 7 15 | 7 16 | -------------------------------------------------------------------------------- /pcb/keezyboost40/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "kicub_keyboard_extras")(type "KiCad")(uri "/Users/chriz/Documents/CAD/keezyboost40/pcb/sporewoh-keyboard-extras/Library.pretty/kicub_keyboard_extras.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /pcb/keezyboost40/gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisChrisLoLo/keezyboost40/b49c7f98142f642783c6d620a3df6eaf625107f3/pcb/keezyboost40/gerbers.zip -------------------------------------------------------------------------------- /pcb/keezyboost40/keezyboost40.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 36, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": true, 6 | "hidden_nets": [ 7 | "gnd", 8 | "r1", 9 | "Net-(D1-Pad2)", 10 | "Net-(D2-Pad2)", 11 | "Net-(D3-Pad2)", 12 | "Net-(D4-Pad2)", 13 | "Net-(D5-Pad2)", 14 | "Net-(D6-Pad2)", 15 | "Net-(D7-Pad2)", 16 | "Net-(D8-Pad2)", 17 | "Net-(D9-Pad2)", 18 | "Net-(D10-Pad2)", 19 | "r2", 20 | "Net-(D11-Pad2)", 21 | "Net-(D12-Pad2)", 22 | "Net-(D13-Pad2)", 23 | "Net-(D14-Pad2)", 24 | "Net-(D15-Pad2)", 25 | "Net-(D16-Pad2)", 26 | "Net-(D17-Pad2)", 27 | "Net-(D18-Pad2)", 28 | "Net-(D19-Pad2)", 29 | "Net-(D20-Pad2)", 30 | "r3", 31 | "Net-(D21-Pad2)", 32 | "Net-(D22-Pad2)", 33 | "Net-(D23-Pad2)", 34 | "Net-(D24-Pad2)", 35 | "Net-(D25-Pad2)", 36 | "Net-(D26-Pad2)", 37 | "Net-(D27-Pad2)", 38 | "Net-(D28-Pad2)", 39 | "Net-(D29-Pad2)", 40 | "Net-(D30-Pad2)", 41 | "r4", 42 | "Net-(D31-Pad2)", 43 | "Net-(D32-Pad2)", 44 | "Net-(D33-Pad2)", 45 | "Net-(D34-Pad2)", 46 | "Net-(D35-Pad2)", 47 | "Net-(D36-Pad2)", 48 | "Net-(D37-Pad2)", 49 | "Net-(D38-Pad2)", 50 | "Net-(D39-Pad2)", 51 | "Net-(D40-Pad2)", 52 | "Net-(SW41-Pad2)", 53 | "c1", 54 | "c2", 55 | "c3", 56 | "c4", 57 | "c5", 58 | "c6", 59 | "c7", 60 | "c8", 61 | "c9", 62 | "c10", 63 | "lcd_led", 64 | "dc", 65 | "cs", 66 | "sck", 67 | "sda", 68 | "vcc" 69 | ], 70 | "high_contrast_mode": 0, 71 | "net_color_mode": 1, 72 | "opacity": { 73 | "pads": 1.0, 74 | "tracks": 1.0, 75 | "vias": 1.0, 76 | "zones": 0.6 77 | }, 78 | "ratsnest_display_mode": 0, 79 | "selection_filter": { 80 | "dimensions": true, 81 | "footprints": true, 82 | "graphics": true, 83 | "keepouts": true, 84 | "lockedItems": true, 85 | "otherItems": true, 86 | "pads": true, 87 | "text": true, 88 | "tracks": true, 89 | "vias": true, 90 | "zones": true 91 | }, 92 | "visible_items": [ 93 | 0, 94 | 1, 95 | 2, 96 | 3, 97 | 4, 98 | 5, 99 | 8, 100 | 9, 101 | 10, 102 | 11, 103 | 12, 104 | 13, 105 | 14, 106 | 15, 107 | 16, 108 | 17, 109 | 18, 110 | 19, 111 | 20, 112 | 21, 113 | 22, 114 | 23, 115 | 24, 116 | 25, 117 | 26, 118 | 27, 119 | 28, 120 | 29, 121 | 30, 122 | 32, 123 | 33, 124 | 34, 125 | 35, 126 | 36 127 | ], 128 | "visible_layers": "fffffff_ffffffff", 129 | "zone_display_mode": 0 130 | }, 131 | "meta": { 132 | "filename": "keezyboost40.kicad_prl", 133 | "version": 3 134 | }, 135 | "project": { 136 | "files": [] 137 | } 138 | } 139 | -------------------------------------------------------------------------------- /pcb/keezyboost40/keezyboost40.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.09999999999999999, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.15, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 3.2, 37 | "height": 4.0, 38 | "width": 4.0 39 | }, 40 | "silk_line_width": 0.15, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "ignore", 83 | "silk_overlap": "ignore", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.0, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "solder_mask_clearance": 0.0, 112 | "solder_mask_min_width": 0.0, 113 | "use_height_for_length_calcs": true 114 | }, 115 | "track_widths": [], 116 | "via_dimensions": [], 117 | "zones_allow_external_fillets": false, 118 | "zones_use_no_outline": true 119 | }, 120 | "layer_presets": [] 121 | }, 122 | "boards": [], 123 | "cvpcb": { 124 | "equivalence_files": [] 125 | }, 126 | "erc": { 127 | "erc_exclusions": [], 128 | "meta": { 129 | "version": 0 130 | }, 131 | "pin_map": [ 132 | [ 133 | 0, 134 | 0, 135 | 0, 136 | 0, 137 | 0, 138 | 0, 139 | 1, 140 | 0, 141 | 0, 142 | 0, 143 | 0, 144 | 2 145 | ], 146 | [ 147 | 0, 148 | 2, 149 | 0, 150 | 1, 151 | 0, 152 | 0, 153 | 1, 154 | 0, 155 | 2, 156 | 2, 157 | 2, 158 | 2 159 | ], 160 | [ 161 | 0, 162 | 0, 163 | 0, 164 | 0, 165 | 0, 166 | 0, 167 | 1, 168 | 0, 169 | 1, 170 | 0, 171 | 1, 172 | 2 173 | ], 174 | [ 175 | 0, 176 | 1, 177 | 0, 178 | 0, 179 | 0, 180 | 0, 181 | 1, 182 | 1, 183 | 2, 184 | 1, 185 | 1, 186 | 2 187 | ], 188 | [ 189 | 0, 190 | 0, 191 | 0, 192 | 0, 193 | 0, 194 | 0, 195 | 1, 196 | 0, 197 | 0, 198 | 0, 199 | 0, 200 | 2 201 | ], 202 | [ 203 | 0, 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 0, 214 | 2 215 | ], 216 | [ 217 | 1, 218 | 1, 219 | 1, 220 | 1, 221 | 1, 222 | 0, 223 | 1, 224 | 1, 225 | 1, 226 | 1, 227 | 1, 228 | 2 229 | ], 230 | [ 231 | 0, 232 | 0, 233 | 0, 234 | 1, 235 | 0, 236 | 0, 237 | 1, 238 | 0, 239 | 0, 240 | 0, 241 | 0, 242 | 2 243 | ], 244 | [ 245 | 0, 246 | 2, 247 | 1, 248 | 2, 249 | 0, 250 | 0, 251 | 1, 252 | 0, 253 | 2, 254 | 2, 255 | 2, 256 | 2 257 | ], 258 | [ 259 | 0, 260 | 2, 261 | 0, 262 | 1, 263 | 0, 264 | 0, 265 | 1, 266 | 0, 267 | 2, 268 | 0, 269 | 0, 270 | 2 271 | ], 272 | [ 273 | 0, 274 | 2, 275 | 1, 276 | 1, 277 | 0, 278 | 0, 279 | 1, 280 | 0, 281 | 2, 282 | 0, 283 | 0, 284 | 2 285 | ], 286 | [ 287 | 2, 288 | 2, 289 | 2, 290 | 2, 291 | 2, 292 | 2, 293 | 2, 294 | 2, 295 | 2, 296 | 2, 297 | 2, 298 | 2 299 | ] 300 | ], 301 | "rule_severities": { 302 | "bus_definition_conflict": "error", 303 | "bus_entry_needed": "error", 304 | "bus_label_syntax": "error", 305 | "bus_to_bus_conflict": "error", 306 | "bus_to_net_conflict": "error", 307 | "different_unit_footprint": "error", 308 | "different_unit_net": "error", 309 | "duplicate_reference": "error", 310 | "duplicate_sheet_names": "error", 311 | "extra_units": "error", 312 | "global_label_dangling": "warning", 313 | "hier_label_mismatch": "error", 314 | "label_dangling": "error", 315 | "lib_symbol_issues": "warning", 316 | "multiple_net_names": "warning", 317 | "net_not_bus_member": "warning", 318 | "no_connect_connected": "warning", 319 | "no_connect_dangling": "warning", 320 | "pin_not_connected": "error", 321 | "pin_not_driven": "error", 322 | "pin_to_pin": "warning", 323 | "power_pin_not_driven": "error", 324 | "similar_labels": "warning", 325 | "unannotated": "error", 326 | "unit_value_mismatch": "error", 327 | "unresolved_variable": "error", 328 | "wire_dangling": "error" 329 | } 330 | }, 331 | "libraries": { 332 | "pinned_footprint_libs": [], 333 | "pinned_symbol_libs": [] 334 | }, 335 | "meta": { 336 | "filename": "keezyboost40.kicad_pro", 337 | "version": 1 338 | }, 339 | "net_settings": { 340 | "classes": [ 341 | { 342 | "bus_width": 12.0, 343 | "clearance": 0.2, 344 | "diff_pair_gap": 0.25, 345 | "diff_pair_via_gap": 0.25, 346 | "diff_pair_width": 0.2, 347 | "line_style": 0, 348 | "microvia_diameter": 0.3, 349 | "microvia_drill": 0.1, 350 | "name": "Default", 351 | "pcb_color": "rgba(0, 0, 0, 0.000)", 352 | "schematic_color": "rgba(0, 0, 0, 0.000)", 353 | "track_width": 0.25, 354 | "via_diameter": 0.8, 355 | "via_drill": 0.4, 356 | "wire_width": 6.0 357 | } 358 | ], 359 | "meta": { 360 | "version": 2 361 | }, 362 | "net_colors": null 363 | }, 364 | "pcbnew": { 365 | "last_paths": { 366 | "gencad": "", 367 | "idf": "", 368 | "netlist": "", 369 | "specctra_dsn": "", 370 | "step": "", 371 | "vrml": "" 372 | }, 373 | "page_layout_descr_file": "" 374 | }, 375 | "schematic": { 376 | "annotate_start_num": 0, 377 | "drawing": { 378 | "default_line_thickness": 6.0, 379 | "default_text_size": 50.0, 380 | "field_names": [], 381 | "intersheets_ref_own_page": false, 382 | "intersheets_ref_prefix": "", 383 | "intersheets_ref_short": false, 384 | "intersheets_ref_show": false, 385 | "intersheets_ref_suffix": "", 386 | "junction_size_choice": 3, 387 | "label_size_ratio": 0.375, 388 | "pin_symbol_size": 25.0, 389 | "text_offset_ratio": 0.15 390 | }, 391 | "legacy_lib_dir": "", 392 | "legacy_lib_list": [], 393 | "meta": { 394 | "version": 1 395 | }, 396 | "net_format_name": "", 397 | "ngspice": { 398 | "fix_include_paths": true, 399 | "fix_passive_vals": false, 400 | "meta": { 401 | "version": 0 402 | }, 403 | "model_mode": 0, 404 | "workbook_filename": "" 405 | }, 406 | "page_layout_descr_file": "", 407 | "plot_directory": "", 408 | "spice_adjust_passive_values": false, 409 | "spice_external_command": "spice \"%I\"", 410 | "subpart_first_id": 65, 411 | "subpart_id_separator": 0 412 | }, 413 | "sheets": [ 414 | [ 415 | "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", 416 | "" 417 | ] 418 | ], 419 | "text_variables": {} 420 | } 421 | -------------------------------------------------------------------------------- /pcb/keezyboost40/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "MCU_RaspberryPi_and_Boards")(type "KiCad")(uri "${KIPRJMOD}/../KiCad-RP-Pico/RP-Pico Libraries/MCU_RaspberryPi_and_Boards.kicad_sym")(options "")(descr "")) 3 | (lib (name "keyboard-extras")(type "KiCad")(uri "/Users/chriz/Documents/CAD/keezyboost40/pcb/sporewoh-keyboard-extras/keyboard-extras.kicad_sym")(options "")(descr "")) 4 | (lib (name "sporewoh_keyboard_extras")(type "KiCad")(uri "/Users/chriz/Documents/CAD/keezyboost40/pcb/sporewoh-keyboard-extras/sporewoh_keyboard_extras.kicad_sym")(options "")(descr "")) 5 | (lib (name "kicub_keyboard_extras")(type "KiCad")(uri "/Users/chriz/Documents/CAD/keezyboost40/pcb/sporewoh-keyboard-extras/kicub_keyboard_extras.kicad_sym")(options "")(descr "")) 6 | ) 7 | -------------------------------------------------------------------------------- /pcb/kicad-plugins/horizon-board-producer.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2022 Steven Karrmann 2 | # SPDX-License-Identifier: MIT 3 | 4 | # Horizon Board Producer Plugin Usage: 5 | # 1. Copy this Python file (or create a symbolic link) in the KiCad plugins directory 6 | # * See: https://dev-docs.kicad.org/en/python/pcbnew/#_typical_plugin_structure 7 | # 2. Open KiCad Pcbnew, and open the main board .kicad_pcb file 8 | # 3. In Pcbnew, click "Tools > External Plugins > Horizon Board Producer" 9 | # 4. If successful, 3 gerber zip files are created in the gerbers folder: main board, top plate, and bottom plate 10 | 11 | import pcbnew, wx, os, shutil, re 12 | 13 | class HorizonBoardProducerPlugin(pcbnew.ActionPlugin): 14 | def defaults(self): 15 | self.name = "Horizon Board Producer Rev2.3 (KiCad 6)" 16 | self.category = "Gerbers, plates, generator" 17 | self.description = "Generates top plate and bottom plate PCBs, and then creates gerber files for the main, top plate, and bottom plate PCBs" 18 | 19 | def Run(self): 20 | HorizonBoardProducerPlugin.produce() 21 | 22 | @staticmethod 23 | def __create_gerbers(board, path): 24 | """ 25 | Creates Gerber files for a KiCad board and outputs them to the specified path. 26 | Args: 27 | board (pcbnew.BOARD): The board for which to generate Gerber files. 28 | path (str): File system path where Gerber files will be created. 29 | """ 30 | plot_controller = pcbnew.PLOT_CONTROLLER(board) 31 | plot_options = plot_controller.GetPlotOptions() 32 | 33 | # Set General Options: 34 | plot_options.SetOutputDirectory(path) 35 | 36 | plot_options.SetPlotFrameRef(False) # "plot border and title block" 37 | plot_options.SetPlotValue(True) 38 | plot_options.SetPlotReference(True) 39 | plot_options.SetPlotInvisibleText(False) 40 | plot_options.SetExcludeEdgeLayer(True) 41 | plot_options.SetSketchPadsOnFabLayers(False) 42 | plot_options.SetPlotViaOnMaskLayer(False) # "do not tent vias" 43 | 44 | plot_options.SetDrillMarksType(pcbnew.PCB_PLOT_PARAMS.NO_DRILL_SHAPE) 45 | plot_options.SetScale(1.0) 46 | plot_options.SetPlotMode(1) # Filled 47 | plot_options.SetUseAuxOrigin(False) 48 | plot_options.SetMirror(False) 49 | plot_options.SetNegative(False) 50 | # Note: "check zone fills before plotting" does not seem to be available in API 51 | 52 | plot_options.SetUseGerberProtelExtensions(True) 53 | plot_options.SetCreateGerberJobFile(False) 54 | plot_options.SetSubtractMaskFromSilk(True) 55 | plot_options.SetGerberPrecision(6) # "coordinate format: 4.6, unit mm" 56 | plot_options.SetUseGerberX2format(False) 57 | plot_options.SetIncludeGerberNetlistInfo(False) 58 | 59 | layers = [ 60 | ( 'F.Cu', pcbnew.F_Cu, 'Front Copper' ), 61 | ( 'B.Cu', pcbnew.B_Cu, 'Back Copper' ), 62 | ( 'F.SilkS', pcbnew.F_SilkS, 'Front SilkScreen' ), 63 | ( 'B.SilkS', pcbnew.B_SilkS, 'Back SilkScreen' ), 64 | ( 'F.Mask', pcbnew.F_Mask, 'Front Mask' ), 65 | ( 'B.Mask', pcbnew.B_Mask, 'Back Mask' ), 66 | ( 'Edge.Cuts', pcbnew.Edge_Cuts, 'Edges' ) 67 | ] 68 | 69 | for layer in layers: 70 | plot_controller.SetLayer(layer[1]) 71 | plot_controller.OpenPlotfile(layer[0], pcbnew.PLOT_FORMAT_GERBER, layer[2]) 72 | plot_controller.PlotLayer() 73 | 74 | plot_controller.ClosePlot() 75 | 76 | @staticmethod 77 | def __create_drill_file(board, path): 78 | """ 79 | Creates drill files for a KiCad board and outputs them to the specified path. 80 | Args: 81 | board (pcbnew.BOARD): The board for which to generate Gerber files. 82 | path (str): File system path where drill files will be created. 83 | """ 84 | format = { 85 | 'metric': True, 86 | 'zero_format': pcbnew.GENDRILL_WRITER_BASE.DECIMAL_FORMAT, 87 | 'left_digits': 3, 88 | 'right_digits': 3 89 | } 90 | 91 | options = { 92 | 'mirror_y_axis': False, 93 | 'minimal_header': False, 94 | 'offset': pcbnew.wxPoint(0,0), 95 | 'pth_npth_single_file': False 96 | } 97 | 98 | drill_writer = pcbnew.EXCELLON_WRITER(board) 99 | drill_writer.SetFormat(format['metric'], format['zero_format'], format['left_digits'], format['right_digits']) 100 | drill_writer.SetOptions(options['mirror_y_axis'], options['minimal_header'], options['offset'], options['pth_npth_single_file']) 101 | drill_writer.SetRouteModeForOvalHoles(False) # JLCPCB requests (Oval Holes Drill Mode -> use alternate drill mode https://support.jlcpcb.com/article/149-how-to-generate-gerber-and-drill-files-in-kicad) 102 | drill_writer.CreateDrillandMapFilesSet(path, True, False) 103 | 104 | @staticmethod 105 | def __create_zip(zip_file_path, source_folder): 106 | """ 107 | Creates a zip file containing all files in the source folder. 108 | Args: 109 | zip_file_path (str): The full path and file name for the new zip file. 110 | source_folder (str): The source folder containing the files to include in the zip. 111 | """ 112 | return shutil.make_archive(zip_file_path, 'zip', source_folder) 113 | 114 | @staticmethod 115 | def __create_plate_pcb_from_layer(board, layer_name): 116 | """ 117 | Converts the provided board into a new cutout plate PCB, using layer data from the specified source board. 118 | All tracks and zones are removed from the plate, and only the footprint's cutouts are retained. 119 | These items within the bounds of the plate's cutout will be preserved: 120 | * Silkscreen directly on the board (but not in footprints) 121 | * LOGO footprints (silkscreen images) 122 | * H footprints (mounting holes) 123 | For all other footprints within the bounds of the plate's cutout: 124 | * SMD pads on the target layer are converted to non-plated through-hole pads. 125 | * Graphic lines on the target layer are converted to edge cuts. 126 | * All other pads and graphics are deleted. 127 | Args: 128 | board (pcbnew.BOARD): The board to convert into a plate 129 | layer_name (str): The layer name which represents the edge cutouts for the plate. 130 | """ 131 | 132 | remove_board_items = [] 133 | for track in board.GetTracks(): 134 | remove_board_items.append(track) 135 | for zone in board.Zones(): 136 | remove_board_items.append(zone) 137 | for drawing in board.GetDrawings(): 138 | if drawing.IsOnLayer(board.GetLayerID(layer_name)) and drawing.GetClass() == 'PCB_SHAPE': 139 | # Preserve graphic lines on target layer, and move them to layer edge cuts 140 | drawing.SetLayer(board.GetLayerID('Edge.Cuts')) 141 | elif (drawing.IsOnLayer(board.GetLayerID('F.Silkscreen')) or drawing.IsOnLayer(board.GetLayerID('B.Silkscreen'))) and drawing.GetClass() == 'PTEXT': 142 | # Preserve graphics text on silkscreen 143 | continue 144 | else: 145 | # Delete all other graphics 146 | remove_board_items.append(drawing) 147 | 148 | # Remove the tracks/zones/drawings now that we are done iterating 149 | for remove_board_item in remove_board_items: 150 | board.Remove(remove_board_item) 151 | 152 | platebounds = board.GetBoardEdgesBoundingBox() 153 | 154 | # Convert footprints to NPTH pads and edge cuts 155 | for footprint in board.GetFootprints(): 156 | if footprint.GetBoundingBox().Intersects(platebounds): 157 | footprint.Reference().SetVisible(False) 158 | footprint.Value().SetVisible(False) 159 | if re.match(r'^(H|LOGO)\d+$', footprint.GetReference()): 160 | # Preserve pads on 'H' (mounting hole) and 'LOGO' (graphics) footprints 161 | continue 162 | else: 163 | remove_footprint_items = [] 164 | for pad in footprint.Pads(): # Convert SMD circle/oval pads on target layer to NPTH pads, and remove all other pads 165 | if pad.IsOnLayer(board.GetLayerID(layer_name)) and pad.GetShape() in [pcbnew.PAD_SHAPE_CIRCLE, pcbnew.PAD_SHAPE_OVAL]: 166 | drill_shape = pcbnew.PAD_DRILL_SHAPE_CIRCLE if pad.GetShape() == pcbnew.PAD_SHAPE_CIRCLE else pcbnew.PAD_DRILL_SHAPE_OBLONG 167 | pad.SetAttribute(pcbnew.PAD_ATTRIB_NPTH) 168 | pad.SetDrillShape(drill_shape) 169 | pad.SetDrillSize(pad.GetSize()) 170 | pad.SetLayerSet(pad.UnplatedHoleMask()) 171 | pad.SetPosition(pad.GetPosition()) 172 | else: 173 | remove_footprint_items.append(pad) 174 | for graphic in footprint.GraphicalItems(): # Convert graphics on target layer to edge cuts, and remove all other graphics 175 | if graphic.IsOnLayer(board.GetLayerID(layer_name)): 176 | graphic.SetLayer(board.GetLayerID('Edge.Cuts')) # Move target layer graphics to edge cuts 177 | else: 178 | remove_footprint_items.append(graphic) 179 | # Remove the pads/graphics now that we are done iterating 180 | for remove_footprint_item in remove_footprint_items: 181 | footprint.Remove(remove_footprint_item) 182 | if len(footprint.Pads()) == 0 and len(footprint.GraphicalItems()) == 0: 183 | remove_board_items.append(footprint) 184 | else: 185 | remove_board_items.append(footprint) 186 | 187 | # Remove the footprints now that we are done iterating 188 | for remove_board_item in remove_board_items: 189 | board.Remove(remove_board_item) 190 | 191 | board.Save(board.GetFileName()) 192 | 193 | @staticmethod 194 | def __copy_board(board_source_path, board_destination_path): 195 | """ 196 | Creates a copy of the board at the source path and saves it to the destination path. 197 | Args: 198 | board_source_path (str): Path to the source .kicad_pcb file 199 | board_destination_path (str): Path to the destination .kicad_pcb file 200 | Returns: 201 | pcbnew.BOARD: The board object for the newly-copied board 202 | """ 203 | shutil.copy(board_source_path, board_destination_path) 204 | return pcbnew.LoadBoard(board_destination_path) 205 | 206 | @staticmethod 207 | def produce(): 208 | """ 209 | Executes the board production on the currently-opened board. 210 | """ 211 | current_board_path = pcbnew.GetBoard().GetFileName() 212 | 213 | try: 214 | relative_output_path = '../../gerbers' 215 | relative_temp_path = '../../temp' 216 | (board_folder, board_filename) = os.path.split(current_board_path) 217 | temp_path = os.path.normpath(os.path.join(board_folder, relative_temp_path)) 218 | output_path = os.path.normpath(os.path.join(board_folder, relative_output_path)) 219 | 220 | if os.path.exists(temp_path): 221 | shutil.rmtree(temp_path) 222 | 223 | os.makedirs(temp_path) 224 | 225 | if not os.path.exists(output_path): 226 | os.makedirs(output_path) 227 | 228 | main_board = HorizonBoardProducerPlugin.__copy_board(current_board_path, os.path.join(temp_path, board_filename)) 229 | bottom_plate = HorizonBoardProducerPlugin.__copy_board(current_board_path, os.path.join(temp_path, board_filename.replace('.kicad_pcb', '-bottom-plate.kicad_pcb'))) 230 | HorizonBoardProducerPlugin.__create_plate_pcb_from_layer(bottom_plate, 'B.Adhesive') 231 | top_plate = HorizonBoardProducerPlugin.__copy_board(current_board_path, os.path.join(temp_path, board_filename.replace('.kicad_pcb', '-top-plate.kicad_pcb'))) 232 | HorizonBoardProducerPlugin.__create_plate_pcb_from_layer(top_plate, 'F.Adhesive') 233 | 234 | generated_file_list = [] 235 | 236 | for pcb in [main_board, bottom_plate, top_plate]: 237 | if pcb.GetBoardEdgesBoundingBox().GetArea() > 0: 238 | (board_folder, board_filename) = os.path.split(pcb.GetFileName()) 239 | (board_name, _) = os.path.splitext(board_filename) 240 | gerber_output_path = os.path.join(temp_path, board_name) 241 | archive_file_path = os.path.join(output_path, board_name) 242 | HorizonBoardProducerPlugin.__create_gerbers(pcb, gerber_output_path) 243 | HorizonBoardProducerPlugin.__create_drill_file(pcb, gerber_output_path) 244 | generated_file = HorizonBoardProducerPlugin.__create_zip(archive_file_path, gerber_output_path) 245 | generated_file_list.append(generated_file) 246 | 247 | complete_dialog = wx.MessageDialog( 248 | None, 249 | "Boards produced successfully.\n\nGenerated files:\n" + '\n'.join(generated_file_list), 250 | "Horizon Board Producer - Complete", 251 | wx.OK 252 | ) 253 | complete_dialog.ShowModal() 254 | complete_dialog.Destroy() 255 | finally: 256 | # HACK: In KiCad 6 (as of 6.0.4), calling method `pcbnew.LoadBoard` on a board other than the one belonging to the current project 257 | # undesirably mutates the application's current project context. To work around this, attempt to reload the current project. 258 | settings_manager = pcbnew.GetSettingsManager() 259 | settings_manager.LoadProject(current_board_path.replace('.kicab_pcb', '.kicad_pro'), False) 260 | 261 | HorizonBoardProducerPlugin().register() -------------------------------------------------------------------------------- /pcb/sporewoh-keyboard-extras/Library.pretty/kicub_keyboard_extras.pretty/ST7735_1.8inch.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "ST7735_1.8inch" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 0) 4 | (attr through_hole) 5 | (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | (tstamp f3119cd7-c265-407b-8ffb-cb6e3e912d44) 8 | ) 9 | (fp_text value "ST7735_1.8inch" (at 0 1 unlocked) (layer "F.Fab") 10 | (effects (font (size 1 1) (thickness 0.15))) 11 | (tstamp 50ed3717-1be5-4bd5-be93-14d59f82695a) 12 | ) 13 | (fp_circle (center -26 14.25) (end -23.25 14.25) (layer "F.CrtYd") (width 0.12) (fill none) (tstamp 4b619465-8c84-4210-9dc8-32dc123d496f)) 14 | (fp_circle (center 26 -14.25) (end 28.75 -14.25) (layer "F.CrtYd") (width 0.12) (fill none) (tstamp 94bf1164-1d35-4478-b14c-206c697235db)) 15 | (fp_circle (center 26 14.25) (end 28.75 14.25) (layer "F.CrtYd") (width 0.12) (fill none) (tstamp ae6aa9bf-6413-4d22-b3d3-d822148f8a9f)) 16 | (fp_circle (center -26 -14.25) (end -23.25 -14.25) (layer "F.CrtYd") (width 0.12) (fill none) (tstamp da9576a2-69e6-4aaf-9de6-1d1aa1e93389)) 17 | (fp_rect (start -19.25 -15.5) (end 21.25 15.5) (layer "F.Fab") (width 0.12) (fill none) (tstamp 2258bd0f-fac4-4fd8-9afd-30829577bb64)) 18 | (fp_rect (start -23 -17.25) (end 23 17.25) (layer "F.Fab") (width 0.12) (fill none) (tstamp 9b0772c6-e99a-471e-a781-5447877e6914)) 19 | (fp_rect (start -29 -17.25) (end 29 17.25) (layer "F.Fab") (width 0.12) (fill none) (tstamp 9cc8709b-0492-47c1-8598-83456e6c6eb7)) 20 | (pad "" thru_hole circle (at -26 14.25) (size 4 4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 00f78418-d955-47a7-93c6-46c7bd11755a)) 21 | (pad "" thru_hole circle (at 26 14.25) (size 4 4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 049babfc-7643-4fb4-8ccb-19423c604046)) 22 | (pad "" thru_hole circle (at 26 -14.25) (size 4 4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 0f52deab-fbd1-4237-bd48-b364b82c9220)) 23 | (pad "" thru_hole circle (at -26 -14.25) (size 4 4) (drill 3.2) (layers *.Cu *.Mask) (tstamp b9292852-4810-400f-be14-76e0b93df842)) 24 | (pad "1" thru_hole rect (at -26.5 -8.89) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp 6ece4a48-9146-452c-9d8e-0e9092bcf28b)) 25 | (pad "2" thru_hole circle (at -26.5 -6.35) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp fa01a1e9-75f4-4d84-946f-07b9de81cf65)) 26 | (pad "3" thru_hole circle (at -26.5 -3.81) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp a994cba5-bce1-475e-ac94-a45059f7d485)) 27 | (pad "4" thru_hole circle (at -26.5 -1.27) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp a586433d-b14a-4df4-ae19-7f13cbf5873b)) 28 | (pad "5" thru_hole circle (at -26.5 1.27) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp 87d420ce-351f-44c8-889e-65673a844ce9)) 29 | (pad "6" thru_hole circle (at -26.5 3.81) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp b62d118e-dba2-417d-ae77-e77bc870321b)) 30 | (pad "7" thru_hole circle (at -26.5 6.35) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp 99d901ac-d75f-49a1-96eb-c12c1c6e1b49)) 31 | (pad "8" thru_hole circle (at -26.5 8.89) (size 1.65 1.65) (drill 0.95) (layers *.Cu *.Mask) (tstamp ae790136-fcc6-4043-aa69-e82144a88270)) 32 | ) 33 | -------------------------------------------------------------------------------- /pcb/sporewoh-keyboard-extras/kicub_keyboard_extras.bak: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) 2 | ) 3 | -------------------------------------------------------------------------------- /pcb/sporewoh-keyboard-extras/kicub_keyboard_extras.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) 2 | (symbol "ST7735_1.8inch" (in_bom yes) (on_board yes) 3 | (property "Reference" "U" (id 0) (at 0 12.7 0) 4 | (effects (font (size 1.27 1.27))) 5 | ) 6 | (property "Value" "ST7735_1.8inch" (id 1) (at 0 -12.7 0) 7 | (effects (font (size 1.27 1.27))) 8 | ) 9 | (property "Footprint" "" (id 2) (at -6.35 11.43 0) 10 | (effects (font (size 1.27 1.27)) hide) 11 | ) 12 | (property "Datasheet" "" (id 3) (at -6.35 11.43 0) 13 | (effects (font (size 1.27 1.27)) hide) 14 | ) 15 | (symbol "ST7735_1.8inch_0_1" 16 | (rectangle (start -15.24 10.16) (end 16.51 -10.16) 17 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 18 | (fill (type none)) 19 | ) 20 | ) 21 | (symbol "ST7735_1.8inch_1_1" 22 | (pin input line (at -17.78 8.89 0) (length 2.54) 23 | (name "VCC" (effects (font (size 1.27 1.27)))) 24 | (number "1" (effects (font (size 1.27 1.27)))) 25 | ) 26 | (pin input line (at -17.78 6.35 0) (length 2.54) 27 | (name "GND" (effects (font (size 1.27 1.27)))) 28 | (number "2" (effects (font (size 1.27 1.27)))) 29 | ) 30 | (pin input line (at -17.78 3.81 0) (length 2.54) 31 | (name "CS" (effects (font (size 1.27 1.27)))) 32 | (number "3" (effects (font (size 1.27 1.27)))) 33 | ) 34 | (pin input line (at -17.78 1.27 0) (length 2.54) 35 | (name "RESET" (effects (font (size 1.27 1.27)))) 36 | (number "4" (effects (font (size 1.27 1.27)))) 37 | ) 38 | (pin input line (at -17.78 -1.27 0) (length 2.54) 39 | (name "A0" (effects (font (size 1.27 1.27)))) 40 | (number "5" (effects (font (size 1.27 1.27)))) 41 | ) 42 | (pin input line (at -17.78 -3.81 0) (length 2.54) 43 | (name "SDA" (effects (font (size 1.27 1.27)))) 44 | (number "6" (effects (font (size 1.27 1.27)))) 45 | ) 46 | (pin input line (at -17.78 -6.35 0) (length 2.54) 47 | (name "SCK" (effects (font (size 1.27 1.27)))) 48 | (number "7" (effects (font (size 1.27 1.27)))) 49 | ) 50 | (pin input line (at -17.78 -8.89 0) (length 2.54) 51 | (name "LED" (effects (font (size 1.27 1.27)))) 52 | (number "8" (effects (font (size 1.27 1.27)))) 53 | ) 54 | ) 55 | ) 56 | ) 57 | -------------------------------------------------------------------------------- /temp/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /temp/keezyboost40-bottom-plate.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | 3 | (general 4 | (thickness 1.6) 5 | ) 6 | 7 | (paper "A4") 8 | (layers 9 | (0 "F.Cu" signal) 10 | (31 "B.Cu" signal) 11 | (32 "B.Adhes" user "B.Adhesive") 12 | (33 "F.Adhes" user "F.Adhesive") 13 | (34 "B.Paste" user) 14 | (35 "F.Paste" user) 15 | (36 "B.SilkS" user "B.Silkscreen") 16 | (37 "F.SilkS" user "F.Silkscreen") 17 | (38 "B.Mask" user) 18 | (39 "F.Mask" user) 19 | (40 "Dwgs.User" user "User.Drawings") 20 | (41 "Cmts.User" user "User.Comments") 21 | (42 "Eco1.User" user "User.Eco1") 22 | (43 "Eco2.User" user "User.Eco2") 23 | (44 "Edge.Cuts" user) 24 | (45 "Margin" user) 25 | (46 "B.CrtYd" user "B.Courtyard") 26 | (47 "F.CrtYd" user "F.Courtyard") 27 | (48 "B.Fab" user) 28 | (49 "F.Fab" user) 29 | (50 "User.1" user) 30 | (51 "User.2" user) 31 | (52 "User.3" user) 32 | (53 "User.4" user) 33 | (54 "User.5" user) 34 | (55 "User.6" user) 35 | (56 "User.7" user) 36 | (57 "User.8" user) 37 | (58 "User.9" user) 38 | ) 39 | 40 | (setup 41 | (pad_to_mask_clearance 0) 42 | (pcbplotparams 43 | (layerselection 0x00010fc_ffffffff) 44 | (disableapertmacros false) 45 | (usegerberextensions false) 46 | (usegerberattributes false) 47 | (usegerberadvancedattributes false) 48 | (creategerberjobfile true) 49 | (svguseinch false) 50 | (svgprecision 6) 51 | (excludeedgelayer true) 52 | (plotframeref false) 53 | (viasonmask false) 54 | (mode 1) 55 | (useauxorigin false) 56 | (hpglpennumber 1) 57 | (hpglpenspeed 20) 58 | (hpglpendiameter 15.000000) 59 | (dxfpolygonmode true) 60 | (dxfimperialunits true) 61 | (dxfusepcbnewfont true) 62 | (psnegative false) 63 | (psa4output false) 64 | (plotreference true) 65 | (plotvalue true) 66 | (plotinvisibletext false) 67 | (sketchpadsonfab false) 68 | (subtractmaskfromsilk true) 69 | (outputformat 1) 70 | (mirror false) 71 | (drillshape 0) 72 | (scaleselection 1) 73 | (outputdirectory "gerbers/") 74 | ) 75 | ) 76 | 77 | (net 0 "") 78 | 79 | (gr_text "by sporewoh" (at 222 15) (layer "B.SilkS") (tstamp 3dd385ec-e82e-4c38-9d95-f181d30f33c5) 80 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 81 | ) 82 | (gr_text "face side up!" (at 121 66.5) (layer "B.SilkS") (tstamp 3e1cfdc1-e850-4a16-895d-c6ec32c4484d) 83 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 84 | ) 85 | (gr_text "keezyboost40 v0.0" (at 222 13.5) (layer "B.SilkS") (tstamp 4b00b84f-9e7a-49b3-9cd9-c068770037dd) 86 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 87 | ) 88 | (gr_text "bro i cant\nsee the\nsilkscreen" (at 58 46.2) (layer "B.SilkS") (tstamp 7a3d8a55-2b02-4b23-9a8b-6cf9759584cd) 89 | (effects (font (size 10 10) (thickness 1.25)) (justify mirror)) 90 | ) 91 | 92 | ) 93 | -------------------------------------------------------------------------------- /temp/keezyboost40-bottom-plate.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 12, 41 | 13, 42 | 14, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36 64 | ], 65 | "visible_layers": "fffffff_ffffffff", 66 | "zone_display_mode": 0 67 | }, 68 | "meta": { 69 | "filename": "keezyboost40-bottom-plate.kicad_prl", 70 | "version": 3 71 | }, 72 | "project": { 73 | "files": [] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /temp/keezyboost40-bottom-plate.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "warning", 83 | "silk_overlap": "warning", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.01, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "use_height_for_length_calcs": true 112 | }, 113 | "track_widths": [], 114 | "via_dimensions": [], 115 | "zones_allow_external_fillets": false, 116 | "zones_use_no_outline": true 117 | }, 118 | "layer_presets": [] 119 | }, 120 | "boards": [], 121 | "cvpcb": { 122 | "equivalence_files": [] 123 | }, 124 | "libraries": { 125 | "pinned_footprint_libs": [], 126 | "pinned_symbol_libs": [] 127 | }, 128 | "meta": { 129 | "filename": "keezyboost40-bottom-plate.kicad_pro", 130 | "version": 1 131 | }, 132 | "net_settings": { 133 | "classes": [ 134 | { 135 | "bus_width": 12.0, 136 | "clearance": 0.2, 137 | "diff_pair_gap": 0.25, 138 | "diff_pair_via_gap": 0.25, 139 | "diff_pair_width": 0.2, 140 | "line_style": 0, 141 | "microvia_diameter": 0.3, 142 | "microvia_drill": 0.1, 143 | "name": "Default", 144 | "pcb_color": "rgba(0, 0, 0, 0.000)", 145 | "schematic_color": "rgba(0, 0, 0, 0.000)", 146 | "track_width": 0.25, 147 | "via_diameter": 0.8, 148 | "via_drill": 0.4, 149 | "wire_width": 6.0 150 | } 151 | ], 152 | "meta": { 153 | "version": 2 154 | }, 155 | "net_colors": null 156 | }, 157 | "pcbnew": { 158 | "last_paths": { 159 | "gencad": "", 160 | "idf": "", 161 | "netlist": "", 162 | "specctra_dsn": "", 163 | "step": "", 164 | "vrml": "" 165 | }, 166 | "page_layout_descr_file": "" 167 | }, 168 | "schematic": { 169 | "legacy_lib_dir": "", 170 | "legacy_lib_list": [] 171 | }, 172 | "sheets": [], 173 | "text_variables": {} 174 | } 175 | -------------------------------------------------------------------------------- /temp/keezyboost40-top-plate.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | 3 | (general 4 | (thickness 1.6) 5 | ) 6 | 7 | (paper "A4") 8 | (layers 9 | (0 "F.Cu" signal) 10 | (31 "B.Cu" signal) 11 | (32 "B.Adhes" user "B.Adhesive") 12 | (33 "F.Adhes" user "F.Adhesive") 13 | (34 "B.Paste" user) 14 | (35 "F.Paste" user) 15 | (36 "B.SilkS" user "B.Silkscreen") 16 | (37 "F.SilkS" user "F.Silkscreen") 17 | (38 "B.Mask" user) 18 | (39 "F.Mask" user) 19 | (40 "Dwgs.User" user "User.Drawings") 20 | (41 "Cmts.User" user "User.Comments") 21 | (42 "Eco1.User" user "User.Eco1") 22 | (43 "Eco2.User" user "User.Eco2") 23 | (44 "Edge.Cuts" user) 24 | (45 "Margin" user) 25 | (46 "B.CrtYd" user "B.Courtyard") 26 | (47 "F.CrtYd" user "F.Courtyard") 27 | (48 "B.Fab" user) 28 | (49 "F.Fab" user) 29 | (50 "User.1" user) 30 | (51 "User.2" user) 31 | (52 "User.3" user) 32 | (53 "User.4" user) 33 | (54 "User.5" user) 34 | (55 "User.6" user) 35 | (56 "User.7" user) 36 | (57 "User.8" user) 37 | (58 "User.9" user) 38 | ) 39 | 40 | (setup 41 | (pad_to_mask_clearance 0) 42 | (pcbplotparams 43 | (layerselection 0x00010fc_ffffffff) 44 | (disableapertmacros false) 45 | (usegerberextensions false) 46 | (usegerberattributes false) 47 | (usegerberadvancedattributes false) 48 | (creategerberjobfile true) 49 | (svguseinch false) 50 | (svgprecision 6) 51 | (excludeedgelayer true) 52 | (plotframeref false) 53 | (viasonmask false) 54 | (mode 1) 55 | (useauxorigin false) 56 | (hpglpennumber 1) 57 | (hpglpenspeed 20) 58 | (hpglpendiameter 15.000000) 59 | (dxfpolygonmode true) 60 | (dxfimperialunits true) 61 | (dxfusepcbnewfont true) 62 | (psnegative false) 63 | (psa4output false) 64 | (plotreference true) 65 | (plotvalue true) 66 | (plotinvisibletext false) 67 | (sketchpadsonfab false) 68 | (subtractmaskfromsilk true) 69 | (outputformat 1) 70 | (mirror false) 71 | (drillshape 0) 72 | (scaleselection 1) 73 | (outputdirectory "gerbers/") 74 | ) 75 | ) 76 | 77 | (net 0 "") 78 | 79 | (gr_text "by sporewoh" (at 222 15) (layer "B.SilkS") (tstamp 3dd385ec-e82e-4c38-9d95-f181d30f33c5) 80 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 81 | ) 82 | (gr_text "face side up!" (at 121 66.5) (layer "B.SilkS") (tstamp 3e1cfdc1-e850-4a16-895d-c6ec32c4484d) 83 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 84 | ) 85 | (gr_text "keezyboost40 v0.0" (at 222 13.5) (layer "B.SilkS") (tstamp 4b00b84f-9e7a-49b3-9cd9-c068770037dd) 86 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 87 | ) 88 | (gr_text "bro i cant\nsee the\nsilkscreen" (at 58 46.2) (layer "B.SilkS") (tstamp 7a3d8a55-2b02-4b23-9a8b-6cf9759584cd) 89 | (effects (font (size 10 10) (thickness 1.25)) (justify mirror)) 90 | ) 91 | 92 | ) 93 | -------------------------------------------------------------------------------- /temp/keezyboost40-top-plate.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 12, 41 | 13, 42 | 14, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36 64 | ], 65 | "visible_layers": "fffffff_ffffffff", 66 | "zone_display_mode": 0 67 | }, 68 | "meta": { 69 | "filename": "keezyboost40-top-plate.kicad_prl", 70 | "version": 3 71 | }, 72 | "project": { 73 | "files": [] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /temp/keezyboost40-top-plate.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "warning", 83 | "silk_overlap": "warning", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.01, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "use_height_for_length_calcs": true 112 | }, 113 | "track_widths": [], 114 | "via_dimensions": [], 115 | "zones_allow_external_fillets": false, 116 | "zones_use_no_outline": true 117 | }, 118 | "layer_presets": [] 119 | }, 120 | "boards": [], 121 | "cvpcb": { 122 | "equivalence_files": [] 123 | }, 124 | "libraries": { 125 | "pinned_footprint_libs": [], 126 | "pinned_symbol_libs": [] 127 | }, 128 | "meta": { 129 | "filename": "keezyboost40-top-plate.kicad_pro", 130 | "version": 1 131 | }, 132 | "net_settings": { 133 | "classes": [ 134 | { 135 | "bus_width": 12.0, 136 | "clearance": 0.2, 137 | "diff_pair_gap": 0.25, 138 | "diff_pair_via_gap": 0.25, 139 | "diff_pair_width": 0.2, 140 | "line_style": 0, 141 | "microvia_diameter": 0.3, 142 | "microvia_drill": 0.1, 143 | "name": "Default", 144 | "pcb_color": "rgba(0, 0, 0, 0.000)", 145 | "schematic_color": "rgba(0, 0, 0, 0.000)", 146 | "track_width": 0.25, 147 | "via_diameter": 0.8, 148 | "via_drill": 0.4, 149 | "wire_width": 6.0 150 | } 151 | ], 152 | "meta": { 153 | "version": 2 154 | }, 155 | "net_colors": null 156 | }, 157 | "pcbnew": { 158 | "last_paths": { 159 | "gencad": "", 160 | "idf": "", 161 | "netlist": "", 162 | "specctra_dsn": "", 163 | "step": "", 164 | "vrml": "" 165 | }, 166 | "page_layout_descr_file": "" 167 | }, 168 | "schematic": { 169 | "legacy_lib_dir": "", 170 | "legacy_lib_list": [] 171 | }, 172 | "sheets": [], 173 | "text_variables": {} 174 | } 175 | -------------------------------------------------------------------------------- /temp/keezyboost40.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 36, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 12, 41 | 13, 42 | 14, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36 64 | ], 65 | "visible_layers": "fffffff_ffffffff", 66 | "zone_display_mode": 0 67 | }, 68 | "meta": { 69 | "filename": "keezyboost40.kicad_prl", 70 | "version": 3 71 | }, 72 | "project": { 73 | "files": [] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /temp/keezyboost40.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "warning", 83 | "silk_overlap": "warning", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.01, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "use_height_for_length_calcs": true 112 | }, 113 | "track_widths": [], 114 | "via_dimensions": [], 115 | "zones_allow_external_fillets": false, 116 | "zones_use_no_outline": true 117 | }, 118 | "layer_presets": [] 119 | }, 120 | "boards": [], 121 | "cvpcb": { 122 | "equivalence_files": [] 123 | }, 124 | "erc": { 125 | "erc_exclusions": [], 126 | "meta": { 127 | "version": 0 128 | }, 129 | "pin_map": [ 130 | [ 131 | 0, 132 | 0, 133 | 0, 134 | 0, 135 | 0, 136 | 0, 137 | 1, 138 | 0, 139 | 0, 140 | 0, 141 | 0, 142 | 2 143 | ], 144 | [ 145 | 0, 146 | 2, 147 | 0, 148 | 1, 149 | 0, 150 | 0, 151 | 1, 152 | 0, 153 | 2, 154 | 2, 155 | 2, 156 | 2 157 | ], 158 | [ 159 | 0, 160 | 0, 161 | 0, 162 | 0, 163 | 0, 164 | 0, 165 | 1, 166 | 0, 167 | 1, 168 | 0, 169 | 1, 170 | 2 171 | ], 172 | [ 173 | 0, 174 | 1, 175 | 0, 176 | 0, 177 | 0, 178 | 0, 179 | 1, 180 | 1, 181 | 2, 182 | 1, 183 | 1, 184 | 2 185 | ], 186 | [ 187 | 0, 188 | 0, 189 | 0, 190 | 0, 191 | 0, 192 | 0, 193 | 1, 194 | 0, 195 | 0, 196 | 0, 197 | 0, 198 | 2 199 | ], 200 | [ 201 | 0, 202 | 0, 203 | 0, 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 2 213 | ], 214 | [ 215 | 1, 216 | 1, 217 | 1, 218 | 1, 219 | 1, 220 | 0, 221 | 1, 222 | 1, 223 | 1, 224 | 1, 225 | 1, 226 | 2 227 | ], 228 | [ 229 | 0, 230 | 0, 231 | 0, 232 | 1, 233 | 0, 234 | 0, 235 | 1, 236 | 0, 237 | 0, 238 | 0, 239 | 0, 240 | 2 241 | ], 242 | [ 243 | 0, 244 | 2, 245 | 1, 246 | 2, 247 | 0, 248 | 0, 249 | 1, 250 | 0, 251 | 2, 252 | 2, 253 | 2, 254 | 2 255 | ], 256 | [ 257 | 0, 258 | 2, 259 | 0, 260 | 1, 261 | 0, 262 | 0, 263 | 1, 264 | 0, 265 | 2, 266 | 0, 267 | 0, 268 | 2 269 | ], 270 | [ 271 | 0, 272 | 2, 273 | 1, 274 | 1, 275 | 0, 276 | 0, 277 | 1, 278 | 0, 279 | 2, 280 | 0, 281 | 0, 282 | 2 283 | ], 284 | [ 285 | 2, 286 | 2, 287 | 2, 288 | 2, 289 | 2, 290 | 2, 291 | 2, 292 | 2, 293 | 2, 294 | 2, 295 | 2, 296 | 2 297 | ] 298 | ], 299 | "rule_severities": { 300 | "bus_definition_conflict": "error", 301 | "bus_entry_needed": "error", 302 | "bus_label_syntax": "error", 303 | "bus_to_bus_conflict": "error", 304 | "bus_to_net_conflict": "error", 305 | "different_unit_footprint": "error", 306 | "different_unit_net": "error", 307 | "duplicate_reference": "error", 308 | "duplicate_sheet_names": "error", 309 | "extra_units": "error", 310 | "global_label_dangling": "warning", 311 | "hier_label_mismatch": "error", 312 | "label_dangling": "error", 313 | "lib_symbol_issues": "warning", 314 | "multiple_net_names": "warning", 315 | "net_not_bus_member": "warning", 316 | "no_connect_connected": "warning", 317 | "no_connect_dangling": "warning", 318 | "pin_not_connected": "error", 319 | "pin_not_driven": "error", 320 | "pin_to_pin": "warning", 321 | "power_pin_not_driven": "error", 322 | "similar_labels": "warning", 323 | "unannotated": "error", 324 | "unit_value_mismatch": "error", 325 | "unresolved_variable": "error", 326 | "wire_dangling": "error" 327 | } 328 | }, 329 | "libraries": { 330 | "pinned_footprint_libs": [], 331 | "pinned_symbol_libs": [] 332 | }, 333 | "meta": { 334 | "filename": "keezyboost40.kicad_pro", 335 | "version": 1 336 | }, 337 | "net_settings": { 338 | "classes": [ 339 | { 340 | "bus_width": 12.0, 341 | "clearance": 0.2, 342 | "diff_pair_gap": 0.25, 343 | "diff_pair_via_gap": 0.25, 344 | "diff_pair_width": 0.2, 345 | "line_style": 0, 346 | "microvia_diameter": 0.3, 347 | "microvia_drill": 0.1, 348 | "name": "Default", 349 | "pcb_color": "rgba(0, 0, 0, 0.000)", 350 | "schematic_color": "rgba(0, 0, 0, 0.000)", 351 | "track_width": 0.25, 352 | "via_diameter": 0.8, 353 | "via_drill": 0.4, 354 | "wire_width": 6.0 355 | } 356 | ], 357 | "meta": { 358 | "version": 2 359 | }, 360 | "net_colors": null 361 | }, 362 | "pcbnew": { 363 | "last_paths": { 364 | "gencad": "", 365 | "idf": "", 366 | "netlist": "", 367 | "specctra_dsn": "", 368 | "step": "", 369 | "vrml": "" 370 | }, 371 | "page_layout_descr_file": "" 372 | }, 373 | "schematic": { 374 | "annotate_start_num": 0, 375 | "drawing": { 376 | "default_line_thickness": 6.0, 377 | "default_text_size": 50.0, 378 | "field_names": [], 379 | "intersheets_ref_own_page": false, 380 | "intersheets_ref_prefix": "", 381 | "intersheets_ref_short": false, 382 | "intersheets_ref_show": false, 383 | "intersheets_ref_suffix": "", 384 | "junction_size_choice": 3, 385 | "label_size_ratio": 0.375, 386 | "pin_symbol_size": 25.0, 387 | "text_offset_ratio": 0.15 388 | }, 389 | "legacy_lib_dir": "", 390 | "legacy_lib_list": [], 391 | "meta": { 392 | "version": 1 393 | }, 394 | "net_format_name": "", 395 | "ngspice": { 396 | "fix_include_paths": true, 397 | "fix_passive_vals": false, 398 | "meta": { 399 | "version": 0 400 | }, 401 | "model_mode": 0, 402 | "workbook_filename": "" 403 | }, 404 | "page_layout_descr_file": "", 405 | "plot_directory": "", 406 | "spice_adjust_passive_values": false, 407 | "spice_external_command": "spice \"%I\"", 408 | "subpart_first_id": 65, 409 | "subpart_id_separator": 0 410 | }, 411 | "sheets": [], 412 | "text_variables": {} 413 | } 414 | -------------------------------------------------------------------------------- /temp/keezyboost40/keezyboost40-B_Mask.gbs: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.4-0)* 2 | G04 #@! TF.CreationDate,2022-07-14T20:21:05-05:00* 3 | G04 #@! TF.ProjectId,keezyboost40,6b65657a-7962-46f6-9f73-7434302e6b69,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Soldermask,Bot* 6 | G04 #@! TF.FilePolarity,Negative* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.4-0)) date 2022-07-14 20:21:05* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,3.429000*% 15 | %ADD11C,0.990600*% 16 | %ADD12C,1.701800*% 17 | %ADD13C,3.000000*% 18 | %ADD14R,2.600000X2.600000*% 19 | %ADD15C,2.200000*% 20 | %ADD16C,3.800000*% 21 | %ADD17C,4.000000*% 22 | %ADD18R,1.650000X1.650000*% 23 | %ADD19C,1.650000*% 24 | %ADD20R,1.200000X0.900000*% 25 | %ADD21R,3.500000X1.700000*% 26 | %ADD22O,1.700000X1.700000*% 27 | %ADD23R,1.700000X1.700000*% 28 | G04 APERTURE END LIST* 29 | D10* 30 | X202000000Y-55000000D03* 31 | D11* 32 | X207220000Y-50800000D03* 33 | D12* 34 | X196500000Y-55000000D03* 35 | D13* 36 | X202000000Y-60950000D03* 37 | D12* 38 | X207500000Y-55000000D03* 39 | D13* 40 | X197000000Y-58750000D03* 41 | D14* 42 | X205275000Y-60950000D03* 43 | X193725000Y-58750000D03* 44 | D12* 45 | X52500000Y-38000000D03* 46 | X63500000Y-38000000D03* 47 | D11* 48 | X63220000Y-33800000D03* 49 | D13* 50 | X53000000Y-41750000D03* 51 | D10* 52 | X58000000Y-38000000D03* 53 | D13* 54 | X58000000Y-43950000D03* 55 | D14* 56 | X61275000Y-43950000D03* 57 | X49725000Y-41750000D03* 58 | D11* 59 | X99220000Y-16800000D03* 60 | D12* 61 | X88500000Y-21000000D03* 62 | X99500000Y-21000000D03* 63 | D13* 64 | X89000000Y-24750000D03* 65 | D10* 66 | X94000000Y-21000000D03* 67 | D13* 68 | X94000000Y-26950000D03* 69 | D14* 70 | X97275000Y-26950000D03* 71 | X85725000Y-24750000D03* 72 | D15* 73 | X85000000Y-46500000D03* 74 | D11* 75 | X81220000Y-67800000D03* 76 | D13* 77 | X76000000Y-77950000D03* 78 | X71000000Y-75750000D03* 79 | D12* 80 | X70500000Y-72000000D03* 81 | D10* 82 | X76000000Y-72000000D03* 83 | D12* 84 | X81500000Y-72000000D03* 85 | D14* 86 | X79275000Y-77950000D03* 87 | X67725000Y-75750000D03* 88 | D13* 89 | X148000000Y-77950000D03* 90 | D12* 91 | X142500000Y-72000000D03* 92 | D10* 93 | X148000000Y-72000000D03* 94 | D11* 95 | X153220000Y-67800000D03* 96 | D13* 97 | X143000000Y-75750000D03* 98 | D12* 99 | X153500000Y-72000000D03* 100 | D14* 101 | X151275000Y-77950000D03* 102 | X139725000Y-75750000D03* 103 | D11* 104 | X189220000Y-16800000D03* 105 | D12* 106 | X189500000Y-21000000D03* 107 | D13* 108 | X179000000Y-24750000D03* 109 | D12* 110 | X178500000Y-21000000D03* 111 | D13* 112 | X184000000Y-26950000D03* 113 | D10* 114 | X184000000Y-21000000D03* 115 | D14* 116 | X187275000Y-26950000D03* 117 | X175725000Y-24750000D03* 118 | D13* 119 | X22000000Y-26950000D03* 120 | X17000000Y-24750000D03* 121 | D11* 122 | X27220000Y-16800000D03* 123 | D12* 124 | X27500000Y-21000000D03* 125 | X16500000Y-21000000D03* 126 | D10* 127 | X22000000Y-21000000D03* 128 | D14* 129 | X25275000Y-26950000D03* 130 | X13725000Y-24750000D03* 131 | D13* 132 | X35000000Y-41750000D03* 133 | X40000000Y-43950000D03* 134 | D12* 135 | X34500000Y-38000000D03* 136 | D11* 137 | X45220000Y-33800000D03* 138 | D12* 139 | X45500000Y-38000000D03* 140 | D10* 141 | X40000000Y-38000000D03* 142 | D14* 143 | X43275000Y-43950000D03* 144 | X31725000Y-41750000D03* 145 | D11* 146 | X81220000Y-33800000D03* 147 | D13* 148 | X71000000Y-41750000D03* 149 | D12* 150 | X81500000Y-38000000D03* 151 | D10* 152 | X76000000Y-38000000D03* 153 | D12* 154 | X70500000Y-38000000D03* 155 | D13* 156 | X76000000Y-43950000D03* 157 | D14* 158 | X79275000Y-43950000D03* 159 | X67725000Y-41750000D03* 160 | D12* 161 | X45500000Y-72000000D03* 162 | D13* 163 | X35000000Y-75750000D03* 164 | D12* 165 | X34500000Y-72000000D03* 166 | D10* 167 | X40000000Y-72000000D03* 168 | D11* 169 | X45220000Y-67800000D03* 170 | D13* 171 | X40000000Y-77950000D03* 172 | D14* 173 | X43275000Y-77950000D03* 174 | X31725000Y-75750000D03* 175 | D13* 176 | X220000000Y-43950000D03* 177 | D12* 178 | X214500000Y-38000000D03* 179 | X225500000Y-38000000D03* 180 | D13* 181 | X215000000Y-41750000D03* 182 | D10* 183 | X220000000Y-38000000D03* 184 | D11* 185 | X225220000Y-33800000D03* 186 | D14* 187 | X223275000Y-43950000D03* 188 | X211725000Y-41750000D03* 189 | D10* 190 | X22000000Y-55000000D03* 191 | D12* 192 | X27500000Y-55000000D03* 193 | D11* 194 | X27220000Y-50800000D03* 195 | D12* 196 | X16500000Y-55000000D03* 197 | D13* 198 | X17000000Y-58750000D03* 199 | X22000000Y-60950000D03* 200 | D14* 201 | X25275000Y-60950000D03* 202 | X13725000Y-58750000D03* 203 | D12* 204 | X34500000Y-21000000D03* 205 | D11* 206 | X45220000Y-16800000D03* 207 | D10* 208 | X40000000Y-21000000D03* 209 | D13* 210 | X35000000Y-24750000D03* 211 | D12* 212 | X45500000Y-21000000D03* 213 | D13* 214 | X40000000Y-26950000D03* 215 | D14* 216 | X43275000Y-26950000D03* 217 | X31725000Y-24750000D03* 218 | D12* 219 | X99500000Y-72000000D03* 220 | X88500000Y-72000000D03* 221 | D13* 222 | X89000000Y-75750000D03* 223 | D11* 224 | X99220000Y-67800000D03* 225 | D13* 226 | X94000000Y-77950000D03* 227 | D10* 228 | X94000000Y-72000000D03* 229 | D14* 230 | X97275000Y-77950000D03* 231 | X85725000Y-75750000D03* 232 | D13* 233 | X197000000Y-24750000D03* 234 | D12* 235 | X196500000Y-21000000D03* 236 | D10* 237 | X202000000Y-21000000D03* 238 | D13* 239 | X202000000Y-26950000D03* 240 | D11* 241 | X207220000Y-16800000D03* 242 | D12* 243 | X207500000Y-21000000D03* 244 | D14* 245 | X205275000Y-26950000D03* 246 | X193725000Y-24750000D03* 247 | D11* 248 | X207220000Y-67800000D03* 249 | D13* 250 | X197000000Y-75750000D03* 251 | D12* 252 | X207500000Y-72000000D03* 253 | X196500000Y-72000000D03* 254 | D13* 255 | X202000000Y-77950000D03* 256 | D10* 257 | X202000000Y-72000000D03* 258 | D14* 259 | X205275000Y-77950000D03* 260 | X193725000Y-75750000D03* 261 | D11* 262 | X225220000Y-50800000D03* 263 | D10* 264 | X220000000Y-55000000D03* 265 | D12* 266 | X214500000Y-55000000D03* 267 | D13* 268 | X220000000Y-60950000D03* 269 | X215000000Y-58750000D03* 270 | D12* 271 | X225500000Y-55000000D03* 272 | D14* 273 | X223275000Y-60950000D03* 274 | X211725000Y-58750000D03* 275 | D11* 276 | X27220000Y-33800000D03* 277 | D12* 278 | X27500000Y-38000000D03* 279 | D13* 280 | X17000000Y-41750000D03* 281 | D10* 282 | X22000000Y-38000000D03* 283 | D12* 284 | X16500000Y-38000000D03* 285 | D13* 286 | X22000000Y-43950000D03* 287 | D14* 288 | X25275000Y-43950000D03* 289 | X13725000Y-41750000D03* 290 | D13* 291 | X53000000Y-58750000D03* 292 | D12* 293 | X52500000Y-55000000D03* 294 | D10* 295 | X58000000Y-55000000D03* 296 | D11* 297 | X63220000Y-50800000D03* 298 | D12* 299 | X63500000Y-55000000D03* 300 | D13* 301 | X58000000Y-60950000D03* 302 | D14* 303 | X61275000Y-60950000D03* 304 | X49725000Y-58750000D03* 305 | D12* 306 | X207500000Y-38000000D03* 307 | D13* 308 | X202000000Y-43950000D03* 309 | D11* 310 | X207220000Y-33800000D03* 311 | D12* 312 | X196500000Y-38000000D03* 313 | D13* 314 | X197000000Y-41750000D03* 315 | D10* 316 | X202000000Y-38000000D03* 317 | D14* 318 | X205275000Y-43950000D03* 319 | X193725000Y-41750000D03* 320 | D13* 321 | X143000000Y-58750000D03* 322 | D12* 323 | X142500000Y-55000000D03* 324 | D10* 325 | X148000000Y-55000000D03* 326 | D13* 327 | X148000000Y-60950000D03* 328 | D11* 329 | X153220000Y-50800000D03* 330 | D12* 331 | X153500000Y-55000000D03* 332 | D14* 333 | X151275000Y-60950000D03* 334 | X139725000Y-58750000D03* 335 | D12* 336 | X178500000Y-38000000D03* 337 | D13* 338 | X179000000Y-41750000D03* 339 | D12* 340 | X189500000Y-38000000D03* 341 | D10* 342 | X184000000Y-38000000D03* 343 | D13* 344 | X184000000Y-43950000D03* 345 | D11* 346 | X189220000Y-33800000D03* 347 | D14* 348 | X187275000Y-43950000D03* 349 | X175725000Y-41750000D03* 350 | D15* 351 | X31000000Y-63500000D03* 352 | D13* 353 | X179000000Y-75750000D03* 354 | D12* 355 | X178500000Y-72000000D03* 356 | D10* 357 | X184000000Y-72000000D03* 358 | D13* 359 | X184000000Y-77950000D03* 360 | D11* 361 | X189220000Y-67800000D03* 362 | D12* 363 | X189500000Y-72000000D03* 364 | D14* 365 | X187275000Y-77950000D03* 366 | X175725000Y-75750000D03* 367 | D11* 368 | X63220000Y-67800000D03* 369 | D12* 370 | X63500000Y-72000000D03* 371 | D13* 372 | X58000000Y-77950000D03* 373 | D10* 374 | X58000000Y-72000000D03* 375 | D12* 376 | X52500000Y-72000000D03* 377 | D13* 378 | X53000000Y-75750000D03* 379 | D14* 380 | X61275000Y-77950000D03* 381 | X49725000Y-75750000D03* 382 | D11* 383 | X225220000Y-67800000D03* 384 | D12* 385 | X214500000Y-72000000D03* 386 | X225500000Y-72000000D03* 387 | D13* 388 | X220000000Y-77950000D03* 389 | X215000000Y-75750000D03* 390 | D10* 391 | X220000000Y-72000000D03* 392 | D14* 393 | X223275000Y-77950000D03* 394 | X211725000Y-75750000D03* 395 | D12* 396 | X225500000Y-21000000D03* 397 | D11* 398 | X225220000Y-16800000D03* 399 | D12* 400 | X214500000Y-21000000D03* 401 | D10* 402 | X220000000Y-21000000D03* 403 | D13* 404 | X220000000Y-26950000D03* 405 | X215000000Y-24750000D03* 406 | D14* 407 | X223275000Y-26950000D03* 408 | X211725000Y-24750000D03* 409 | D15* 410 | X31000000Y-29500000D03* 411 | D12* 412 | X99500000Y-38000000D03* 413 | D11* 414 | X99220000Y-33800000D03* 415 | D12* 416 | X88500000Y-38000000D03* 417 | D13* 418 | X89000000Y-41750000D03* 419 | D10* 420 | X94000000Y-38000000D03* 421 | D13* 422 | X94000000Y-43950000D03* 423 | D14* 424 | X97275000Y-43950000D03* 425 | X85725000Y-41750000D03* 426 | D12* 427 | X160500000Y-55000000D03* 428 | D13* 429 | X161000000Y-58750000D03* 430 | X166000000Y-60950000D03* 431 | D10* 432 | X166000000Y-55000000D03* 433 | D12* 434 | X171500000Y-55000000D03* 435 | D11* 436 | X171220000Y-50800000D03* 437 | D14* 438 | X169275000Y-60950000D03* 439 | X157725000Y-58750000D03* 440 | D11* 441 | X63220000Y-16800000D03* 442 | D10* 443 | X58000000Y-21000000D03* 444 | D12* 445 | X63500000Y-21000000D03* 446 | D13* 447 | X53000000Y-24750000D03* 448 | X58000000Y-26950000D03* 449 | D12* 450 | X52500000Y-21000000D03* 451 | D14* 452 | X61275000Y-26950000D03* 453 | X49725000Y-24750000D03* 454 | D15* 455 | X211000000Y-29500000D03* 456 | X157000000Y-46500000D03* 457 | X211000000Y-63500000D03* 458 | D13* 459 | X17000000Y-75750000D03* 460 | D11* 461 | X27220000Y-67800000D03* 462 | D12* 463 | X27500000Y-72000000D03* 464 | D10* 465 | X22000000Y-72000000D03* 466 | D13* 467 | X22000000Y-77950000D03* 468 | D12* 469 | X16500000Y-72000000D03* 470 | D14* 471 | X25275000Y-77950000D03* 472 | X13725000Y-75750000D03* 473 | D10* 474 | X148000000Y-21000000D03* 475 | D12* 476 | X142500000Y-21000000D03* 477 | D13* 478 | X148000000Y-26950000D03* 479 | D12* 480 | X153500000Y-21000000D03* 481 | D13* 482 | X143000000Y-24750000D03* 483 | D11* 484 | X153220000Y-16800000D03* 485 | D14* 486 | X151275000Y-26950000D03* 487 | X139725000Y-24750000D03* 488 | D16* 489 | X106000000Y-78000000D03* 490 | X136000000Y-78000000D03* 491 | D11* 492 | X171220000Y-67800000D03* 493 | D13* 494 | X166000000Y-77950000D03* 495 | X161000000Y-75750000D03* 496 | D12* 497 | X171500000Y-72000000D03* 498 | X160500000Y-72000000D03* 499 | D10* 500 | X166000000Y-72000000D03* 501 | D14* 502 | X169275000Y-77950000D03* 503 | X157725000Y-75750000D03* 504 | D12* 505 | X171500000Y-38000000D03* 506 | D13* 507 | X166000000Y-43950000D03* 508 | D11* 509 | X171220000Y-33800000D03* 510 | D12* 511 | X160500000Y-38000000D03* 512 | D13* 513 | X161000000Y-41750000D03* 514 | D10* 515 | X166000000Y-38000000D03* 516 | D14* 517 | X169275000Y-43950000D03* 518 | X157725000Y-41750000D03* 519 | D17* 520 | X106750000Y-72450000D03* 521 | X106750000Y-20450000D03* 522 | X135250000Y-20450000D03* 523 | X135250000Y-72450000D03* 524 | D18* 525 | X112110000Y-72950000D03* 526 | D19* 527 | X114650000Y-72950000D03* 528 | X117190000Y-72950000D03* 529 | X119730000Y-72950000D03* 530 | X122270000Y-72950000D03* 531 | X124810000Y-72950000D03* 532 | X127350000Y-72950000D03* 533 | X129890000Y-72950000D03* 534 | D16* 535 | X106000000Y-15000000D03* 536 | D10* 537 | X166000000Y-21000000D03* 538 | D12* 539 | X160500000Y-21000000D03* 540 | X171500000Y-21000000D03* 541 | D13* 542 | X166000000Y-26950000D03* 543 | D11* 544 | X171220000Y-16800000D03* 545 | D13* 546 | X161000000Y-24750000D03* 547 | D14* 548 | X169275000Y-26950000D03* 549 | X157725000Y-24750000D03* 550 | D10* 551 | X76000000Y-21000000D03* 552 | D11* 553 | X81220000Y-16800000D03* 554 | D13* 555 | X71000000Y-24750000D03* 556 | D12* 557 | X70500000Y-21000000D03* 558 | D13* 559 | X76000000Y-26950000D03* 560 | D12* 561 | X81500000Y-21000000D03* 562 | D14* 563 | X79275000Y-26950000D03* 564 | X67725000Y-24750000D03* 565 | D13* 566 | X179000000Y-58750000D03* 567 | D11* 568 | X189220000Y-50800000D03* 569 | D10* 570 | X184000000Y-55000000D03* 571 | D12* 572 | X178500000Y-55000000D03* 573 | D13* 574 | X184000000Y-60950000D03* 575 | D12* 576 | X189500000Y-55000000D03* 577 | D14* 578 | X187275000Y-60950000D03* 579 | X175725000Y-58750000D03* 580 | D11* 581 | X81220000Y-50800000D03* 582 | D13* 583 | X71000000Y-58750000D03* 584 | D12* 585 | X70500000Y-55000000D03* 586 | D10* 587 | X76000000Y-55000000D03* 588 | D13* 589 | X76000000Y-60950000D03* 590 | D12* 591 | X81500000Y-55000000D03* 592 | D14* 593 | X79275000Y-60950000D03* 594 | X67725000Y-58750000D03* 595 | D13* 596 | X40000000Y-60950000D03* 597 | D12* 598 | X45500000Y-55000000D03* 599 | D10* 600 | X40000000Y-55000000D03* 601 | D13* 602 | X35000000Y-58750000D03* 603 | D11* 604 | X45220000Y-50800000D03* 605 | D12* 606 | X34500000Y-55000000D03* 607 | D14* 608 | X43275000Y-60950000D03* 609 | X31725000Y-58750000D03* 610 | D16* 611 | X136000000Y-15000000D03* 612 | D13* 613 | X89000000Y-58750000D03* 614 | D11* 615 | X99220000Y-50800000D03* 616 | D12* 617 | X99500000Y-55000000D03* 618 | D13* 619 | X94000000Y-60950000D03* 620 | D12* 621 | X88500000Y-55000000D03* 622 | D10* 623 | X94000000Y-55000000D03* 624 | D14* 625 | X97275000Y-60950000D03* 626 | X85725000Y-58750000D03* 627 | D13* 628 | X143000000Y-41750000D03* 629 | D10* 630 | X148000000Y-38000000D03* 631 | D11* 632 | X153220000Y-33800000D03* 633 | D13* 634 | X148000000Y-43950000D03* 635 | D12* 636 | X153500000Y-38000000D03* 637 | X142500000Y-38000000D03* 638 | D14* 639 | X151275000Y-43950000D03* 640 | X139725000Y-41750000D03* 641 | D20* 642 | X225775100Y-63450000D03* 643 | X225775100Y-60150000D03* 644 | X207775100Y-29450000D03* 645 | X207775100Y-26150000D03* 646 | X63775100Y-46450000D03* 647 | X63775100Y-43150000D03* 648 | X171775100Y-75450000D03* 649 | X171775100Y-78750000D03* 650 | X27775100Y-63450000D03* 651 | X27775100Y-60150000D03* 652 | X99775100Y-75450000D03* 653 | X99775100Y-78750000D03* 654 | X99775100Y-46450000D03* 655 | X99775100Y-43150000D03* 656 | X64100000Y-75450000D03* 657 | X64100000Y-78750000D03* 658 | X63775100Y-29450000D03* 659 | X63775100Y-26150000D03* 660 | X27775100Y-29450000D03* 661 | X27775100Y-26150000D03* 662 | X207775100Y-75450000D03* 663 | X207775100Y-78750000D03* 664 | D21* 665 | X130790000Y-14520000D03* 666 | D22* 667 | X129890000Y-14520000D03* 668 | X129890000Y-17060000D03* 669 | D21* 670 | X130790000Y-17060000D03* 671 | D23* 672 | X129890000Y-19600000D03* 673 | D21* 674 | X130790000Y-19600000D03* 675 | D22* 676 | X129890000Y-22140000D03* 677 | D21* 678 | X130790000Y-22140000D03* 679 | X130790000Y-24680000D03* 680 | D22* 681 | X129890000Y-24680000D03* 682 | D21* 683 | X130790000Y-27220000D03* 684 | D22* 685 | X129890000Y-27220000D03* 686 | D21* 687 | X130790000Y-29760000D03* 688 | D22* 689 | X129890000Y-29760000D03* 690 | D23* 691 | X129890000Y-32300000D03* 692 | D21* 693 | X130790000Y-32300000D03* 694 | X130790000Y-34840000D03* 695 | D22* 696 | X129890000Y-34840000D03* 697 | X129890000Y-37380000D03* 698 | D21* 699 | X130790000Y-37380000D03* 700 | X130790000Y-39920000D03* 701 | D22* 702 | X129890000Y-39920000D03* 703 | X129890000Y-42460000D03* 704 | D21* 705 | X130790000Y-42460000D03* 706 | X130790000Y-45000000D03* 707 | D23* 708 | X129890000Y-45000000D03* 709 | D21* 710 | X130790000Y-47540000D03* 711 | D22* 712 | X129890000Y-47540000D03* 713 | X129890000Y-50080000D03* 714 | D21* 715 | X130790000Y-50080000D03* 716 | D22* 717 | X129890000Y-52620000D03* 718 | D21* 719 | X130790000Y-52620000D03* 720 | D22* 721 | X129890000Y-55160000D03* 722 | D21* 723 | X130790000Y-55160000D03* 724 | X130790000Y-57700000D03* 725 | D23* 726 | X129890000Y-57700000D03* 727 | D21* 728 | X130790000Y-60240000D03* 729 | D22* 730 | X129890000Y-60240000D03* 731 | X129890000Y-62780000D03* 732 | D21* 733 | X130790000Y-62780000D03* 734 | D22* 735 | X112110000Y-62780000D03* 736 | D21* 737 | X111210000Y-62780000D03* 738 | D22* 739 | X112110000Y-60240000D03* 740 | D21* 741 | X111210000Y-60240000D03* 742 | D23* 743 | X112110000Y-57700000D03* 744 | D21* 745 | X111210000Y-57700000D03* 746 | D22* 747 | X112110000Y-55160000D03* 748 | D21* 749 | X111210000Y-55160000D03* 750 | X111210000Y-52620000D03* 751 | D22* 752 | X112110000Y-52620000D03* 753 | D21* 754 | X111210000Y-50080000D03* 755 | D22* 756 | X112110000Y-50080000D03* 757 | D21* 758 | X111210000Y-47540000D03* 759 | D22* 760 | X112110000Y-47540000D03* 761 | D23* 762 | X112110000Y-45000000D03* 763 | D21* 764 | X111210000Y-45000000D03* 765 | D22* 766 | X112110000Y-42460000D03* 767 | D21* 768 | X111210000Y-42460000D03* 769 | X111210000Y-39920000D03* 770 | D22* 771 | X112110000Y-39920000D03* 772 | D21* 773 | X111210000Y-37380000D03* 774 | D22* 775 | X112110000Y-37380000D03* 776 | X112110000Y-34840000D03* 777 | D21* 778 | X111210000Y-34840000D03* 779 | D23* 780 | X112110000Y-32300000D03* 781 | D21* 782 | X111210000Y-32300000D03* 783 | X111210000Y-29760000D03* 784 | D22* 785 | X112110000Y-29760000D03* 786 | D21* 787 | X111210000Y-27220000D03* 788 | D22* 789 | X112110000Y-27220000D03* 790 | X112110000Y-24680000D03* 791 | D21* 792 | X111210000Y-24680000D03* 793 | D22* 794 | X112110000Y-22140000D03* 795 | D21* 796 | X111210000Y-22140000D03* 797 | D23* 798 | X112110000Y-19600000D03* 799 | D21* 800 | X111210000Y-19600000D03* 801 | X111210000Y-17060000D03* 802 | D22* 803 | X112110000Y-17060000D03* 804 | D21* 805 | X111210000Y-14520000D03* 806 | D22* 807 | X112110000Y-14520000D03* 808 | D20* 809 | X45775100Y-63450000D03* 810 | X45775100Y-60150000D03* 811 | X153775100Y-46450000D03* 812 | X153775100Y-43150000D03* 813 | X45775100Y-29450000D03* 814 | X45775100Y-26150000D03* 815 | X225775100Y-46450000D03* 816 | X225775100Y-43150000D03* 817 | X81775100Y-29450000D03* 818 | X81775100Y-26150000D03* 819 | X208100000Y-63450000D03* 820 | X208100000Y-60150000D03* 821 | X153775100Y-75450000D03* 822 | X153775100Y-78750000D03* 823 | X99775100Y-29450000D03* 824 | X99775100Y-26150000D03* 825 | X27775100Y-46450000D03* 826 | X27775100Y-43150000D03* 827 | X81775100Y-63450000D03* 828 | X81775100Y-60150000D03* 829 | X226100000Y-29450000D03* 830 | X226100000Y-26150000D03* 831 | X46100000Y-75450000D03* 832 | X46100000Y-78750000D03* 833 | X82100000Y-46450000D03* 834 | X82100000Y-43150000D03* 835 | X171775100Y-46450000D03* 836 | X171775100Y-43150000D03* 837 | X189775100Y-46450000D03* 838 | X189775100Y-43150000D03* 839 | X171775100Y-29450000D03* 840 | X171775100Y-26150000D03* 841 | X153775100Y-29450000D03* 842 | X153775100Y-26150000D03* 843 | X171775100Y-63450000D03* 844 | X171775100Y-60150000D03* 845 | X63775100Y-63450000D03* 846 | X63775100Y-60150000D03* 847 | X189775100Y-75450000D03* 848 | X189775100Y-78750000D03* 849 | X225775100Y-75450000D03* 850 | X225775100Y-78750000D03* 851 | X154100000Y-63450000D03* 852 | X154100000Y-60150000D03* 853 | X99775100Y-63450000D03* 854 | X99775100Y-60150000D03* 855 | X45775100Y-46450000D03* 856 | X45775100Y-43150000D03* 857 | X27775100Y-75450000D03* 858 | X27775100Y-78750000D03* 859 | X189925100Y-29450000D03* 860 | X189925100Y-26150000D03* 861 | X81775100Y-75450000D03* 862 | X81775100Y-78750000D03* 863 | X207775100Y-46450000D03* 864 | X207775100Y-43150000D03* 865 | X190100000Y-63450000D03* 866 | X190100000Y-60150000D03* 867 | M02* 868 | -------------------------------------------------------------------------------- /temp/keezyboost40/keezyboost40-Edge_Cuts.gm1: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.4-0)* 2 | G04 #@! TF.CreationDate,2022-07-14T20:21:05-05:00* 3 | G04 #@! TF.ProjectId,keezyboost40,6b65657a-7962-46f6-9f73-7434302e6b69,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Profile,NP* 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (6.0.4-0)) date 2022-07-14 20:21:05* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | G04 #@! TA.AperFunction,Profile* 14 | %ADD10C,0.100000*% 15 | G04 #@! TD* 16 | G04 APERTURE END LIST* 17 | D10* 18 | X127542893Y-63999993D02* 19 | G75* 20 | G03* 21 | X128542893Y-63000000I7J999993D01* 22 | G01* 23 | X112500000Y-12500000D02* 24 | X13250000Y-12500000D01* 25 | X127542893Y-64000000D02* 26 | X114457107Y-64000000D01* 27 | X13250000Y-12500000D02* 28 | G75* 29 | G03* 30 | X12250000Y-13500000I0J-1000000D01* 31 | G01* 32 | X12250000Y-13500000D02* 33 | X12207107Y-79542893D01* 34 | X113500000Y-13500000D02* 35 | G75* 36 | G03* 37 | X112500000Y-12500000I-1000000J0D01* 38 | G01* 39 | X228750000Y-80500000D02* 40 | G75* 41 | G03* 42 | X229750000Y-79500000I0J1000000D01* 43 | G01* 44 | X113457107Y-63000000D02* 45 | X113500000Y-13500000D01* 46 | X13207107Y-80542893D02* 47 | X228750000Y-80500000D01* 48 | X229792893Y-13457107D02* 49 | G75* 50 | G03* 51 | X228792893Y-12457107I-999993J7D01* 52 | G01* 53 | X129500000Y-12500000D02* 54 | G75* 55 | G03* 56 | X128500000Y-13500000I0J-1000000D01* 57 | G01* 58 | X12207107Y-79542893D02* 59 | G75* 60 | G03* 61 | X13207107Y-80542893I999993J-7D01* 62 | G01* 63 | X113457100Y-63000000D02* 64 | G75* 65 | G03* 66 | X114457107Y-64000000I1000000J0D01* 67 | G01* 68 | X129500000Y-12500000D02* 69 | X228792893Y-12457107D01* 70 | X128500000Y-13500000D02* 71 | X128542893Y-63000000D01* 72 | X229750000Y-79500000D02* 73 | X229792893Y-13457107D01* 74 | M02* 75 | -------------------------------------------------------------------------------- /temp/keezyboost40/keezyboost40-F_Cu.gtl: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.4-0)* 2 | G04 #@! TF.CreationDate,2022-07-14T20:21:05-05:00* 3 | G04 #@! TF.ProjectId,keezyboost40,6b65657a-7962-46f6-9f73-7434302e6b69,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Copper,L1,Top* 6 | G04 #@! TF.FilePolarity,Positive* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.4-0)) date 2022-07-14 20:21:05* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 #@! TA.AperFunction,ComponentPad* 15 | %ADD10C,3.800000*% 16 | G04 #@! TD* 17 | G04 #@! TA.AperFunction,ComponentPad* 18 | %ADD11C,4.000000*% 19 | G04 #@! TD* 20 | G04 #@! TA.AperFunction,ComponentPad* 21 | %ADD12R,1.650000X1.650000*% 22 | G04 #@! TD* 23 | G04 #@! TA.AperFunction,ComponentPad* 24 | %ADD13C,1.650000*% 25 | G04 #@! TD* 26 | G04 #@! TA.AperFunction,ComponentPad* 27 | %ADD14O,1.700000X1.700000*% 28 | G04 #@! TD* 29 | G04 #@! TA.AperFunction,SMDPad,CuDef* 30 | %ADD15R,3.500000X1.700000*% 31 | G04 #@! TD* 32 | G04 #@! TA.AperFunction,ComponentPad* 33 | %ADD16R,1.700000X1.700000*% 34 | G04 #@! TD* 35 | G04 #@! TA.AperFunction,ViaPad* 36 | %ADD17C,0.800000*% 37 | G04 #@! TD* 38 | G04 #@! TA.AperFunction,Conductor* 39 | %ADD18C,0.250000*% 40 | G04 #@! TD* 41 | G04 APERTURE END LIST* 42 | D10* 43 | X106000000Y-78000000D03* 44 | X136000000Y-78000000D03* 45 | D11* 46 | X106750000Y-72450000D03* 47 | X106750000Y-20450000D03* 48 | X135250000Y-20450000D03* 49 | X135250000Y-72450000D03* 50 | D12* 51 | X112110000Y-72950000D03* 52 | D13* 53 | X114650000Y-72950000D03* 54 | X117190000Y-72950000D03* 55 | X119730000Y-72950000D03* 56 | X122270000Y-72950000D03* 57 | X124810000Y-72950000D03* 58 | X127350000Y-72950000D03* 59 | X129890000Y-72950000D03* 60 | D10* 61 | X106000000Y-15000000D03* 62 | X136000000Y-15000000D03* 63 | D14* 64 | X129890000Y-14520000D03* 65 | D15* 66 | X130790000Y-14520000D03* 67 | D14* 68 | X129890000Y-17060000D03* 69 | D15* 70 | X130790000Y-17060000D03* 71 | D16* 72 | X129890000Y-19600000D03* 73 | D15* 74 | X130790000Y-19600000D03* 75 | D14* 76 | X129890000Y-22140000D03* 77 | D15* 78 | X130790000Y-22140000D03* 79 | X130790000Y-24680000D03* 80 | D14* 81 | X129890000Y-24680000D03* 82 | D15* 83 | X130790000Y-27220000D03* 84 | D14* 85 | X129890000Y-27220000D03* 86 | X129890000Y-29760000D03* 87 | D15* 88 | X130790000Y-29760000D03* 89 | D16* 90 | X129890000Y-32300000D03* 91 | D15* 92 | X130790000Y-32300000D03* 93 | D14* 94 | X129890000Y-34840000D03* 95 | D15* 96 | X130790000Y-34840000D03* 97 | D14* 98 | X129890000Y-37380000D03* 99 | D15* 100 | X130790000Y-37380000D03* 101 | D14* 102 | X129890000Y-39920000D03* 103 | D15* 104 | X130790000Y-39920000D03* 105 | X130790000Y-42460000D03* 106 | D14* 107 | X129890000Y-42460000D03* 108 | D16* 109 | X129890000Y-45000000D03* 110 | D15* 111 | X130790000Y-45000000D03* 112 | X130790000Y-47540000D03* 113 | D14* 114 | X129890000Y-47540000D03* 115 | X129890000Y-50080000D03* 116 | D15* 117 | X130790000Y-50080000D03* 118 | X130790000Y-52620000D03* 119 | D14* 120 | X129890000Y-52620000D03* 121 | D15* 122 | X130790000Y-55160000D03* 123 | D14* 124 | X129890000Y-55160000D03* 125 | D15* 126 | X130790000Y-57700000D03* 127 | D16* 128 | X129890000Y-57700000D03* 129 | D15* 130 | X130790000Y-60240000D03* 131 | D14* 132 | X129890000Y-60240000D03* 133 | X129890000Y-62780000D03* 134 | D15* 135 | X130790000Y-62780000D03* 136 | X111210000Y-62780000D03* 137 | D14* 138 | X112110000Y-62780000D03* 139 | X112110000Y-60240000D03* 140 | D15* 141 | X111210000Y-60240000D03* 142 | X111210000Y-57700000D03* 143 | D16* 144 | X112110000Y-57700000D03* 145 | D15* 146 | X111210000Y-55160000D03* 147 | D14* 148 | X112110000Y-55160000D03* 149 | D15* 150 | X111210000Y-52620000D03* 151 | D14* 152 | X112110000Y-52620000D03* 153 | D15* 154 | X111210000Y-50080000D03* 155 | D14* 156 | X112110000Y-50080000D03* 157 | D15* 158 | X111210000Y-47540000D03* 159 | D14* 160 | X112110000Y-47540000D03* 161 | D16* 162 | X112110000Y-45000000D03* 163 | D15* 164 | X111210000Y-45000000D03* 165 | D14* 166 | X112110000Y-42460000D03* 167 | D15* 168 | X111210000Y-42460000D03* 169 | X111210000Y-39920000D03* 170 | D14* 171 | X112110000Y-39920000D03* 172 | D15* 173 | X111210000Y-37380000D03* 174 | D14* 175 | X112110000Y-37380000D03* 176 | D15* 177 | X111210000Y-34840000D03* 178 | D14* 179 | X112110000Y-34840000D03* 180 | D16* 181 | X112110000Y-32300000D03* 182 | D15* 183 | X111210000Y-32300000D03* 184 | X111210000Y-29760000D03* 185 | D14* 186 | X112110000Y-29760000D03* 187 | X112110000Y-27220000D03* 188 | D15* 189 | X111210000Y-27220000D03* 190 | X111210000Y-24680000D03* 191 | D14* 192 | X112110000Y-24680000D03* 193 | D15* 194 | X111210000Y-22140000D03* 195 | D14* 196 | X112110000Y-22140000D03* 197 | D16* 198 | X112110000Y-19600000D03* 199 | D15* 200 | X111210000Y-19600000D03* 201 | X111210000Y-17060000D03* 202 | D14* 203 | X112110000Y-17060000D03* 204 | X112110000Y-14520000D03* 205 | D15* 206 | X111210000Y-14520000D03* 207 | D17* 208 | X111750000Y-71000000D03* 209 | X111750000Y-64229502D03* 210 | X114500000Y-71000000D03* 211 | X108479502Y-64229502D03* 212 | X108500000Y-57750000D03* 213 | X136775500Y-65750000D03* 214 | X136750000Y-29750000D03* 215 | X104500000Y-66250000D03* 216 | X103750000Y-29500000D03* 217 | X103025500Y-46500000D03* 218 | X103025500Y-66275500D03* 219 | X137500000Y-43500000D03* 220 | X137775003Y-65750000D03* 221 | X135130000Y-37380000D03* 222 | X102301000Y-63750000D03* 223 | X102102081Y-66657994D03* 224 | X138862989Y-61137011D03* 225 | X138774506Y-65750000D03* 226 | X136051000Y-61000000D03* 227 | X139600689Y-45899311D03* 228 | X139774009Y-65750000D03* 229 | X141785908Y-73648385D03* 230 | X135326500Y-40000000D03* 231 | X101750000Y-75000000D03* 232 | X135326500Y-45714386D03* 233 | X141500000Y-67750000D03* 234 | X102000000Y-67750000D03* 235 | X104750000Y-24750000D03* 236 | X111000000Y-68750000D03* 237 | X105500000Y-68598051D03* 238 | X31750000Y-61250000D03* 239 | X31750000Y-56250000D03* 240 | X31750000Y-39500000D03* 241 | X31750000Y-44000000D03* 242 | X31750000Y-27000000D03* 243 | X31750000Y-73000000D03* 244 | X49750000Y-56750000D03* 245 | X49750000Y-44000000D03* 246 | X49750000Y-39500000D03* 247 | X49750000Y-61000000D03* 248 | X49750000Y-27000000D03* 249 | X49750000Y-73500000D03* 250 | X49750000Y-37000000D03* 251 | X67750000Y-56500000D03* 252 | X67750000Y-44000000D03* 253 | X67750000Y-73750000D03* 254 | X67750000Y-38750000D03* 255 | X67750000Y-60750000D03* 256 | X67750000Y-26750000D03* 257 | X85750000Y-26750000D03* 258 | X104500000Y-50250000D03* 259 | X85750000Y-39250000D03* 260 | X86000000Y-43500000D03* 261 | X85750000Y-60750000D03* 262 | X104474500Y-57000000D03* 263 | X85750000Y-73500000D03* 264 | X85750000Y-56500000D03* 265 | X140500000Y-73500000D03* 266 | X140500000Y-26750000D03* 267 | X140500000Y-60500000D03* 268 | X140500000Y-56750000D03* 269 | X140500000Y-39500000D03* 270 | X140500000Y-44000000D03* 271 | X157750000Y-73750000D03* 272 | X157750000Y-39750000D03* 273 | X157750000Y-26750000D03* 274 | X157750000Y-61000000D03* 275 | X157750000Y-56750000D03* 276 | X157750000Y-43750000D03* 277 | X175750000Y-61000000D03* 278 | X175750000Y-26750000D03* 279 | X175750000Y-73500000D03* 280 | X175750000Y-56500000D03* 281 | X175750000Y-43750000D03* 282 | X175750000Y-39750000D03* 283 | X193750000Y-60500000D03* 284 | X193750000Y-56500000D03* 285 | X193750000Y-43750000D03* 286 | X193750000Y-26750000D03* 287 | X193750000Y-73500000D03* 288 | X193750000Y-39500000D03* 289 | X211750000Y-39500000D03* 290 | X211750000Y-56750000D03* 291 | X211750000Y-73750000D03* 292 | X211750000Y-26750000D03* 293 | X211750000Y-43750000D03* 294 | X211750000Y-60750000D03* 295 | X106500000Y-69322551D03* 296 | X106775500Y-62750000D03* 297 | X122250000Y-69500000D03* 298 | X107500000Y-65500000D03* 299 | X107755002Y-60250000D03* 300 | X117000000Y-65500000D03* 301 | X101474500Y-55250000D03* 302 | X127500000Y-75000000D03* 303 | X100829952Y-74609472D03* 304 | X124750000Y-75750000D03* 305 | X100750000Y-52750000D03* 306 | X101488084Y-76149661D03* 307 | D18* 308 | X114550000Y-71000000D02* 309 | X114500000Y-71000000D01* 310 | X114650000Y-71100000D02* 311 | X114550000Y-71000000D01* 312 | X114650000Y-72950000D02* 313 | X114650000Y-71100000D01* 314 | X108479502Y-64229502D02* 315 | X108479502Y-57770498D01* 316 | X111750000Y-71000000D02* 317 | X111750000Y-64229502D01* 318 | X108479502Y-57770498D02* 319 | X108500000Y-57750000D01* 320 | X103750000Y-65500000D02* 321 | X104500000Y-66250000D01* 322 | X103750000Y-29500000D02* 323 | X103750000Y-65500000D01* 324 | X136775500Y-29775500D02* 325 | X136750000Y-29750000D01* 326 | X136775500Y-65750000D02* 327 | X136775500Y-29775500D01* 328 | X103025500Y-66275500D02* 329 | X103025500Y-46500000D01* 330 | X137775003Y-43775003D02* 331 | X137500000Y-43500000D01* 332 | X137775003Y-65750000D02* 333 | X137775003Y-43775003D01* 334 | X138774506Y-65750000D02* 335 | X138774506Y-61225494D01* 336 | X136051000Y-38301000D02* 337 | X135130000Y-37380000D01* 338 | X102301000Y-63750000D02* 339 | X102301000Y-66459075D01* 340 | X102301000Y-66459075D02* 341 | X102102081Y-66657994D01* 342 | X136051000Y-61000000D02* 343 | X136051000Y-38301000D01* 344 | X138774506Y-61225494D02* 345 | X138862989Y-61137011D01* 346 | X101750000Y-75000000D02* 347 | X101750000Y-68000000D01* 348 | X135326500Y-45714386D02* 349 | X135326500Y-40000000D01* 350 | X141274579Y-73137056D02* 351 | X141785908Y-73648385D01* 352 | X101750000Y-68000000D02* 353 | X102000000Y-67750000D01* 354 | X139774009Y-65750000D02* 355 | X139774009Y-46072631D01* 356 | X141500000Y-67750000D02* 357 | X141274579Y-67975421D01* 358 | X141274579Y-67975421D02* 359 | X141274579Y-73137056D01* 360 | X139774009Y-46072631D02* 361 | X139600689Y-45899311D01* 362 | X105224511Y-68322562D02* 363 | X105500000Y-68598051D01* 364 | X111000000Y-68750000D02* 365 | X111000000Y-71840000D01* 366 | X111000000Y-71840000D02* 367 | X112110000Y-72950000D01* 368 | X105224511Y-25224511D02* 369 | X105224511Y-68322562D01* 370 | X104750000Y-24750000D02* 371 | X105224511Y-25224511D01* 372 | X32474521Y-38775479D02* 373 | X31750000Y-39500000D01* 374 | X32474521Y-72275479D02* 375 | X31750000Y-73000000D01* 376 | X31750000Y-56250000D02* 377 | X31750000Y-44000000D01* 378 | X32474521Y-27724521D02* 379 | X32474521Y-38775479D01* 380 | X31750000Y-27000000D02* 381 | X32474521Y-27724521D01* 382 | X31750000Y-61250000D02* 383 | X32474521Y-61974521D01* 384 | X32474521Y-61974521D02* 385 | X32474521Y-72275479D01* 386 | X49750000Y-44000000D02* 387 | X49750000Y-56750000D01* 388 | X49750000Y-37000000D02* 389 | X49750000Y-39500000D01* 390 | X49750000Y-27000000D02* 391 | X49750000Y-37000000D01* 392 | X49750000Y-61000000D02* 393 | X49750000Y-73500000D01* 394 | X67750000Y-44000000D02* 395 | X67750000Y-56500000D01* 396 | X67750000Y-60750000D02* 397 | X67750000Y-73750000D01* 398 | X67750000Y-26750000D02* 399 | X67750000Y-38750000D01* 400 | X104474500Y-57000000D02* 401 | X104474500Y-50275500D01* 402 | X86474521Y-43974521D02* 403 | X86474521Y-55775479D01* 404 | X85750000Y-73500000D02* 405 | X85750000Y-60750000D01* 406 | X86000000Y-43500000D02* 407 | X86474521Y-43974521D01* 408 | X104474500Y-50275500D02* 409 | X104500000Y-50250000D01* 410 | X85750000Y-39250000D02* 411 | X85750000Y-26750000D01* 412 | X86474521Y-55775479D02* 413 | X85750000Y-56500000D01* 414 | X140500000Y-39500000D02* 415 | X140500000Y-26750000D01* 416 | X140500000Y-73500000D02* 417 | X140500000Y-60500000D01* 418 | X140500000Y-56750000D02* 419 | X140500000Y-44000000D01* 420 | X157750000Y-26750000D02* 421 | X157750000Y-39750000D01* 422 | X157750000Y-43750000D02* 423 | X158474521Y-44474521D01* 424 | X158474521Y-56025479D02* 425 | X157750000Y-56750000D01* 426 | X158474521Y-44474521D02* 427 | X158474521Y-56025479D01* 428 | X157750000Y-61000000D02* 429 | X157750000Y-73750000D01* 430 | X175750000Y-43750000D02* 431 | X175750000Y-56500000D01* 432 | X175750000Y-61000000D02* 433 | X175750000Y-73500000D01* 434 | X175750000Y-26750000D02* 435 | X175750000Y-39750000D01* 436 | X193750000Y-56500000D02* 437 | X193750000Y-43750000D01* 438 | X193750000Y-39500000D02* 439 | X193750000Y-26750000D01* 440 | X193750000Y-73500000D02* 441 | X193750000Y-60500000D01* 442 | X212474521Y-73025479D02* 443 | X211750000Y-73750000D01* 444 | X212474521Y-27474521D02* 445 | X212474521Y-38775479D01* 446 | X211750000Y-60750000D02* 447 | X212474521Y-61474521D01* 448 | X211750000Y-56750000D02* 449 | X211750000Y-43750000D01* 450 | X212474521Y-61474521D02* 451 | X212474521Y-73025479D01* 452 | X211750000Y-26750000D02* 453 | X212474521Y-27474521D01* 454 | X212474521Y-38775479D02* 455 | X211750000Y-39500000D01* 456 | X129890000Y-72950000D02* 457 | X129890000Y-62780000D01* 458 | X106500000Y-63025500D02* 459 | X106775500Y-62750000D01* 460 | X106500000Y-69322551D02* 461 | X106500000Y-63025500D01* 462 | X122250000Y-69500000D02* 463 | X122270000Y-69520000D01* 464 | X122270000Y-69520000D02* 465 | X122270000Y-72950000D01* 466 | X107500000Y-65500000D02* 467 | X107500000Y-60505002D01* 468 | X107500000Y-60505002D02* 469 | X107755002Y-60250000D01* 470 | X117190000Y-72950000D02* 471 | X117190000Y-65690000D01* 472 | X117190000Y-65690000D02* 473 | X117000000Y-65500000D01* 474 | X101474500Y-55250000D02* 475 | X101250000Y-55474500D01* 476 | X127500000Y-75000000D02* 477 | X127500000Y-73100000D01* 478 | X101250000Y-55474500D02* 479 | X101250000Y-74000000D01* 480 | X101250000Y-74000000D02* 481 | X101250000Y-74189424D01* 482 | X127500000Y-73100000D02* 483 | X127350000Y-72950000D01* 484 | X101250000Y-74189424D02* 485 | X100829952Y-74609472D01* 486 | X100000000Y-73233008D02* 487 | X100750000Y-72483008D01* 488 | X100000000Y-75411577D02* 489 | X100738084Y-76149661D01* 490 | X100000000Y-75411577D02* 491 | X100000000Y-73233008D01* 492 | X100738084Y-76149661D02* 493 | X101488084Y-76149661D01* 494 | X100750000Y-72483008D02* 495 | X100750000Y-52750000D01* 496 | X124810000Y-75690000D02* 497 | X124810000Y-72950000D01* 498 | X124750000Y-75750000D02* 499 | X124810000Y-75690000D01* 500 | M02* 501 | -------------------------------------------------------------------------------- /temp/keezyboost40/keezyboost40-F_Mask.gts: -------------------------------------------------------------------------------- 1 | G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.4-0)* 2 | G04 #@! TF.CreationDate,2022-07-14T20:21:05-05:00* 3 | G04 #@! TF.ProjectId,keezyboost40,6b65657a-7962-46f6-9f73-7434302e6b69,rev?* 4 | G04 #@! TF.SameCoordinates,Original* 5 | G04 #@! TF.FileFunction,Soldermask,Top* 6 | G04 #@! TF.FilePolarity,Negative* 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.4-0)) date 2022-07-14 20:21:05* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,3.429000*% 15 | %ADD11C,0.990600*% 16 | %ADD12C,1.701800*% 17 | %ADD13C,3.000000*% 18 | %ADD14C,2.200000*% 19 | %ADD15C,3.800000*% 20 | %ADD16C,4.000000*% 21 | %ADD17R,1.650000X1.650000*% 22 | %ADD18C,1.650000*% 23 | %ADD19O,1.700000X1.700000*% 24 | %ADD20R,3.500000X1.700000*% 25 | %ADD21R,1.700000X1.700000*% 26 | G04 APERTURE END LIST* 27 | D10* 28 | X202000000Y-55000000D03* 29 | D11* 30 | X207220000Y-50800000D03* 31 | D12* 32 | X196500000Y-55000000D03* 33 | D13* 34 | X202000000Y-60950000D03* 35 | D12* 36 | X207500000Y-55000000D03* 37 | D13* 38 | X197000000Y-58750000D03* 39 | D12* 40 | X52500000Y-38000000D03* 41 | X63500000Y-38000000D03* 42 | D11* 43 | X63220000Y-33800000D03* 44 | D13* 45 | X53000000Y-41750000D03* 46 | D10* 47 | X58000000Y-38000000D03* 48 | D13* 49 | X58000000Y-43950000D03* 50 | D11* 51 | X99220000Y-16800000D03* 52 | D12* 53 | X88500000Y-21000000D03* 54 | X99500000Y-21000000D03* 55 | D13* 56 | X89000000Y-24750000D03* 57 | D10* 58 | X94000000Y-21000000D03* 59 | D13* 60 | X94000000Y-26950000D03* 61 | D14* 62 | X85000000Y-46500000D03* 63 | D11* 64 | X81220000Y-67800000D03* 65 | D13* 66 | X76000000Y-77950000D03* 67 | X71000000Y-75750000D03* 68 | D12* 69 | X70500000Y-72000000D03* 70 | D10* 71 | X76000000Y-72000000D03* 72 | D12* 73 | X81500000Y-72000000D03* 74 | D13* 75 | X148000000Y-77950000D03* 76 | D12* 77 | X142500000Y-72000000D03* 78 | D10* 79 | X148000000Y-72000000D03* 80 | D11* 81 | X153220000Y-67800000D03* 82 | D13* 83 | X143000000Y-75750000D03* 84 | D12* 85 | X153500000Y-72000000D03* 86 | D11* 87 | X189220000Y-16800000D03* 88 | D12* 89 | X189500000Y-21000000D03* 90 | D13* 91 | X179000000Y-24750000D03* 92 | D12* 93 | X178500000Y-21000000D03* 94 | D13* 95 | X184000000Y-26950000D03* 96 | D10* 97 | X184000000Y-21000000D03* 98 | D13* 99 | X22000000Y-26950000D03* 100 | X17000000Y-24750000D03* 101 | D11* 102 | X27220000Y-16800000D03* 103 | D12* 104 | X27500000Y-21000000D03* 105 | X16500000Y-21000000D03* 106 | D10* 107 | X22000000Y-21000000D03* 108 | D13* 109 | X35000000Y-41750000D03* 110 | X40000000Y-43950000D03* 111 | D12* 112 | X34500000Y-38000000D03* 113 | D11* 114 | X45220000Y-33800000D03* 115 | D12* 116 | X45500000Y-38000000D03* 117 | D10* 118 | X40000000Y-38000000D03* 119 | D11* 120 | X81220000Y-33800000D03* 121 | D13* 122 | X71000000Y-41750000D03* 123 | D12* 124 | X81500000Y-38000000D03* 125 | D10* 126 | X76000000Y-38000000D03* 127 | D12* 128 | X70500000Y-38000000D03* 129 | D13* 130 | X76000000Y-43950000D03* 131 | D12* 132 | X45500000Y-72000000D03* 133 | D13* 134 | X35000000Y-75750000D03* 135 | D12* 136 | X34500000Y-72000000D03* 137 | D10* 138 | X40000000Y-72000000D03* 139 | D11* 140 | X45220000Y-67800000D03* 141 | D13* 142 | X40000000Y-77950000D03* 143 | X220000000Y-43950000D03* 144 | D12* 145 | X214500000Y-38000000D03* 146 | X225500000Y-38000000D03* 147 | D13* 148 | X215000000Y-41750000D03* 149 | D10* 150 | X220000000Y-38000000D03* 151 | D11* 152 | X225220000Y-33800000D03* 153 | D10* 154 | X22000000Y-55000000D03* 155 | D12* 156 | X27500000Y-55000000D03* 157 | D11* 158 | X27220000Y-50800000D03* 159 | D12* 160 | X16500000Y-55000000D03* 161 | D13* 162 | X17000000Y-58750000D03* 163 | X22000000Y-60950000D03* 164 | D12* 165 | X34500000Y-21000000D03* 166 | D11* 167 | X45220000Y-16800000D03* 168 | D10* 169 | X40000000Y-21000000D03* 170 | D13* 171 | X35000000Y-24750000D03* 172 | D12* 173 | X45500000Y-21000000D03* 174 | D13* 175 | X40000000Y-26950000D03* 176 | D12* 177 | X99500000Y-72000000D03* 178 | X88500000Y-72000000D03* 179 | D13* 180 | X89000000Y-75750000D03* 181 | D11* 182 | X99220000Y-67800000D03* 183 | D13* 184 | X94000000Y-77950000D03* 185 | D10* 186 | X94000000Y-72000000D03* 187 | D13* 188 | X197000000Y-24750000D03* 189 | D12* 190 | X196500000Y-21000000D03* 191 | D10* 192 | X202000000Y-21000000D03* 193 | D13* 194 | X202000000Y-26950000D03* 195 | D11* 196 | X207220000Y-16800000D03* 197 | D12* 198 | X207500000Y-21000000D03* 199 | D11* 200 | X207220000Y-67800000D03* 201 | D13* 202 | X197000000Y-75750000D03* 203 | D12* 204 | X207500000Y-72000000D03* 205 | X196500000Y-72000000D03* 206 | D13* 207 | X202000000Y-77950000D03* 208 | D10* 209 | X202000000Y-72000000D03* 210 | D11* 211 | X225220000Y-50800000D03* 212 | D10* 213 | X220000000Y-55000000D03* 214 | D12* 215 | X214500000Y-55000000D03* 216 | D13* 217 | X220000000Y-60950000D03* 218 | X215000000Y-58750000D03* 219 | D12* 220 | X225500000Y-55000000D03* 221 | D11* 222 | X27220000Y-33800000D03* 223 | D12* 224 | X27500000Y-38000000D03* 225 | D13* 226 | X17000000Y-41750000D03* 227 | D10* 228 | X22000000Y-38000000D03* 229 | D12* 230 | X16500000Y-38000000D03* 231 | D13* 232 | X22000000Y-43950000D03* 233 | X53000000Y-58750000D03* 234 | D12* 235 | X52500000Y-55000000D03* 236 | D10* 237 | X58000000Y-55000000D03* 238 | D11* 239 | X63220000Y-50800000D03* 240 | D12* 241 | X63500000Y-55000000D03* 242 | D13* 243 | X58000000Y-60950000D03* 244 | D12* 245 | X207500000Y-38000000D03* 246 | D13* 247 | X202000000Y-43950000D03* 248 | D11* 249 | X207220000Y-33800000D03* 250 | D12* 251 | X196500000Y-38000000D03* 252 | D13* 253 | X197000000Y-41750000D03* 254 | D10* 255 | X202000000Y-38000000D03* 256 | D13* 257 | X143000000Y-58750000D03* 258 | D12* 259 | X142500000Y-55000000D03* 260 | D10* 261 | X148000000Y-55000000D03* 262 | D13* 263 | X148000000Y-60950000D03* 264 | D11* 265 | X153220000Y-50800000D03* 266 | D12* 267 | X153500000Y-55000000D03* 268 | X178500000Y-38000000D03* 269 | D13* 270 | X179000000Y-41750000D03* 271 | D12* 272 | X189500000Y-38000000D03* 273 | D10* 274 | X184000000Y-38000000D03* 275 | D13* 276 | X184000000Y-43950000D03* 277 | D11* 278 | X189220000Y-33800000D03* 279 | D14* 280 | X31000000Y-63500000D03* 281 | D13* 282 | X179000000Y-75750000D03* 283 | D12* 284 | X178500000Y-72000000D03* 285 | D10* 286 | X184000000Y-72000000D03* 287 | D13* 288 | X184000000Y-77950000D03* 289 | D11* 290 | X189220000Y-67800000D03* 291 | D12* 292 | X189500000Y-72000000D03* 293 | D11* 294 | X63220000Y-67800000D03* 295 | D12* 296 | X63500000Y-72000000D03* 297 | D13* 298 | X58000000Y-77950000D03* 299 | D10* 300 | X58000000Y-72000000D03* 301 | D12* 302 | X52500000Y-72000000D03* 303 | D13* 304 | X53000000Y-75750000D03* 305 | D11* 306 | X225220000Y-67800000D03* 307 | D12* 308 | X214500000Y-72000000D03* 309 | X225500000Y-72000000D03* 310 | D13* 311 | X220000000Y-77950000D03* 312 | X215000000Y-75750000D03* 313 | D10* 314 | X220000000Y-72000000D03* 315 | D12* 316 | X225500000Y-21000000D03* 317 | D11* 318 | X225220000Y-16800000D03* 319 | D12* 320 | X214500000Y-21000000D03* 321 | D10* 322 | X220000000Y-21000000D03* 323 | D13* 324 | X220000000Y-26950000D03* 325 | X215000000Y-24750000D03* 326 | D14* 327 | X31000000Y-29500000D03* 328 | D12* 329 | X99500000Y-38000000D03* 330 | D11* 331 | X99220000Y-33800000D03* 332 | D12* 333 | X88500000Y-38000000D03* 334 | D13* 335 | X89000000Y-41750000D03* 336 | D10* 337 | X94000000Y-38000000D03* 338 | D13* 339 | X94000000Y-43950000D03* 340 | D12* 341 | X160500000Y-55000000D03* 342 | D13* 343 | X161000000Y-58750000D03* 344 | X166000000Y-60950000D03* 345 | D10* 346 | X166000000Y-55000000D03* 347 | D12* 348 | X171500000Y-55000000D03* 349 | D11* 350 | X171220000Y-50800000D03* 351 | X63220000Y-16800000D03* 352 | D10* 353 | X58000000Y-21000000D03* 354 | D12* 355 | X63500000Y-21000000D03* 356 | D13* 357 | X53000000Y-24750000D03* 358 | X58000000Y-26950000D03* 359 | D12* 360 | X52500000Y-21000000D03* 361 | D14* 362 | X211000000Y-29500000D03* 363 | X157000000Y-46500000D03* 364 | X211000000Y-63500000D03* 365 | D13* 366 | X17000000Y-75750000D03* 367 | D11* 368 | X27220000Y-67800000D03* 369 | D12* 370 | X27500000Y-72000000D03* 371 | D10* 372 | X22000000Y-72000000D03* 373 | D13* 374 | X22000000Y-77950000D03* 375 | D12* 376 | X16500000Y-72000000D03* 377 | D10* 378 | X148000000Y-21000000D03* 379 | D12* 380 | X142500000Y-21000000D03* 381 | D13* 382 | X148000000Y-26950000D03* 383 | D12* 384 | X153500000Y-21000000D03* 385 | D13* 386 | X143000000Y-24750000D03* 387 | D11* 388 | X153220000Y-16800000D03* 389 | D15* 390 | X106000000Y-78000000D03* 391 | X136000000Y-78000000D03* 392 | D11* 393 | X171220000Y-67800000D03* 394 | D13* 395 | X166000000Y-77950000D03* 396 | X161000000Y-75750000D03* 397 | D12* 398 | X171500000Y-72000000D03* 399 | X160500000Y-72000000D03* 400 | D10* 401 | X166000000Y-72000000D03* 402 | D12* 403 | X171500000Y-38000000D03* 404 | D13* 405 | X166000000Y-43950000D03* 406 | D11* 407 | X171220000Y-33800000D03* 408 | D12* 409 | X160500000Y-38000000D03* 410 | D13* 411 | X161000000Y-41750000D03* 412 | D10* 413 | X166000000Y-38000000D03* 414 | D16* 415 | X106750000Y-72450000D03* 416 | X106750000Y-20450000D03* 417 | X135250000Y-20450000D03* 418 | X135250000Y-72450000D03* 419 | D17* 420 | X112110000Y-72950000D03* 421 | D18* 422 | X114650000Y-72950000D03* 423 | X117190000Y-72950000D03* 424 | X119730000Y-72950000D03* 425 | X122270000Y-72950000D03* 426 | X124810000Y-72950000D03* 427 | X127350000Y-72950000D03* 428 | X129890000Y-72950000D03* 429 | D15* 430 | X106000000Y-15000000D03* 431 | D10* 432 | X166000000Y-21000000D03* 433 | D12* 434 | X160500000Y-21000000D03* 435 | X171500000Y-21000000D03* 436 | D13* 437 | X166000000Y-26950000D03* 438 | D11* 439 | X171220000Y-16800000D03* 440 | D13* 441 | X161000000Y-24750000D03* 442 | D10* 443 | X76000000Y-21000000D03* 444 | D11* 445 | X81220000Y-16800000D03* 446 | D13* 447 | X71000000Y-24750000D03* 448 | D12* 449 | X70500000Y-21000000D03* 450 | D13* 451 | X76000000Y-26950000D03* 452 | D12* 453 | X81500000Y-21000000D03* 454 | D13* 455 | X179000000Y-58750000D03* 456 | D11* 457 | X189220000Y-50800000D03* 458 | D10* 459 | X184000000Y-55000000D03* 460 | D12* 461 | X178500000Y-55000000D03* 462 | D13* 463 | X184000000Y-60950000D03* 464 | D12* 465 | X189500000Y-55000000D03* 466 | D11* 467 | X81220000Y-50800000D03* 468 | D13* 469 | X71000000Y-58750000D03* 470 | D12* 471 | X70500000Y-55000000D03* 472 | D10* 473 | X76000000Y-55000000D03* 474 | D13* 475 | X76000000Y-60950000D03* 476 | D12* 477 | X81500000Y-55000000D03* 478 | D13* 479 | X40000000Y-60950000D03* 480 | D12* 481 | X45500000Y-55000000D03* 482 | D10* 483 | X40000000Y-55000000D03* 484 | D13* 485 | X35000000Y-58750000D03* 486 | D11* 487 | X45220000Y-50800000D03* 488 | D12* 489 | X34500000Y-55000000D03* 490 | D15* 491 | X136000000Y-15000000D03* 492 | D13* 493 | X89000000Y-58750000D03* 494 | D11* 495 | X99220000Y-50800000D03* 496 | D12* 497 | X99500000Y-55000000D03* 498 | D13* 499 | X94000000Y-60950000D03* 500 | D12* 501 | X88500000Y-55000000D03* 502 | D10* 503 | X94000000Y-55000000D03* 504 | D13* 505 | X143000000Y-41750000D03* 506 | D10* 507 | X148000000Y-38000000D03* 508 | D11* 509 | X153220000Y-33800000D03* 510 | D13* 511 | X148000000Y-43950000D03* 512 | D12* 513 | X153500000Y-38000000D03* 514 | X142500000Y-38000000D03* 515 | D19* 516 | X129890000Y-14520000D03* 517 | D20* 518 | X130790000Y-14520000D03* 519 | D19* 520 | X129890000Y-17060000D03* 521 | D20* 522 | X130790000Y-17060000D03* 523 | D21* 524 | X129890000Y-19600000D03* 525 | D20* 526 | X130790000Y-19600000D03* 527 | D19* 528 | X129890000Y-22140000D03* 529 | D20* 530 | X130790000Y-22140000D03* 531 | X130790000Y-24680000D03* 532 | D19* 533 | X129890000Y-24680000D03* 534 | D20* 535 | X130790000Y-27220000D03* 536 | D19* 537 | X129890000Y-27220000D03* 538 | X129890000Y-29760000D03* 539 | D20* 540 | X130790000Y-29760000D03* 541 | D21* 542 | X129890000Y-32300000D03* 543 | D20* 544 | X130790000Y-32300000D03* 545 | D19* 546 | X129890000Y-34840000D03* 547 | D20* 548 | X130790000Y-34840000D03* 549 | D19* 550 | X129890000Y-37380000D03* 551 | D20* 552 | X130790000Y-37380000D03* 553 | D19* 554 | X129890000Y-39920000D03* 555 | D20* 556 | X130790000Y-39920000D03* 557 | X130790000Y-42460000D03* 558 | D19* 559 | X129890000Y-42460000D03* 560 | D21* 561 | X129890000Y-45000000D03* 562 | D20* 563 | X130790000Y-45000000D03* 564 | X130790000Y-47540000D03* 565 | D19* 566 | X129890000Y-47540000D03* 567 | X129890000Y-50080000D03* 568 | D20* 569 | X130790000Y-50080000D03* 570 | X130790000Y-52620000D03* 571 | D19* 572 | X129890000Y-52620000D03* 573 | D20* 574 | X130790000Y-55160000D03* 575 | D19* 576 | X129890000Y-55160000D03* 577 | D20* 578 | X130790000Y-57700000D03* 579 | D21* 580 | X129890000Y-57700000D03* 581 | D20* 582 | X130790000Y-60240000D03* 583 | D19* 584 | X129890000Y-60240000D03* 585 | X129890000Y-62780000D03* 586 | D20* 587 | X130790000Y-62780000D03* 588 | X111210000Y-62780000D03* 589 | D19* 590 | X112110000Y-62780000D03* 591 | X112110000Y-60240000D03* 592 | D20* 593 | X111210000Y-60240000D03* 594 | X111210000Y-57700000D03* 595 | D21* 596 | X112110000Y-57700000D03* 597 | D20* 598 | X111210000Y-55160000D03* 599 | D19* 600 | X112110000Y-55160000D03* 601 | D20* 602 | X111210000Y-52620000D03* 603 | D19* 604 | X112110000Y-52620000D03* 605 | D20* 606 | X111210000Y-50080000D03* 607 | D19* 608 | X112110000Y-50080000D03* 609 | D20* 610 | X111210000Y-47540000D03* 611 | D19* 612 | X112110000Y-47540000D03* 613 | D21* 614 | X112110000Y-45000000D03* 615 | D20* 616 | X111210000Y-45000000D03* 617 | D19* 618 | X112110000Y-42460000D03* 619 | D20* 620 | X111210000Y-42460000D03* 621 | X111210000Y-39920000D03* 622 | D19* 623 | X112110000Y-39920000D03* 624 | D20* 625 | X111210000Y-37380000D03* 626 | D19* 627 | X112110000Y-37380000D03* 628 | D20* 629 | X111210000Y-34840000D03* 630 | D19* 631 | X112110000Y-34840000D03* 632 | D21* 633 | X112110000Y-32300000D03* 634 | D20* 635 | X111210000Y-32300000D03* 636 | X111210000Y-29760000D03* 637 | D19* 638 | X112110000Y-29760000D03* 639 | X112110000Y-27220000D03* 640 | D20* 641 | X111210000Y-27220000D03* 642 | X111210000Y-24680000D03* 643 | D19* 644 | X112110000Y-24680000D03* 645 | D20* 646 | X111210000Y-22140000D03* 647 | D19* 648 | X112110000Y-22140000D03* 649 | D21* 650 | X112110000Y-19600000D03* 651 | D20* 652 | X111210000Y-19600000D03* 653 | X111210000Y-17060000D03* 654 | D19* 655 | X112110000Y-17060000D03* 656 | X112110000Y-14520000D03* 657 | D20* 658 | X111210000Y-14520000D03* 659 | M02* 660 | -------------------------------------------------------------------------------- /temp/keezyboost40/keezyboost40-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (6.0.4-0)} date Thursday, July 14, 2022 at 08:21:05 pm 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2022-07-14T20:21:05-05:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(6.0.4-0) 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | METRIC 9 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 10 | T1C0.991 11 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 12 | T2C1.702 13 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 14 | T3C2.200 15 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 16 | T4C3.000 17 | ; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill 18 | T5C3.429 19 | % 20 | G90 21 | G05 22 | T1 23 | X27.22Y-16.8 24 | X27.22Y-33.8 25 | X27.22Y-50.8 26 | X27.22Y-67.8 27 | X45.22Y-16.8 28 | X45.22Y-33.8 29 | X45.22Y-50.8 30 | X45.22Y-67.8 31 | X63.22Y-16.8 32 | X63.22Y-33.8 33 | X63.22Y-50.8 34 | X63.22Y-67.8 35 | X81.22Y-16.8 36 | X81.22Y-33.8 37 | X81.22Y-50.8 38 | X81.22Y-67.8 39 | X99.22Y-16.8 40 | X99.22Y-33.8 41 | X99.22Y-50.8 42 | X99.22Y-67.8 43 | X153.22Y-16.8 44 | X153.22Y-33.8 45 | X153.22Y-50.8 46 | X153.22Y-67.8 47 | X171.22Y-16.8 48 | X171.22Y-33.8 49 | X171.22Y-50.8 50 | X171.22Y-67.8 51 | X189.22Y-16.8 52 | X189.22Y-33.8 53 | X189.22Y-50.8 54 | X189.22Y-67.8 55 | X207.22Y-16.8 56 | X207.22Y-33.8 57 | X207.22Y-50.8 58 | X207.22Y-67.8 59 | X225.22Y-16.8 60 | X225.22Y-33.8 61 | X225.22Y-50.8 62 | X225.22Y-67.8 63 | T2 64 | X16.5Y-21.0 65 | X16.5Y-38.0 66 | X16.5Y-55.0 67 | X16.5Y-72.0 68 | X27.5Y-21.0 69 | X27.5Y-38.0 70 | X27.5Y-55.0 71 | X27.5Y-72.0 72 | X34.5Y-21.0 73 | X34.5Y-38.0 74 | X34.5Y-55.0 75 | X34.5Y-72.0 76 | X45.5Y-21.0 77 | X45.5Y-38.0 78 | X45.5Y-55.0 79 | X45.5Y-72.0 80 | X52.5Y-21.0 81 | X52.5Y-38.0 82 | X52.5Y-55.0 83 | X52.5Y-72.0 84 | X63.5Y-21.0 85 | X63.5Y-38.0 86 | X63.5Y-55.0 87 | X63.5Y-72.0 88 | X70.5Y-21.0 89 | X70.5Y-38.0 90 | X70.5Y-55.0 91 | X70.5Y-72.0 92 | X81.5Y-21.0 93 | X81.5Y-38.0 94 | X81.5Y-55.0 95 | X81.5Y-72.0 96 | X88.5Y-21.0 97 | X88.5Y-38.0 98 | X88.5Y-55.0 99 | X88.5Y-72.0 100 | X99.5Y-21.0 101 | X99.5Y-38.0 102 | X99.5Y-55.0 103 | X99.5Y-72.0 104 | X142.5Y-21.0 105 | X142.5Y-38.0 106 | X142.5Y-55.0 107 | X142.5Y-72.0 108 | X153.5Y-21.0 109 | X153.5Y-38.0 110 | X153.5Y-55.0 111 | X153.5Y-72.0 112 | X160.5Y-21.0 113 | X160.5Y-38.0 114 | X160.5Y-55.0 115 | X160.5Y-72.0 116 | X171.5Y-21.0 117 | X171.5Y-38.0 118 | X171.5Y-55.0 119 | X171.5Y-72.0 120 | X178.5Y-21.0 121 | X178.5Y-38.0 122 | X178.5Y-55.0 123 | X178.5Y-72.0 124 | X189.5Y-21.0 125 | X189.5Y-38.0 126 | X189.5Y-55.0 127 | X189.5Y-72.0 128 | X196.5Y-21.0 129 | X196.5Y-38.0 130 | X196.5Y-55.0 131 | X196.5Y-72.0 132 | X207.5Y-21.0 133 | X207.5Y-38.0 134 | X207.5Y-55.0 135 | X207.5Y-72.0 136 | X214.5Y-21.0 137 | X214.5Y-38.0 138 | X214.5Y-55.0 139 | X214.5Y-72.0 140 | X225.5Y-21.0 141 | X225.5Y-38.0 142 | X225.5Y-55.0 143 | X225.5Y-72.0 144 | T3 145 | X31.0Y-29.5 146 | X31.0Y-63.5 147 | X85.0Y-46.5 148 | X157.0Y-46.5 149 | X211.0Y-29.5 150 | X211.0Y-63.5 151 | T4 152 | X17.0Y-24.75 153 | X17.0Y-41.75 154 | X17.0Y-58.75 155 | X17.0Y-75.75 156 | X22.0Y-26.95 157 | X22.0Y-43.95 158 | X22.0Y-60.95 159 | X22.0Y-77.95 160 | X35.0Y-24.75 161 | X35.0Y-41.75 162 | X35.0Y-58.75 163 | X35.0Y-75.75 164 | X40.0Y-26.95 165 | X40.0Y-43.95 166 | X40.0Y-60.95 167 | X40.0Y-77.95 168 | X53.0Y-24.75 169 | X53.0Y-41.75 170 | X53.0Y-58.75 171 | X53.0Y-75.75 172 | X58.0Y-26.95 173 | X58.0Y-43.95 174 | X58.0Y-60.95 175 | X58.0Y-77.95 176 | X71.0Y-24.75 177 | X71.0Y-41.75 178 | X71.0Y-58.75 179 | X71.0Y-75.75 180 | X76.0Y-26.95 181 | X76.0Y-43.95 182 | X76.0Y-60.95 183 | X76.0Y-77.95 184 | X89.0Y-24.75 185 | X89.0Y-41.75 186 | X89.0Y-58.75 187 | X89.0Y-75.75 188 | X94.0Y-26.95 189 | X94.0Y-43.95 190 | X94.0Y-60.95 191 | X94.0Y-77.95 192 | X143.0Y-24.75 193 | X143.0Y-41.75 194 | X143.0Y-58.75 195 | X143.0Y-75.75 196 | X148.0Y-26.95 197 | X148.0Y-43.95 198 | X148.0Y-60.95 199 | X148.0Y-77.95 200 | X161.0Y-24.75 201 | X161.0Y-41.75 202 | X161.0Y-58.75 203 | X161.0Y-75.75 204 | X166.0Y-26.95 205 | X166.0Y-43.95 206 | X166.0Y-60.95 207 | X166.0Y-77.95 208 | X179.0Y-24.75 209 | X179.0Y-41.75 210 | X179.0Y-58.75 211 | X179.0Y-75.75 212 | X184.0Y-26.95 213 | X184.0Y-43.95 214 | X184.0Y-60.95 215 | X184.0Y-77.95 216 | X197.0Y-24.75 217 | X197.0Y-41.75 218 | X197.0Y-58.75 219 | X197.0Y-75.75 220 | X202.0Y-26.95 221 | X202.0Y-43.95 222 | X202.0Y-60.95 223 | X202.0Y-77.95 224 | X215.0Y-24.75 225 | X215.0Y-41.75 226 | X215.0Y-58.75 227 | X215.0Y-75.75 228 | X220.0Y-26.95 229 | X220.0Y-43.95 230 | X220.0Y-60.95 231 | X220.0Y-77.95 232 | T5 233 | X22.0Y-21.0 234 | X22.0Y-38.0 235 | X22.0Y-55.0 236 | X22.0Y-72.0 237 | X40.0Y-21.0 238 | X40.0Y-38.0 239 | X40.0Y-55.0 240 | X40.0Y-72.0 241 | X58.0Y-21.0 242 | X58.0Y-38.0 243 | X58.0Y-55.0 244 | X58.0Y-72.0 245 | X76.0Y-21.0 246 | X76.0Y-38.0 247 | X76.0Y-55.0 248 | X76.0Y-72.0 249 | X94.0Y-21.0 250 | X94.0Y-38.0 251 | X94.0Y-55.0 252 | X94.0Y-72.0 253 | X148.0Y-21.0 254 | X148.0Y-38.0 255 | X148.0Y-55.0 256 | X148.0Y-72.0 257 | X166.0Y-21.0 258 | X166.0Y-38.0 259 | X166.0Y-55.0 260 | X166.0Y-72.0 261 | X184.0Y-21.0 262 | X184.0Y-38.0 263 | X184.0Y-55.0 264 | X184.0Y-72.0 265 | X202.0Y-21.0 266 | X202.0Y-38.0 267 | X202.0Y-55.0 268 | X202.0Y-72.0 269 | X220.0Y-21.0 270 | X220.0Y-38.0 271 | X220.0Y-55.0 272 | X220.0Y-72.0 273 | T0 274 | M30 275 | -------------------------------------------------------------------------------- /temp/keezyboost40/keezyboost40-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (6.0.4-0)} date Thursday, July 14, 2022 at 08:21:05 pm 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2022-07-14T20:21:05-05:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(6.0.4-0) 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | METRIC 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.400 11 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 12 | T2C0.950 13 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 14 | T3C1.020 15 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 16 | T4C2.200 17 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 18 | T5C3.200 19 | % 20 | G90 21 | G05 22 | T1 23 | X31.75Y-27.0 24 | X31.75Y-39.5 25 | X31.75Y-44.0 26 | X31.75Y-56.25 27 | X31.75Y-61.25 28 | X31.75Y-73.0 29 | X49.75Y-27.0 30 | X49.75Y-37.0 31 | X49.75Y-39.5 32 | X49.75Y-44.0 33 | X49.75Y-56.75 34 | X49.75Y-61.0 35 | X49.75Y-73.5 36 | X67.75Y-26.75 37 | X67.75Y-38.75 38 | X67.75Y-44.0 39 | X67.75Y-56.5 40 | X67.75Y-60.75 41 | X67.75Y-73.75 42 | X85.75Y-26.75 43 | X85.75Y-39.25 44 | X85.75Y-56.5 45 | X85.75Y-60.75 46 | X85.75Y-73.5 47 | X86.0Y-43.5 48 | X100.75Y-52.75 49 | X100.83Y-74.609 50 | X101.474Y-55.25 51 | X101.488Y-76.15 52 | X101.75Y-75.0 53 | X102.0Y-67.75 54 | X102.102Y-66.658 55 | X102.301Y-63.75 56 | X103.025Y-46.5 57 | X103.025Y-66.275 58 | X103.75Y-29.5 59 | X104.474Y-57.0 60 | X104.5Y-50.25 61 | X104.5Y-66.25 62 | X104.75Y-24.75 63 | X105.5Y-68.598 64 | X106.5Y-69.323 65 | X106.775Y-62.75 66 | X107.5Y-65.5 67 | X107.755Y-60.25 68 | X108.48Y-64.23 69 | X108.5Y-57.75 70 | X111.0Y-68.75 71 | X111.75Y-64.23 72 | X111.75Y-71.0 73 | X114.5Y-71.0 74 | X117.0Y-65.5 75 | X122.25Y-69.5 76 | X124.75Y-75.75 77 | X127.5Y-75.0 78 | X135.13Y-37.38 79 | X135.326Y-40.0 80 | X135.326Y-45.714 81 | X136.051Y-61.0 82 | X136.75Y-29.75 83 | X136.775Y-65.75 84 | X137.5Y-43.5 85 | X137.775Y-65.75 86 | X138.775Y-65.75 87 | X138.863Y-61.137 88 | X139.601Y-45.899 89 | X139.774Y-65.75 90 | X140.5Y-26.75 91 | X140.5Y-39.5 92 | X140.5Y-44.0 93 | X140.5Y-56.75 94 | X140.5Y-60.5 95 | X140.5Y-73.5 96 | X141.5Y-67.75 97 | X141.786Y-73.648 98 | X157.75Y-26.75 99 | X157.75Y-39.75 100 | X157.75Y-43.75 101 | X157.75Y-56.75 102 | X157.75Y-61.0 103 | X157.75Y-73.75 104 | X175.75Y-26.75 105 | X175.75Y-39.75 106 | X175.75Y-43.75 107 | X175.75Y-56.5 108 | X175.75Y-61.0 109 | X175.75Y-73.5 110 | X193.75Y-26.75 111 | X193.75Y-39.5 112 | X193.75Y-43.75 113 | X193.75Y-56.5 114 | X193.75Y-60.5 115 | X193.75Y-73.5 116 | X211.75Y-26.75 117 | X211.75Y-39.5 118 | X211.75Y-43.75 119 | X211.75Y-56.75 120 | X211.75Y-60.75 121 | X211.75Y-73.75 122 | T2 123 | X112.11Y-72.95 124 | X114.65Y-72.95 125 | X117.19Y-72.95 126 | X119.73Y-72.95 127 | X122.27Y-72.95 128 | X124.81Y-72.95 129 | X127.35Y-72.95 130 | X129.89Y-72.95 131 | T3 132 | X112.11Y-14.52 133 | X112.11Y-17.06 134 | X112.11Y-19.6 135 | X112.11Y-22.14 136 | X112.11Y-24.68 137 | X112.11Y-27.22 138 | X112.11Y-29.76 139 | X112.11Y-32.3 140 | X112.11Y-34.84 141 | X112.11Y-37.38 142 | X112.11Y-39.92 143 | X112.11Y-42.46 144 | X112.11Y-45.0 145 | X112.11Y-47.54 146 | X112.11Y-50.08 147 | X112.11Y-52.62 148 | X112.11Y-55.16 149 | X112.11Y-57.7 150 | X112.11Y-60.24 151 | X112.11Y-62.78 152 | X129.89Y-14.52 153 | X129.89Y-17.06 154 | X129.89Y-19.6 155 | X129.89Y-22.14 156 | X129.89Y-24.68 157 | X129.89Y-27.22 158 | X129.89Y-29.76 159 | X129.89Y-32.3 160 | X129.89Y-34.84 161 | X129.89Y-37.38 162 | X129.89Y-39.92 163 | X129.89Y-42.46 164 | X129.89Y-45.0 165 | X129.89Y-47.54 166 | X129.89Y-50.08 167 | X129.89Y-52.62 168 | X129.89Y-55.16 169 | X129.89Y-57.7 170 | X129.89Y-60.24 171 | X129.89Y-62.78 172 | T4 173 | X106.0Y-15.0 174 | X106.0Y-78.0 175 | X136.0Y-15.0 176 | X136.0Y-78.0 177 | T5 178 | X106.75Y-20.45 179 | X106.75Y-72.45 180 | X135.25Y-20.45 181 | X135.25Y-72.45 182 | T0 183 | M30 184 | --------------------------------------------------------------------------------