a cool™ board of neopixels

docs: add readme and license

dunkirk.sh 8524b905

+93
+25
LICENSE.md
··· 1 + The MIT License (MIT) 2 + ===================== 3 + 4 + Copyright © `2025` `Kieran Klukas` 5 + 6 + Permission is hereby granted, free of charge, to any person 7 + obtaining a copy of this software and associated documentation 8 + files (the “Software”), to deal in the Software without 9 + restriction, including without limitation the rights to use, 10 + copy, modify, merge, publish, distribute, sublicense, and/or sell 11 + copies of the Software, and to permit persons to whom the 12 + Software is furnished to do so, subject to the following 13 + conditions: 14 + 15 + The above copyright notice and this permission notice shall be 16 + included in all copies or substantial portions of the Software. 17 + 18 + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, 19 + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 20 + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 21 + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 22 + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 23 + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 24 + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 25 + OTHER DEALINGS IN THE SOFTWARE.
+36
README.md
··· 1 + # PxlBoard 2 + 3 + <img src="https://cachet.dunkirk.sh/emojis/SK6812RGBW/r" width="150" align="right"> 4 + 5 + > ### More deets coming never 😊 6 + > **Y**et **A**nother **G**eneric **N**eopixel **G**rid (**YAGNG**) except this one is mine so don't you dare dis it :kirby-gun: 7 + 8 + ## BOM 9 + 10 + | Part | Quantity | Price | Link | Description | Notes | 11 + | --- | --- | --- | --- | --- | --- | 12 + | PCB | | | | | | 13 + 14 + Total cost: 15 + 16 + ## Schematics 17 + 18 + > coming soon but in the meantime take a look at my keyboard blueprint :yay: 19 + 20 + ![schematic](https://raw.githubusercontent.com/taciturnaxolotl/thyme/main/.github/images/blueprint.svg) 21 + 22 + ## Build Notes 23 + 24 + Nothing yet 25 + 26 + <p align="center"> 27 + <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/line-break.svg" /> 28 + </p> 29 + 30 + <p align="center"> 31 + <i><code>&copy 2025-present <a href="https://github.com/taciturnaxolotl">Kieran Klukas</a></code></i> 32 + </p> 33 + 34 + <p align="center"> 35 + <a href="https://github.com/taciturnaxolotl/pxlboard/blob/master/LICENSE.md"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a> 36 + </p>
+32
kicad/.gitignore
··· 1 + # For PCBs designed using KiCad: https://www.kicad.org/ 2 + # Format documentation: https://kicad.org/help/file-formats/ 3 + 4 + # Temporary files 5 + *.000 6 + *.bak 7 + *.bck 8 + *.kicad_pcb-bak 9 + *.kicad_sch-bak 10 + *-backups 11 + *.kicad_prl 12 + *.sch-bak 13 + *~ 14 + _autosave-* 15 + *.tmp 16 + *-save.pro 17 + *-save.kicad_pcb 18 + fp-info-cache 19 + ~*.lck 20 + \#auto_saved_files# 21 + 22 + # Netlist files (exported from Eeschema) 23 + *.net 24 + 25 + # Autorouter files (exported from Pcbnew) 26 + *.dsn 27 + *.ses 28 + 29 + # Exported BOM files 30 + *.xml 31 + *.csv 32 + production