Update bling mx fill zones
This commit is contained in:
parent
da044a9614
commit
3a15cb1614
139 changed files with 469817 additions and 469708 deletions
48
.github/actions/export-pngs/action.yml
vendored
48
.github/actions/export-pngs/action.yml
vendored
|
@ -1,24 +1,24 @@
|
|||
name: 'Export PNGs'
|
||||
description: 'Export PNG files from a Kicad PCB'
|
||||
inputs:
|
||||
pcb_file:
|
||||
description: 'Kicad input file'
|
||||
required: true
|
||||
pngs_dir:
|
||||
description: 'PNGs folder'
|
||||
required: true
|
||||
theme:
|
||||
default: '-s set-blue-enig'
|
||||
# flags:
|
||||
# description: 'Additional flags for pcbdraw'
|
||||
# default: ''
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'docker://yaqwsx/kikit:v1.0.2'
|
||||
entrypoint: '/bin/sh'
|
||||
args:
|
||||
- '-c'
|
||||
- |
|
||||
mkdir -p $GITHUB_WORKSPACE/${{ inputs.pngs_dir }} ;
|
||||
pcbdraw ${{ inputs.theme }} --silent $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.pngs_dir }}/front.png
|
||||
pcbdraw --back ${{ inputs.theme }} --silent $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.pngs_dir }}/back.png
|
||||
name: 'Export PNGs'
|
||||
description: 'Export PNG files from a Kicad PCB'
|
||||
inputs:
|
||||
pcb_file:
|
||||
description: 'Kicad input file'
|
||||
required: true
|
||||
pngs_dir:
|
||||
description: 'PNGs folder'
|
||||
required: true
|
||||
theme:
|
||||
default: '-s set-blue-enig'
|
||||
# flags:
|
||||
# description: 'Additional flags for pcbdraw'
|
||||
# default: ''
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'docker://yaqwsx/kikit:v1.0.2'
|
||||
entrypoint: '/bin/sh'
|
||||
args:
|
||||
- '-c'
|
||||
- |
|
||||
mkdir -p $GITHUB_WORKSPACE/${{ inputs.pngs_dir }} ;
|
||||
pcbdraw ${{ inputs.theme }} --silent $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.pngs_dir }}/front.png
|
||||
pcbdraw --back ${{ inputs.theme }} --silent $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.pngs_dir }}/back.png
|
||||
|
|
130
.github/workflows/render-previews.yml
vendored
130
.github/workflows/render-previews.yml
vendored
|
@ -1,65 +1,65 @@
|
|||
on: [workflow_dispatch]
|
||||
|
||||
name: Render Previews
|
||||
jobs:
|
||||
pngs:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Export as PNGs"
|
||||
steps:
|
||||
# CHECKOUT
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# PREVIEWS
|
||||
- name: Sweep v2
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: ./Sweepv2.2/sweepv2.kicad_pcb
|
||||
pngs_dir: output/pngs/sweepv2
|
||||
- name: Sweep Half Swept
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: ./Sweep-half-swept/half-swept.kicad_pcb
|
||||
pngs_dir: output/pngs/sweep-half-swept
|
||||
- name: Sweep High M
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep High M/sweep-high.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-high-m
|
||||
- name: Sweep High
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep High/sweep-high.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-high
|
||||
- name: Sweep Compact LOW
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Compact LOW/ferris-sweep-compact.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-compact-low
|
||||
- name: Sweep Bling MX
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling MX/pcb/sweep-bling-mx__pcb.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-mx
|
||||
- name: Sweep Bling MX (plate)
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling MX/switch-plate/sweep-bling-mx__plate.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-mx-plate
|
||||
- name: Sweep Bling MX (bottom)
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling MX/bottom-plate/sweep-bling-mx__bottom.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-mx-bottom
|
||||
- name: Sweep Bling LP
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling LP/pcb/sweepbling-lp__pcb.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-lp
|
||||
|
||||
# UPLOADING
|
||||
- name: Upload files
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: previews
|
||||
path: output/pngs
|
||||
on: [workflow_dispatch]
|
||||
|
||||
name: Render Previews
|
||||
jobs:
|
||||
pngs:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Export as PNGs"
|
||||
steps:
|
||||
# CHECKOUT
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# PREVIEWS
|
||||
- name: Sweep v2
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: ./Sweepv2.2/sweepv2.kicad_pcb
|
||||
pngs_dir: output/pngs/sweepv2
|
||||
- name: Sweep Half Swept
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: ./Sweep-half-swept/half-swept.kicad_pcb
|
||||
pngs_dir: output/pngs/sweep-half-swept
|
||||
- name: Sweep High M
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep High M/sweep-high.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-high-m
|
||||
- name: Sweep High
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep High/sweep-high.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-high
|
||||
- name: Sweep Compact LOW
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Compact LOW/ferris-sweep-compact.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-compact-low
|
||||
- name: Sweep Bling MX
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling MX/pcb/sweep-bling-mx__pcb.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-mx
|
||||
- name: Sweep Bling MX (plate)
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling MX/switch-plate/sweep-bling-mx__plate.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-mx-plate
|
||||
- name: Sweep Bling MX (bottom)
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling MX/bottom-plate/sweep-bling-mx__bottom.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-mx-bottom
|
||||
- name: Sweep Bling LP
|
||||
uses: ./.github/actions/export-pngs
|
||||
with:
|
||||
pcb_file: '"./Sweep Bling LP/pcb/sweepbling-lp__pcb.kicad_pcb"'
|
||||
pngs_dir: output/pngs/sweep-bling-lp
|
||||
|
||||
# UPLOADING
|
||||
- name: Upload files
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: previews
|
||||
path: output/pngs
|
||||
|
|
64
.gitignore
vendored
64
.gitignore
vendored
|
@ -1,32 +1,32 @@
|
|||
# For PCBs designed using KiCad: https://www.kicad.org/
|
||||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
|
||||
# Gerber to order plugin folder
|
||||
gerber_to_order/
|
||||
# For PCBs designed using KiCad: https://www.kicad.org/
|
||||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
|
||||
# Gerber to order plugin folder
|
||||
gerber_to_order/
|
||||
|
|
88
LICENSE
88
LICENSE
|
@ -1,44 +1,44 @@
|
|||
# Hardware
|
||||
## SOLDERPAD HARDWARE LICENSE VERSION 2.1
|
||||
|
||||
This license operates as a wraparound license to the Apache License Version 2.0 (the "Apache License") and incorporates the terms and conditions of the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following additions and modifications. It must be read in conjunction with the Apache License. Section 1 below modifies definitions and terminology in the Apache License and Section 2 below replaces Section 2 of the Apache License. The Appendix replaces the Appendix in the Apache License. You may, at your option, choose to treat any Work released under this license as released under the Apache License (thus ignoring all sections written below entirely).
|
||||
|
||||
1. Terminology in the Apache License is supplemented or modified as follows:
|
||||
|
||||
"Authorship": any reference to 'authorship' shall be taken to read "authorship or design".
|
||||
|
||||
"Copyright owner": any reference to 'copyright owner' shall be taken to read "Rights owner".
|
||||
|
||||
"Copyright statement": the reference to 'copyright statement' shall be taken to read 'copyright or other statement pertaining to Rights'.
|
||||
|
||||
The following new definition shall be added to the Definitions section of the Apache License:
|
||||
|
||||
"Rights" means copyright and any similar right including design right (whether registered or unregistered), rights in semiconductor topographies (mask works) and database rights (but excluding Patents and Trademarks).
|
||||
|
||||
The following definitions shall replace the corresponding definitions in the Apache License:
|
||||
|
||||
"License" shall mean this Solderpad Hardware License version 2.1, being the terms and conditions for use, manufacture, instantiation, adaptation, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the owner of the Rights or entity authorized by the owner of the Rights that is granting the License.
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship or design. For the purposes of this License, Derivative Works shall not include works that remain reversibly separable from, or merely link (or bind by name) or physically connect to or interoperate with the Work and Derivative Works thereof.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form or the application of a Source form to physical material, including but not limited to compiled object code, generated documentation, the instantiation of a hardware design or physical object or material and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, moulds, artwork and semiconductor topographies (mask works).
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files.
|
||||
|
||||
"Work" shall mean the work of authorship or design, whether in Source or Object form, made available under the License, as indicated by a notice relating to Rights that is included in or attached to the work (an example is provided in the Appendix below).
|
||||
|
||||
2. Grant of License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable license under the Rights to reproduce, prepare Derivative Works of, make, adapt, repair, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist.
|
||||
|
||||
APPENDIX
|
||||
|
||||
Copyright 2020 David Barr
|
||||
SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||
|
||||
Licensed under the Solderpad Hardware License v 2.1 (the "License"); you may not use this file except in compliance with the License, or, at your option, the Apache License version 2.0. You may obtain a copy of the License at
|
||||
|
||||
https://solderpad.org/licenses/SHL-2.1/
|
||||
|
||||
Unless required by applicable law or agreed to in writing, any work distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
||||
|
||||
# Hardware
|
||||
## SOLDERPAD HARDWARE LICENSE VERSION 2.1
|
||||
|
||||
This license operates as a wraparound license to the Apache License Version 2.0 (the "Apache License") and incorporates the terms and conditions of the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following additions and modifications. It must be read in conjunction with the Apache License. Section 1 below modifies definitions and terminology in the Apache License and Section 2 below replaces Section 2 of the Apache License. The Appendix replaces the Appendix in the Apache License. You may, at your option, choose to treat any Work released under this license as released under the Apache License (thus ignoring all sections written below entirely).
|
||||
|
||||
1. Terminology in the Apache License is supplemented or modified as follows:
|
||||
|
||||
"Authorship": any reference to 'authorship' shall be taken to read "authorship or design".
|
||||
|
||||
"Copyright owner": any reference to 'copyright owner' shall be taken to read "Rights owner".
|
||||
|
||||
"Copyright statement": the reference to 'copyright statement' shall be taken to read 'copyright or other statement pertaining to Rights'.
|
||||
|
||||
The following new definition shall be added to the Definitions section of the Apache License:
|
||||
|
||||
"Rights" means copyright and any similar right including design right (whether registered or unregistered), rights in semiconductor topographies (mask works) and database rights (but excluding Patents and Trademarks).
|
||||
|
||||
The following definitions shall replace the corresponding definitions in the Apache License:
|
||||
|
||||
"License" shall mean this Solderpad Hardware License version 2.1, being the terms and conditions for use, manufacture, instantiation, adaptation, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the owner of the Rights or entity authorized by the owner of the Rights that is granting the License.
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship or design. For the purposes of this License, Derivative Works shall not include works that remain reversibly separable from, or merely link (or bind by name) or physically connect to or interoperate with the Work and Derivative Works thereof.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form or the application of a Source form to physical material, including but not limited to compiled object code, generated documentation, the instantiation of a hardware design or physical object or material and conversions to other media types, including intermediate forms such as bytecodes, FPGA bitstreams, moulds, artwork and semiconductor topographies (mask works).
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications, including but not limited to source code, net lists, board layouts, CAD files, documentation source, and configuration files.
|
||||
|
||||
"Work" shall mean the work of authorship or design, whether in Source or Object form, made available under the License, as indicated by a notice relating to Rights that is included in or attached to the work (an example is provided in the Appendix below).
|
||||
|
||||
2. Grant of License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable license under the Rights to reproduce, prepare Derivative Works of, make, adapt, repair, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form and do anything in relation to the Work as if the Rights did not exist.
|
||||
|
||||
APPENDIX
|
||||
|
||||
Copyright 2020 David Barr
|
||||
SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||
|
||||
Licensed under the Solderpad Hardware License v 2.1 (the "License"); you may not use this file except in compliance with the License, or, at your option, the Apache License version 2.0. You may obtain a copy of the License at
|
||||
|
||||
https://solderpad.org/licenses/SHL-2.1/
|
||||
|
||||
Unless required by applicable law or agreed to in writing, any work distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
||||
|
||||
|
|
152
README.md
152
README.md
|
@ -1,76 +1,76 @@
|
|||
# Sweep
|
||||
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-half-swept/front.png) | ![back](/gallery/sweep-half-swept/back.png) |
|
||||
|
||||
<span>
|
||||
<a href="https://discord.gg/czXcTXbsgU">
|
||||
<img src="https://discordapp.com/api/guilds/669011382284451861/widget.png?style=shield">
|
||||
</a>
|
||||
<img src="https://img.shields.io/github/last-commit/davidphilipbarr/sweep">
|
||||
</span>
|
||||
|
||||
## What is sweep?
|
||||
|
||||
Sweep is a version of the more fabulous [Ferris](https://github.com/pierrechevalier83/ferris) by [Pierre Chevalier](https://github.com/pierrechevalier83/) that uses a daughter board like a promicro, elite-c, bit-c, nice!nano etc. instead of using onboard components.
|
||||
|
||||
## What are the different types?
|
||||
|
||||
| Device | On/Off Switch<sup>[1]</sup> | Reversible PCB<sup>[2]</sup> | Choc V1 | Choc V2 | Choc Mini | MX & Alps | Choc Spacing<sup>[3]</sup> | Tenting<sup>[4]</sup> | Hot Swap |
|
||||
| :--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
| Sweep2.x | ✔ | | ✔ | | | | ✔ | ✔ | Mill-Max (optional) |
|
||||
| Sweep Bling LP | ✔ | | ✔ | | | | ✔ | ✔ | Kailh (required) |
|
||||
| Sweep Bling MX | ✔ | ✔ | | | | ⚠<br/><sup>[5]</sup> | | ✔ | Kailh (required) |
|
||||
| Sweep High | ✔ | | ✔ | ✔ | | ✔ | | ✔ |
|
||||
| Sweep Half Swept | ✔ | ✔ | ✔ | | | | ✔ | ✔ |
|
||||
| Sweep Compact Low | | ✔ | | | ✔ | | ✔ | |
|
||||
|
||||
> Note: All versions support bluetooth with Nice!Nano
|
||||
|
||||
*<sup>[1]</sup> An on/off switch is recommended for bluetooth builds.*
|
||||
*<sup>[2]</sup> With a reversible PCB it's easier to make mistakes during assembly, but it allows you to purchase less boards.*
|
||||
*<sup>[3]</sup> Choc spaced boards have the switches in a tighter grid. This provides a better final look but is only compatible with some choc keycaps. (e.g. MBK)*
|
||||
*<sup>[4]</sup> Supports splitkb's [tenting puck.](https://splitkb.com/products/tenting-puck?_pos=1&_psq=tenting%20&_ss=e&_v=1.0)*
|
||||
*<sup>[5]</sup> MX + kailh hotswap ONLY. Alps are NOT supported.*
|
||||
|
||||
|
||||
* Sweep2 - Recommended Choc v1 board with all the features.
|
||||
* Sweep Bling MX - An MX only Sweep that features Kailh's hotswap sockets and a stacked case.
|
||||
* Sweep High - Same as the Sweep2 but trades choc spacing for compatibility with more switches and keycaps.
|
||||
* Sweep Half Swept - Half of a Sweep2 with double pro-micro footprint (letting you avoid having one daughter-board flipped upside-down)
|
||||
* Sweep Compact Low - The only version that supports Choc minis.
|
||||
|
||||
## Components list
|
||||
|
||||
To build and use a Sweep you will need:
|
||||
|
||||
* 1x PCB Kit
|
||||
* 2x promicro compatible boards or 2 nice!nanos.
|
||||
* 34 switches of a compatible type (refer to the compatibility table)
|
||||
* 34 keycaps
|
||||
* 2x reset switches (optional; [B3U-1000P(M)](https://github.com/davidphilipbarr/Sweep/issues/20))
|
||||
* Some little rubber feet/bumpers
|
||||
* 2x power switches (optional if supported; MSK 12C02)
|
||||
* 1x TRRS (not TRS!) cable (wired build only)
|
||||
* 2x TRRS Jack [PJ-320A] (wired build only)
|
||||
* 1 USB Cable (depends on your micro-controller choice)
|
||||
|
||||
## How do I make this thing?
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=fBPu7AyDtkM" target="_blank">
|
||||
<img src="https://gist.githubusercontent.com/duckyb/337340baa1f0c8bcc06fef7b3b57242b/raw/97e6e0748dd1b8a3fb54fac0a88e84e6b6e0e10a/build-guide-button.svg" height="44">
|
||||
</a>
|
||||
|
||||
## Firmware
|
||||
|
||||
The firmware can be found [with the Ferris firmware as part of QMK](https://github.com/qmk/qmk_firmware/tree/master/keyboards/ferris/sweep).
|
||||
|
||||
Firmware for zmk and bluemicro_ble is called ["Cradio"](https://zmk.dev/docs/hardware/).
|
||||
|
||||
## Who made this?
|
||||
|
||||
* [Pierre Chevalier](https://github.com/pierrechevalier83)
|
||||
* [David Barr](https://github.com/davidphilipbarr)
|
||||
* [Ibnu Daru Aji](https://github.com/ibnuda/)
|
||||
* [Duccio](https://github.com/duckyb)
|
||||
# Sweep
|
||||
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-half-swept/front.png) | ![back](/gallery/sweep-half-swept/back.png) |
|
||||
|
||||
<span>
|
||||
<a href="https://discord.gg/czXcTXbsgU">
|
||||
<img src="https://discordapp.com/api/guilds/669011382284451861/widget.png?style=shield">
|
||||
</a>
|
||||
<img src="https://img.shields.io/github/last-commit/davidphilipbarr/sweep">
|
||||
</span>
|
||||
|
||||
## What is sweep?
|
||||
|
||||
Sweep is a version of the more fabulous [Ferris](https://github.com/pierrechevalier83/ferris) by [Pierre Chevalier](https://github.com/pierrechevalier83/) that uses a daughter board like a promicro, elite-c, bit-c, nice!nano etc. instead of using onboard components.
|
||||
|
||||
## What are the different types?
|
||||
|
||||
| Device | On/Off Switch<sup>[1]</sup> | Reversible PCB<sup>[2]</sup> | Choc V1 | Choc V2 | Choc Mini | MX & Alps | Choc Spacing<sup>[3]</sup> | Tenting<sup>[4]</sup> | Hot Swap |
|
||||
| :--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
| Sweep2.x | ✔ | | ✔ | | | | ✔ | ✔ | Mill-Max (optional) |
|
||||
| Sweep Bling LP | ✔ | | ✔ | | | | ✔ | ✔ | Kailh (required) |
|
||||
| Sweep Bling MX | ✔ | ✔ | | | | ⚠<br/><sup>[5]</sup> | | ✔ | Kailh (required) |
|
||||
| Sweep High | ✔ | | ✔ | ✔ | | ✔ | | ✔ |
|
||||
| Sweep Half Swept | ✔ | ✔ | ✔ | | | | ✔ | ✔ |
|
||||
| Sweep Compact Low | | ✔ | | | ✔ | | ✔ | |
|
||||
|
||||
> Note: All versions support bluetooth with Nice!Nano
|
||||
|
||||
*<sup>[1]</sup> An on/off switch is recommended for bluetooth builds.*
|
||||
*<sup>[2]</sup> With a reversible PCB it's easier to make mistakes during assembly, but it allows you to purchase less boards.*
|
||||
*<sup>[3]</sup> Choc spaced boards have the switches in a tighter grid. This provides a better final look but is only compatible with some choc keycaps. (e.g. MBK)*
|
||||
*<sup>[4]</sup> Supports splitkb's [tenting puck.](https://splitkb.com/products/tenting-puck?_pos=1&_psq=tenting%20&_ss=e&_v=1.0)*
|
||||
*<sup>[5]</sup> MX + kailh hotswap ONLY. Alps are NOT supported.*
|
||||
|
||||
|
||||
* Sweep2 - Recommended Choc v1 board with all the features.
|
||||
* Sweep Bling MX - An MX only Sweep that features Kailh's hotswap sockets and a stacked case.
|
||||
* Sweep High - Same as the Sweep2 but trades choc spacing for compatibility with more switches and keycaps.
|
||||
* Sweep Half Swept - Half of a Sweep2 with double pro-micro footprint (letting you avoid having one daughter-board flipped upside-down)
|
||||
* Sweep Compact Low - The only version that supports Choc minis.
|
||||
|
||||
## Components list
|
||||
|
||||
To build and use a Sweep you will need:
|
||||
|
||||
* 1x PCB Kit
|
||||
* 2x promicro compatible boards or 2 nice!nanos.
|
||||
* 34 switches of a compatible type (refer to the compatibility table)
|
||||
* 34 keycaps
|
||||
* 2x reset switches (optional; [B3U-1000P(M)](https://github.com/davidphilipbarr/Sweep/issues/20))
|
||||
* Some little rubber feet/bumpers
|
||||
* 2x power switches (optional if supported; MSK 12C02)
|
||||
* 1x TRRS (not TRS!) cable (wired build only)
|
||||
* 2x TRRS Jack [PJ-320A] (wired build only)
|
||||
* 1 USB Cable (depends on your micro-controller choice)
|
||||
|
||||
## How do I make this thing?
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=fBPu7AyDtkM" target="_blank">
|
||||
<img src="https://gist.githubusercontent.com/duckyb/337340baa1f0c8bcc06fef7b3b57242b/raw/97e6e0748dd1b8a3fb54fac0a88e84e6b6e0e10a/build-guide-button.svg" height="44">
|
||||
</a>
|
||||
|
||||
## Firmware
|
||||
|
||||
The firmware can be found [with the Ferris firmware as part of QMK](https://github.com/qmk/qmk_firmware/tree/master/keyboards/ferris/sweep).
|
||||
|
||||
Firmware for zmk and bluemicro_ble is called ["Cradio"](https://zmk.dev/docs/hardware/).
|
||||
|
||||
## Who made this?
|
||||
|
||||
* [Pierre Chevalier](https://github.com/pierrechevalier83)
|
||||
* [David Barr](https://github.com/davidphilipbarr)
|
||||
* [Ibnu Daru Aji](https://github.com/ibnuda/)
|
||||
* [Duccio](https://github.com/duckyb)
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,31 +1,31 @@
|
|||
# Sweep Bling LP
|
||||
![front](/gallery/sweep-bling-lp/front.png)
|
||||
![back](/gallery/sweep-bling-lp/back.png) |
|
||||
|
||||
This is a kailh hotswap version of the Sweep v2.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweepbling-lp__pcb-gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|216.9mm x 86.9mm|
|
||||
|Different design|2|
|
||||
|Delivery format|Panel by customer|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
||||
2: Settings are taken from [Kyek's video guide](https://www.youtube.com/watch?v=fBPu7AyDtkM&t=17s).
|
||||
# Sweep Bling LP
|
||||
![front](/gallery/sweep-bling-lp/front.png)
|
||||
![back](/gallery/sweep-bling-lp/back.png) |
|
||||
|
||||
This is a kailh hotswap version of the Sweep v2.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweepbling-lp__pcb-gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|216.9mm x 86.9mm|
|
||||
|Different design|2|
|
||||
|Delivery format|Panel by customer|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
||||
2: Settings are taken from [Kyek's video guide](https://www.youtube.com/watch?v=fBPu7AyDtkM&t=17s).
|
||||
|
|
|
@ -1,115 +1,115 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,40 +1,40 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,432 +1,432 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.9,
|
||||
"height": 2.0,
|
||||
"width": 1.6
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "ignore",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "ignore",
|
||||
"silk_overlap": "ignore",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": true,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweepbling-lp__pcb.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"15875808-74d5-4210-b8ca-aa8fbc04ae21",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.9,
|
||||
"height": 2.0,
|
||||
"width": 1.6
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "ignore",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "ignore",
|
||||
"silk_overlap": "ignore",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": true,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweepbling-lp__pcb.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"15875808-74d5-4210-b8ca-aa8fbc04ae21",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,4 @@
|
|||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
# Sweep Bling MX
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-bling-mx/front.png) | ![back](/gallery/sweep-bling-mx/back.png) |
|
||||
| ![front](/gallery/sweep-bling-mx-plate/front.png) | ![back](/gallery/sweep-bling-mx-plate/back.png) |
|
||||
| ![front](/gallery/sweep-bling-mx-bottom/front.png) | ![back](/gallery/sweep-bling-mx-bottom/back.png) |
|
||||
|
||||
This version of the Sweep features MX Switches support (exclusively) with hotswap sockets. As well as tenting support.
|
||||
|
||||
It also features mouting holes for a stacked case. You can find the switch plate and bottom plate files in the relative folders.
|
||||
|
||||
The bottom plate is also compatible with tenting, you can break away the middle section to allow installation of the puck.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweep_bling_mx_gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|95.15mm x 113.47mm|
|
||||
|Different design|1|
|
||||
|Delivery format|Single PCB|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
# Sweep Bling MX
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-bling-mx/front.png) | ![back](/gallery/sweep-bling-mx/back.png) |
|
||||
| ![front](/gallery/sweep-bling-mx-plate/front.png) | ![back](/gallery/sweep-bling-mx-plate/back.png) |
|
||||
| ![front](/gallery/sweep-bling-mx-bottom/front.png) | ![back](/gallery/sweep-bling-mx-bottom/back.png) |
|
||||
|
||||
This version of the Sweep features MX Switches support (exclusively) with hotswap sockets. As well as tenting support.
|
||||
|
||||
It also features mouting holes for a stacked case. You can find the switch plate and bottom plate files in the relative folders.
|
||||
|
||||
The bottom plate is also compatible with tenting, you can break away the middle section to allow installation of the puck.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweep_bling_mx_gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|95.15mm x 113.47mm|
|
||||
|Different design|1|
|
||||
|Delivery format|Single PCB|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,193 +1,193 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "warning",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.0,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-bling-mx__bottom.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "warning",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.0,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-bling-mx__bottom.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
# Notes:
|
||||
|
||||
- **DRILL TIME FEE**: When ordering PCBs with complex shapes like the switch plate and bottom plate, it is possible that the factory will ask for additional fees.
|
||||
|
||||
# PCB Hardware Kit (for both sides)
|
||||
## Required
|
||||
- 1x PCB Kit
|
||||
- 2x promicro compatible boards or nice!nanos
|
||||
- 34 MX switches
|
||||
- 34 Kailh hotswap sockets
|
||||
- 34 keycaps
|
||||
|
||||
### Optional:
|
||||
- 2x Battery (required only for wireless; 301230 / 301228)
|
||||
- 2x Power switches (recommended for wireless; MSK 12C02)
|
||||
- 2x reset switches ([B3U-1000P(M)](https://github.com/davidphilipbarr/Sweep/issues/20))
|
||||
|
||||
# Case Hardware Kit (for both sides)
|
||||
|
||||
## Required:
|
||||
- 16x M2 Screws
|
||||
- 8x M2 Spacers. (Max diameter: 3mm, Length: 6-8mm)
|
||||
- 8-12x Silicone feet stickers
|
||||
|
||||
### Optional:
|
||||
- 2x Splitkb tenting puck
|
||||
- 2x Manfrotto MP3-BK tripods
|
||||
# Notes:
|
||||
|
||||
- **DRILL TIME FEE**: When ordering PCBs with complex shapes like the switch plate and bottom plate, it is possible that the factory will ask for additional fees.
|
||||
|
||||
# PCB Hardware Kit (for both sides)
|
||||
## Required
|
||||
- 1x PCB Kit
|
||||
- 2x promicro compatible boards or nice!nanos
|
||||
- 34 MX switches
|
||||
- 34 Kailh hotswap sockets
|
||||
- 34 keycaps
|
||||
|
||||
### Optional:
|
||||
- 2x Battery (required only for wireless; 301230 / 301228)
|
||||
- 2x Power switches (recommended for wireless; MSK 12C02)
|
||||
- 2x reset switches ([B3U-1000P(M)](https://github.com/davidphilipbarr/Sweep/issues/20))
|
||||
|
||||
# Case Hardware Kit (for both sides)
|
||||
|
||||
## Required:
|
||||
- 16x M2 Screws
|
||||
- 8x M2 Spacers. (Max diameter: 3mm, Length: 6-8mm)
|
||||
- 8-12x Silicone feet stickers
|
||||
|
||||
### Optional:
|
||||
- 2x Splitkb tenting puck
|
||||
- 2x Manfrotto MP3-BK tripods
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
|
@ -1,115 +1,115 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweep-bling-mx__pcb-rescue_AudioJack4dpb-tokas_bp
|
||||
#
|
||||
DEF sweep-bling-mx__pcb-rescue_AudioJack4dpb-tokas_bp J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "sweep-bling-mx__pcb-rescue_AudioJack4dpb-tokas_bp" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweep-bling-mx__pcb-rescue_ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue
|
||||
#
|
||||
DEF sweep-bling-mx__pcb-rescue_ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweep-bling-mx__pcb-rescue_ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweep-bling-mx__pcb-rescue_AudioJack4dpb-tokas_bp
|
||||
#
|
||||
DEF sweep-bling-mx__pcb-rescue_AudioJack4dpb-tokas_bp J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "sweep-bling-mx__pcb-rescue_AudioJack4dpb-tokas_bp" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweep-bling-mx__pcb-rescue_ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue
|
||||
#
|
||||
DEF sweep-bling-mx__pcb-rescue_ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweep-bling-mx__pcb-rescue_ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,64 +1,64 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# AudioJack4dpb-tokas_bp
|
||||
#
|
||||
DEF AudioJack4dpb-tokas_bp J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "AudioJack4dpb-tokas_bp" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# AudioJack4dpb-tokas_bp
|
||||
#
|
||||
DEF AudioJack4dpb-tokas_bp J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "AudioJack4dpb-tokas_bp" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue-sweepv2-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,78 +1,78 @@
|
|||
|
||||
(rules PCB sweep-high
|
||||
(snap_angle
|
||||
fortyfive_degree
|
||||
)
|
||||
(autoroute_settings
|
||||
(fanout on)
|
||||
(autoroute on)
|
||||
(postroute on)
|
||||
(vias on)
|
||||
(via_costs 50)
|
||||
(plane_via_costs 5)
|
||||
(start_ripup_costs 100)
|
||||
(start_pass_no 1795)
|
||||
(layer_rule F.Cu
|
||||
(active on)
|
||||
(preferred_direction horizontal)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 2.2)
|
||||
)
|
||||
(layer_rule B.Cu
|
||||
(active on)
|
||||
(preferred_direction vertical)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 1.8)
|
||||
)
|
||||
)
|
||||
(rule
|
||||
(width 250.0)
|
||||
(clear 200.2)
|
||||
(clear 125.0 (type smd_to_turn_gap))
|
||||
(clear 50.0 (type smd_smd))
|
||||
)
|
||||
(padstack "Via[0-1]_800:400_um"
|
||||
(shape
|
||||
(circle F.Cu 800.0 0.0 0.0)
|
||||
)
|
||||
(shape
|
||||
(circle B.Cu 800.0 0.0 0.0)
|
||||
)
|
||||
(attach off)
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_800:400_um" "Via[0-1]_800:400_um" default
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_800:400_um-kicad_default" "Via[0-1]_800:400_um" "kicad_default"
|
||||
)
|
||||
(via_rule
|
||||
default "Via[0-1]_800:400_um"
|
||||
)
|
||||
(via_rule
|
||||
"kicad_default" "Via[0-1]_800:400_um-kicad_default"
|
||||
)
|
||||
(class default
|
||||
(clearance_class default)
|
||||
(via_rule default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
(class "kicad_default"
|
||||
gnd vcc Switch18 reset Switch1 Switch2 Switch3 Switch4
|
||||
Switch5 Switch6 Switch7 Switch8 Switch9 Switch10 Switch11 Switch12
|
||||
Switch13 Switch14 Switch15 Switch16 Switch17 raw "BT+_r" "Net-(SW_POWERR1-Pad1)"
|
||||
(clearance_class "kicad_default")
|
||||
(via_rule kicad_default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
|
||||
(rules PCB sweep-high
|
||||
(snap_angle
|
||||
fortyfive_degree
|
||||
)
|
||||
(autoroute_settings
|
||||
(fanout on)
|
||||
(autoroute on)
|
||||
(postroute on)
|
||||
(vias on)
|
||||
(via_costs 50)
|
||||
(plane_via_costs 5)
|
||||
(start_ripup_costs 100)
|
||||
(start_pass_no 1795)
|
||||
(layer_rule F.Cu
|
||||
(active on)
|
||||
(preferred_direction horizontal)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 2.2)
|
||||
)
|
||||
(layer_rule B.Cu
|
||||
(active on)
|
||||
(preferred_direction vertical)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 1.8)
|
||||
)
|
||||
)
|
||||
(rule
|
||||
(width 250.0)
|
||||
(clear 200.2)
|
||||
(clear 125.0 (type smd_to_turn_gap))
|
||||
(clear 50.0 (type smd_smd))
|
||||
)
|
||||
(padstack "Via[0-1]_800:400_um"
|
||||
(shape
|
||||
(circle F.Cu 800.0 0.0 0.0)
|
||||
)
|
||||
(shape
|
||||
(circle B.Cu 800.0 0.0 0.0)
|
||||
)
|
||||
(attach off)
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_800:400_um" "Via[0-1]_800:400_um" default
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_800:400_um-kicad_default" "Via[0-1]_800:400_um" "kicad_default"
|
||||
)
|
||||
(via_rule
|
||||
default "Via[0-1]_800:400_um"
|
||||
)
|
||||
(via_rule
|
||||
"kicad_default" "Via[0-1]_800:400_um-kicad_default"
|
||||
)
|
||||
(class default
|
||||
(clearance_class default)
|
||||
(via_rule default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
(class "kicad_default"
|
||||
gnd vcc Switch18 reset Switch1 Switch2 Switch3 Switch4
|
||||
Switch5 Switch6 Switch7 Switch8 Switch9 Switch10 Switch11 Switch12
|
||||
Switch13 Switch14 Switch15 Switch16 Switch17 raw "BT+_r" "Net-(SW_POWERR1-Pad1)"
|
||||
(clearance_class "kicad_default")
|
||||
(via_rule kicad_default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
)
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
|||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweep-bling-mx__pcb-rescue)(type Legacy)(uri ${KIPRJMOD}/sweep-bling-mx__pcb-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweep-bling-mx__pcb-rescue)(type Legacy)(uri ${KIPRJMOD}/sweep-bling-mx__pcb-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,180 +1,180 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-bling-mx__plate.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-bling-mx__plate.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
|
|
|
@ -1,33 +1,33 @@
|
|||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Sweep Compact LOW
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-compact-low/front.png) | ![back](/gallery/sweep-compact-low/back.png) |
|
||||
|
||||
This is the only Sweep version that supports the "Choc Mini" switch.
|
||||
# Sweep Compact LOW
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-compact-low/front.png) | ![back](/gallery/sweep-compact-low/back.png) |
|
||||
|
||||
This is the only Sweep version that supports the "Choc Mini" switch.
|
||||
|
|
|
@ -1,188 +1,188 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Connector_Generic_Conn_01x04
|
||||
#
|
||||
DEF Connector_Generic_Conn_01x04 J 0 40 Y N 1 F N
|
||||
F0 "J" 0 200 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_01x04" 0 -300 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_1x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 150 50 -250 1 1 10 f
|
||||
X Pin_1 1 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_2 2 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
|
||||
X Pin_4 4 -200 -200 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_D
|
||||
#
|
||||
DEF Device_D D 0 40 N N 1 F N
|
||||
F0 "D" 0 100 50 H V C CNN
|
||||
F1 "Device_D" 0 -100 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
TO-???*
|
||||
*_Diode_*
|
||||
*SingleDiode*
|
||||
D_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 8 -50 50 -50 -50 N
|
||||
P 2 0 1 0 50 0 -50 0 N
|
||||
P 4 0 1 8 50 50 50 -50 -50 0 50 50 N
|
||||
X K 1 -150 0 100 R 50 50 1 1 P
|
||||
X A 2 150 0 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_MJ-4PP-9-kbd
|
||||
#
|
||||
DEF corne-light-rescue_MJ-4PP-9-kbd J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "corne-light-rescue_MJ-4PP-9-kbd" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_ProMicro-kbd
|
||||
#
|
||||
DEF corne-light-rescue_ProMicro-kbd U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "corne-light-rescue_ProMicro-kbd" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_SW_PUSH-kbd
|
||||
#
|
||||
DEF corne-light-rescue_SW_PUSH-kbd SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "corne-light-rescue_SW_PUSH-kbd" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GND
|
||||
#
|
||||
DEF power_GND #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GND" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GND 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GNDA
|
||||
#
|
||||
DEF power_GNDA #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GNDA" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GNDA 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_PWR_FLAG
|
||||
#
|
||||
DEF power_PWR_FLAG #FLG 0 0 N N 1 F P
|
||||
F0 "#FLG" 0 75 50 H I C CNN
|
||||
F1 "power_PWR_FLAG" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N
|
||||
X pwr 1 0 0 0 U 50 50 0 0 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VCC
|
||||
#
|
||||
DEF power_VCC #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VCC" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VCC 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VDD
|
||||
#
|
||||
DEF power_VDD #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VDD" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VDD 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Connector_Generic_Conn_01x04
|
||||
#
|
||||
DEF Connector_Generic_Conn_01x04 J 0 40 Y N 1 F N
|
||||
F0 "J" 0 200 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_01x04" 0 -300 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_1x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 150 50 -250 1 1 10 f
|
||||
X Pin_1 1 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_2 2 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
|
||||
X Pin_4 4 -200 -200 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_D
|
||||
#
|
||||
DEF Device_D D 0 40 N N 1 F N
|
||||
F0 "D" 0 100 50 H V C CNN
|
||||
F1 "Device_D" 0 -100 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
TO-???*
|
||||
*_Diode_*
|
||||
*SingleDiode*
|
||||
D_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 8 -50 50 -50 -50 N
|
||||
P 2 0 1 0 50 0 -50 0 N
|
||||
P 4 0 1 8 50 50 50 -50 -50 0 50 50 N
|
||||
X K 1 -150 0 100 R 50 50 1 1 P
|
||||
X A 2 150 0 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_MJ-4PP-9-kbd
|
||||
#
|
||||
DEF corne-light-rescue_MJ-4PP-9-kbd J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "corne-light-rescue_MJ-4PP-9-kbd" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_ProMicro-kbd
|
||||
#
|
||||
DEF corne-light-rescue_ProMicro-kbd U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "corne-light-rescue_ProMicro-kbd" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_SW_PUSH-kbd
|
||||
#
|
||||
DEF corne-light-rescue_SW_PUSH-kbd SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "corne-light-rescue_SW_PUSH-kbd" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GND
|
||||
#
|
||||
DEF power_GND #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GND" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GND 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GNDA
|
||||
#
|
||||
DEF power_GNDA #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GNDA" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GNDA 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_PWR_FLAG
|
||||
#
|
||||
DEF power_PWR_FLAG #FLG 0 0 N N 1 F P
|
||||
F0 "#FLG" 0 75 50 H I C CNN
|
||||
F1 "power_PWR_FLAG" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N
|
||||
X pwr 1 0 0 0 U 50 50 0 0 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VCC
|
||||
#
|
||||
DEF power_VCC #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VCC" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VCC 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VDD
|
||||
#
|
||||
DEF power_VDD #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VDD" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VDD 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,76 +1,76 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# MJ-4PP-9-kbd-corne-light-rescue
|
||||
#
|
||||
DEF MJ-4PP-9-kbd-corne-light-rescue J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "MJ-4PP-9-kbd-corne-light-rescue" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# ProMicro-kbd-corne-light-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-corne-light-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-corne-light-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# SW_PUSH-kbd-corne-light-rescue
|
||||
#
|
||||
DEF SW_PUSH-kbd-corne-light-rescue SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "SW_PUSH-kbd-corne-light-rescue" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# MJ-4PP-9-kbd-corne-light-rescue
|
||||
#
|
||||
DEF MJ-4PP-9-kbd-corne-light-rescue J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "MJ-4PP-9-kbd-corne-light-rescue" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# ProMicro-kbd-corne-light-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-corne-light-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-corne-light-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# SW_PUSH-kbd-corne-light-rescue
|
||||
#
|
||||
DEF SW_PUSH-kbd-corne-light-rescue SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "SW_PUSH-kbd-corne-light-rescue" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,386 +1,386 @@
|
|||
(pcb "/home/david/Projects/36keys/34Keys/Ferris Sweep Compact LOW/ferris-sweep-compact.dsn"
|
||||
(parser
|
||||
(string_quote ")
|
||||
(space_in_quoted_tokens on)
|
||||
(host_cad "KiCad's Pcbnew")
|
||||
(host_version "5.1.8")
|
||||
)
|
||||
(resolution um 10)
|
||||
(unit um)
|
||||
(structure
|
||||
(layer F.Cu
|
||||
(type signal)
|
||||
(property
|
||||
(index 0)
|
||||
)
|
||||
)
|
||||
(layer B.Cu
|
||||
(type signal)
|
||||
(property
|
||||
(index 1)
|
||||
)
|
||||
)
|
||||
(boundary
|
||||
(path pcb 0 88766.5 -15372.4 91159.2 -15632.1 93547.2 -15931.7
|
||||
95929.9 -16271.2 98306.5 -16650.5 100677 -17069.4 103039 -17527.9
|
||||
105394 -18025.8 107740 -18562.9 110077 -19139.2 112403 -19754.5
|
||||
114720 -20408.5 117024 -21101.2 119318 -21832.3 121598 -22601.6
|
||||
123865 -23408.9 124011 -23497.5 124132 -23616.5 124224 -23760
|
||||
124281 -23920.3 124300 -24089.4 124300 -36080 124330 -36360.8
|
||||
124399 -36634.6 124506 -36896 124648 -37139.7 124824 -37360.9
|
||||
125028 -37555.3 125259 -37718.9 125509 -37848.4 125776 -37941.4
|
||||
126053 -37995.9 126335 -38010.9 142240 -38008 142407 -38026.8
|
||||
142565 -38082.3 142708 -38171.6 142826 -38290.4 142916 -38432.6
|
||||
142971 -38591.1 142990 -38758 143002 -75184 142974 -76027.3
|
||||
142904 -76868.1 142792 -77704.3 142638 -78533.8 142442 -79354.5
|
||||
142205 -80164.3 141928 -80961.2 141611 -81743.1 141255 -82508.1
|
||||
130748 -101101 130580 -101329 130381 -101530 130156 -101700
|
||||
129908 -101836 129644 -101936 129368 -101996 129086 -102017
|
||||
128804 -101996 128528 -101936 128264 -101836 128016 -101700
|
||||
126457 -100789 124879 -99910.3 123283 -99065.1 121669 -98253.4
|
||||
120039 -97475.7 118393 -96732.3 116732 -96023.5 115056 -95349.7
|
||||
113367 -94711 111665 -94107.9 109950 -93540.5 108224 -93009.1
|
||||
106487 -92513.9 102926 -91756 99356.4 -91038.1 95779.1 -90360.4
|
||||
92194.3 -89722.9 88602.7 -89125.7 85004.5 -88569 81400.3 -88052.7
|
||||
77790.5 -87577 74175.7 -87141.9 70556.1 -86747.4 66932.4 -86393.6
|
||||
63304.9 -86080.6 59674.1 -85808.4 56040.5 -85577 52404.5 -85386.4
|
||||
48766.6 -85236.7 45127.2 -85128 41486.9 -85060.1 37846 -85033.1
|
||||
37561.6 -85021.4 37281.8 -84969.5 37012.1 -84878.3 36758.1 -84749.9
|
||||
36524.9 -84586.7 36317.3 -84392.1 36139.3 -84170 35994.6 -83924.9
|
||||
35886.2 -83661.7 35816.2 -83385.8 35786 -83102.8 35768.1 -33928.7
|
||||
35915 -33537.6 36101.2 -33163.7 36324.9 -32810.9 36583.7 -32482.9
|
||||
36874.7 -32183.2 37195 -31915 38443.4 -30860.4 39716.5 -29835.9
|
||||
41013.6 -28841.8 42333.9 -27878.9 43676.8 -26947.7 45041.5 -26048.7
|
||||
46427.1 -25182.3 47833 -24349.2 49258.2 -23549.7 50702.1 -22784.3
|
||||
52163.7 -22053.4 53642.3 -21357.5 55137.1 -20697 56647.1 -20072.2
|
||||
58171.5 -19483.5 59709.5 -18931.1 61260.2 -18415.5 62822.8 -17936.9
|
||||
64396.2 -17495.6 65979.8 -17091.9 67572.4 -16725.9 69173.3 -16397.8
|
||||
70781.6 -16108 72396.3 -15856.4 74016.5 -15643.3 75641.4 -15468.8
|
||||
77269.9 -15332.9 78901.2 -15235.8 80534.3 -15177.6 82168.4 -15158.1
|
||||
86369.8 -15152.7 88766.5 -15372.4)
|
||||
)
|
||||
(via "Via[0-1]_600:400_um")
|
||||
(rule
|
||||
(width 250)
|
||||
(clearance 200.1)
|
||||
(clearance 200.1 (type default_smd))
|
||||
(clearance 50 (type smd_smd))
|
||||
)
|
||||
)
|
||||
(placement
|
||||
(component Kailh:Kailh_PG1232
|
||||
(place SW10 80000 -42670 front 0 (PN SW_PUSH))
|
||||
(place SW2 44000 -42370 front 0 (PN SW_PUSH))
|
||||
(place SW3 62000 -30140 front 0 (PN SW_PUSH))
|
||||
(place SW5 98000 -30540 front 0 (PN SW_PUSH))
|
||||
(place SW6 116000 -32420 front 0 (PN SW_PUSH))
|
||||
(place SW8 44000 -59370 front 0 (PN SW_PUSH))
|
||||
(place SW9 62000 -47140 front 0 (PN SW_PUSH))
|
||||
(place SW11 98000 -47540 front 0 (PN SW_PUSH))
|
||||
(place SW12 116000 -49420 front 0 (PN SW_PUSH))
|
||||
(place SW15 62000 -64145 front 0 (PN SW_PUSH))
|
||||
(place SW16 80000 -59670 front 0 (PN SW_PUSH))
|
||||
(place SW17 98000 -64545 front 0 (PN SW_PUSH))
|
||||
(place SW18 116000 -66420 front 0 (PN SW_PUSH))
|
||||
(place SW14 44000 -76375 front 0 (PN SW_PUSH))
|
||||
(place SW4 80000 -25680 front 0 (PN SW_PUSH))
|
||||
)
|
||||
(component kbd:ProMicro_v3
|
||||
(place U1 134300 -56500 front 0 (PN ProMicro))
|
||||
)
|
||||
(component Kailh:ferris_broom
|
||||
(place G*** 80300 -79150 back 351 (PN LOGO))
|
||||
)
|
||||
(component foostan:ResetSW
|
||||
(place RSW1 126970 -77240 front 90 (PN Val**))
|
||||
)
|
||||
(component "kbd:MJ-4PP-9"
|
||||
(place J1 142020 -78680 front 270 (PN "MJ-4PP-9"))
|
||||
)
|
||||
)
|
||||
(library
|
||||
(image Kailh:Kailh_PG1232
|
||||
(outline (path signal 120 -5950 2950 5950 2950))
|
||||
(outline (path signal 120 5950 2950 5950 -2950))
|
||||
(outline (path signal 120 -5950 -2950 -5950 2950))
|
||||
(outline (path signal 120 -6750 6250 6750 6250))
|
||||
(outline (path signal 120 6750 6250 6750 -6250))
|
||||
(outline (path signal 120 6750 -6250 -6750 -6250))
|
||||
(outline (path signal 120 -6750 -6250 -6750 6250))
|
||||
(outline (path signal 120 -2250 -2950 -2250 -4000))
|
||||
(outline (path signal 120 -2250 -4000 2250 -4000))
|
||||
(outline (path signal 120 2250 -4000 2250 -2950))
|
||||
(outline (path signal 120 -2250 -2950 -5950 -2950))
|
||||
(outline (path signal 120 2250 -2950 5950 -2950))
|
||||
(outline (path signal 120 -9000 8500 -9000 -8500))
|
||||
(outline (path signal 120 -9000 -8500 9000 -8500))
|
||||
(outline (path signal 120 9000 -8500 9000 8500))
|
||||
(outline (path signal 120 9000 8500 -9000 8500))
|
||||
(pin Oval[A]Pad_4700x1000_um @1 0 -3500)
|
||||
(pin Oval[A]Pad_1200x300_um (rotate 90) @2 -2200 -3500)
|
||||
(pin Oval[A]Pad_1200x300_um (rotate 90) @3 2200 -3500)
|
||||
(pin Oval[A]Pad_4700x300_um @4 0 -3950)
|
||||
(pin Oval[A]Pad_1000x5900_um @5 5360 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @6 4590 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @7 4200 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @8 -4200 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @9 -4590 0)
|
||||
(pin Oval[A]Pad_6100x300_um (rotate 90) @10 -5900 0)
|
||||
(pin Oval[A]Pad_6100x300_um (rotate 90) @11 5900 0)
|
||||
(pin Oval[A]Pad_12100x300_um @12 0 -2900)
|
||||
(pin Oval[A]Pad_12100x300_um @13 0 2900)
|
||||
(pin Oval[A]Pad_1000x5900_um @14 -5360 0)
|
||||
(pin Oval[A]Pad_11850x5900_um @15 0 0)
|
||||
(pin Round[A]Pad_1600_um 1 4580 -5100)
|
||||
(pin Round[A]Pad_1600_um 2 -2000 -5400)
|
||||
(pin Round[A]Pad_1600_um 1@1 -4580 -5100)
|
||||
(pin Round[A]Pad_1600_um 2@1 2000 -5400)
|
||||
(pin Round[A]Pad_1600_um 3 5300 4750)
|
||||
(pin Round[A]Pad_1600_um 4 -5300 4750)
|
||||
)
|
||||
(image kbd:ProMicro_v3
|
||||
(outline (path signal 150 8900 -14750 7890 -14750))
|
||||
(outline (path signal 150 -8900 -14750 -7900 -14750))
|
||||
(outline (path signal 150 8900 -13750 8900 -14750))
|
||||
(outline (path signal 150 -8900 -13700 -8900 -14750))
|
||||
(outline (path signal 150 8900 18300 7950 18300))
|
||||
(outline (path signal 150 -8900 18300 -7900 18300))
|
||||
(outline (path signal 150 8900 18300 8900 17300))
|
||||
(outline (path signal 150 -8900 18300 -8900 17300))
|
||||
(outline (path signal 150 -8900 -14750 -8900 18300))
|
||||
(outline (path signal 150 8900 -14750 -8900 -14750))
|
||||
(outline (path signal 150 8900 18300 8900 -14750))
|
||||
(outline (path signal 150 -8900 18300 -3750 18300))
|
||||
(outline (path signal 150 -3750 19600 3750 19600))
|
||||
(outline (path signal 150 3750 19600 3750 18300))
|
||||
(outline (path signal 150 -3750 19600 -3750 18299))
|
||||
(outline (path signal 150 -3750 18300 3750 18300))
|
||||
(outline (path signal 150 3760 18300 8900 18300))
|
||||
(outline (path signal 150 -3750 21200 -3750 19900))
|
||||
(outline (path signal 150 -3750 19900 3750 19900))
|
||||
(outline (path signal 150 3750 19900 3750 21200))
|
||||
(outline (path signal 150 3750 21200 -3750 21200))
|
||||
(outline (path signal 150 -500 20850 500 20850))
|
||||
(outline (path signal 150 500 20850 0 20200))
|
||||
(outline (path signal 150 0 20200 -500 20850))
|
||||
(outline (path signal 150 -350 20700 350 20700))
|
||||
(outline (path signal 150 -250 20550 250 20550))
|
||||
(outline (path signal 150 -150 20400 150 20400))
|
||||
(pin Round[A]Pad_1524_um 1 7611.4 14478)
|
||||
(pin Round[A]Pad_1524_um 2 7611.4 11938)
|
||||
(pin Round[A]Pad_1524_um 3 7611.4 9398)
|
||||
(pin Round[A]Pad_1524_um 4 7611.4 6858)
|
||||
(pin Round[A]Pad_1524_um 5 7611.4 4318)
|
||||
(pin Round[A]Pad_1524_um 6 7611.4 1778)
|
||||
(pin Round[A]Pad_1524_um 7 7611.4 -762)
|
||||
(pin Round[A]Pad_1524_um 8 7611.4 -3302)
|
||||
(pin Round[A]Pad_1524_um 9 7611.4 -5842)
|
||||
(pin Round[A]Pad_1524_um 10 7611.4 -8382)
|
||||
(pin Round[A]Pad_1524_um 11 7611.4 -10922)
|
||||
(pin Round[A]Pad_1524_um 12 7611.4 -13462)
|
||||
(pin Round[A]Pad_1524_um 13 -7608.6 -13462)
|
||||
(pin Round[A]Pad_1524_um 14 -7608.6 -10922)
|
||||
(pin Round[A]Pad_1524_um 15 -7608.6 -8382)
|
||||
(pin Round[A]Pad_1524_um 16 -7608.6 -5842)
|
||||
(pin Round[A]Pad_1524_um 17 -7608.6 -3302)
|
||||
(pin Round[A]Pad_1524_um 18 -7608.6 -762)
|
||||
(pin Round[A]Pad_1524_um 19 -7608.6 1778)
|
||||
(pin Round[A]Pad_1524_um 20 -7608.6 4318)
|
||||
(pin Round[A]Pad_1524_um 21 -7608.6 6858)
|
||||
(pin Round[A]Pad_1524_um 22 -7608.6 9398)
|
||||
(pin Round[A]Pad_1524_um 23 -7608.6 11938)
|
||||
(pin Round[A]Pad_1524_um 24 -7608.6 14478)
|
||||
)
|
||||
(image Kailh:ferris_broom
|
||||
)
|
||||
(image foostan:ResetSW
|
||||
(outline (path signal 150 3000 -1500 3000 -1750))
|
||||
(outline (path signal 150 3000 -1750 -3000 -1750))
|
||||
(outline (path signal 150 -3000 -1750 -3000 -1500))
|
||||
(outline (path signal 150 -3000 1500 -3000 1750))
|
||||
(outline (path signal 150 -3000 1750 3000 1750))
|
||||
(outline (path signal 150 3000 1750 3000 1500))
|
||||
(outline (path signal 150 -3000 -1750 3000 -1750))
|
||||
(outline (path signal 150 3000 -1750 3000 -1500))
|
||||
(outline (path signal 150 -3000 -1750 -3000 -1500))
|
||||
(outline (path signal 150 -3000 1750 -3000 1500))
|
||||
(outline (path signal 150 -3000 1750 3000 1750))
|
||||
(outline (path signal 150 3000 1750 3000 1500))
|
||||
(pin Round[A]Pad_2000_um 1 3250 0)
|
||||
(pin Round[A]Pad_2000_um 2 -3250 0)
|
||||
)
|
||||
(image "kbd:MJ-4PP-9"
|
||||
(outline (path signal 150 -4750 -12000 -4750 0))
|
||||
(outline (path signal 150 1250 -12000 -4750 -12000))
|
||||
(outline (path signal 150 1250 0 1250 -12000))
|
||||
(outline (path signal 150 -4750 0 1250 0))
|
||||
(outline (path signal 150 -3000 0 3000 0))
|
||||
(outline (path signal 150 3000 0 3000 -12000))
|
||||
(outline (path signal 150 3000 -12000 -3000 -12000))
|
||||
(outline (path signal 150 -3000 -12000 -3000 0))
|
||||
(pin Oval[A]Pad_1700x2500_um D -3850 -10300)
|
||||
(pin Oval[A]Pad_1700x2500_um A 350 -11800)
|
||||
(pin Oval[A]Pad_1700x2500_um B -3850 -3300)
|
||||
(pin Oval[A]Pad_1700x2500_um C -3850 -6300)
|
||||
(pin Oval[A]Pad_1700x2500_um B@1 2100 -3300)
|
||||
(pin Oval[A]Pad_1700x2500_um C@1 2100 -6300)
|
||||
(pin Oval[A]Pad_1700x2500_um D@1 2100 -10300)
|
||||
(pin Oval[A]Pad_1700x2500_um A@1 -2100 -11800)
|
||||
(keepout "" (circle F.Cu 1200 -1750 -8500))
|
||||
(keepout "" (circle B.Cu 1200 -1750 -8500))
|
||||
(keepout "" (circle F.Cu 1200 -1750 -1500))
|
||||
(keepout "" (circle B.Cu 1200 -1750 -1500))
|
||||
(keepout "" (circle F.Cu 1200 0 -1500))
|
||||
(keepout "" (circle B.Cu 1200 0 -1500))
|
||||
(keepout "" (circle F.Cu 1200 0 -8500))
|
||||
(keepout "" (circle B.Cu 1200 0 -8500))
|
||||
)
|
||||
(padstack Round[A]Pad_1524_um
|
||||
(shape (circle F.Cu 1524))
|
||||
(shape (circle B.Cu 1524))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Round[A]Pad_1600_um
|
||||
(shape (circle F.Cu 1600))
|
||||
(shape (circle B.Cu 1600))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Round[A]Pad_2000_um
|
||||
(shape (circle F.Cu 2000))
|
||||
(shape (circle B.Cu 2000))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_4700x1000_um
|
||||
(shape (path F.Cu 1000 -1850 0 1850 0))
|
||||
(shape (path B.Cu 1000 -1850 0 1850 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_1000x5900_um
|
||||
(shape (path F.Cu 1000 0 -2450 0 2450))
|
||||
(shape (path B.Cu 1000 0 -2450 0 2450))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_1700x2500_um
|
||||
(shape (path F.Cu 1700 0 -400 0 400))
|
||||
(shape (path B.Cu 1700 0 -400 0 400))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_4700x300_um
|
||||
(shape (path F.Cu 300 -2200 0 2200 0))
|
||||
(shape (path B.Cu 300 -2200 0 2200 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_6100x300_um
|
||||
(shape (path F.Cu 300 -2900 0 2900 0))
|
||||
(shape (path B.Cu 300 -2900 0 2900 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_1200x300_um
|
||||
(shape (path F.Cu 300 -450 0 450 0))
|
||||
(shape (path B.Cu 300 -450 0 450 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_12100x300_um
|
||||
(shape (path F.Cu 300 -5900 0 5900 0))
|
||||
(shape (path B.Cu 300 -5900 0 5900 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_11850x5900_um
|
||||
(shape (path F.Cu 5900 -2975 0 2975 0))
|
||||
(shape (path B.Cu 5900 -2975 0 2975 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack "Via[0-1]_600:400_um"
|
||||
(shape (circle F.Cu 600))
|
||||
(shape (circle B.Cu 600))
|
||||
(attach off)
|
||||
)
|
||||
)
|
||||
(network
|
||||
(net row0
|
||||
(pins SW16-1 SW16-1@1 U1-7)
|
||||
)
|
||||
(net row1
|
||||
(pins SW17-1 SW17-1@1 U1-8)
|
||||
)
|
||||
(net row2
|
||||
(pins SW18-1 SW18-1@1 U1-9)
|
||||
)
|
||||
(net row3
|
||||
(pins SW2-1 SW2-1@1 U1-10)
|
||||
)
|
||||
(net GND
|
||||
(pins SW10-2 SW10-2@1 SW2-2 SW2-2@1 SW3-2 SW3-2@1 SW5-2 SW5-2@1 SW6-2 SW6-2@1
|
||||
SW8-2 SW8-2@1 SW9-2 SW9-2@1 SW11-2 SW11-2@1 SW12-2 SW12-2@1 SW15-2 SW15-2@1
|
||||
SW16-2 SW16-2@1 SW17-2 SW17-2@1 SW18-2 SW18-2@1 SW14-2 SW14-2@1 SW4-2 SW4-2@1
|
||||
U1-3 U1-4 U1-23 RSW1-2 J1-C J1-C@1)
|
||||
)
|
||||
(net VCC
|
||||
(pins U1-21 J1-D J1-D@1)
|
||||
)
|
||||
(net col0
|
||||
(pins SW6-1 SW6-1@1 U1-20)
|
||||
)
|
||||
(net col1
|
||||
(pins SW5-1 SW5-1@1 U1-19)
|
||||
)
|
||||
(net col2
|
||||
(pins SW4-1 SW4-1@1 U1-18)
|
||||
)
|
||||
(net col3
|
||||
(pins SW3-1 SW3-1@1 U1-17)
|
||||
)
|
||||
(net col4
|
||||
(pins SW8-1 SW8-1@1 U1-16)
|
||||
)
|
||||
(net col5
|
||||
(pins SW9-1 SW9-1@1 U1-15)
|
||||
)
|
||||
(net LED
|
||||
(pins SW12-1 SW12-1@1 U1-1)
|
||||
)
|
||||
(net data
|
||||
(pins U1-2 J1-B J1-B@1)
|
||||
)
|
||||
(net reset
|
||||
(pins U1-22 RSW1-1)
|
||||
)
|
||||
(net SCL
|
||||
(pins SW15-1 SW15-1@1 U1-6)
|
||||
)
|
||||
(net SDA
|
||||
(pins SW14-1 SW14-1@1 U1-5)
|
||||
)
|
||||
(net "Net-(U1-Pad24)"
|
||||
(pins U1-24)
|
||||
)
|
||||
(net "Net-(J1-PadA)"
|
||||
(pins J1-A J1-A@1)
|
||||
)
|
||||
(net "Net-(U1-Pad14)"
|
||||
(pins SW10-1 SW10-1@1 U1-14)
|
||||
)
|
||||
(net "Net-(U1-Pad13)"
|
||||
(pins SW11-1 SW11-1@1 U1-13)
|
||||
)
|
||||
(net "Net-(U1-Pad12)"
|
||||
(pins U1-12)
|
||||
)
|
||||
(net "Net-(U1-Pad11)"
|
||||
(pins U1-11)
|
||||
)
|
||||
(class kicad_default "" GND LED "Net-(J1-PadA)" "Net-(U1-Pad11)" "Net-(U1-Pad12)"
|
||||
"Net-(U1-Pad13)" "Net-(U1-Pad14)" "Net-(U1-Pad24)" SCL SDA VCC col0
|
||||
col1 col2 col3 col4 col5 data reset row0 row1 row2 row3
|
||||
(circuit
|
||||
(use_via Via[0-1]_600:400_um)
|
||||
)
|
||||
(rule
|
||||
(width 250)
|
||||
(clearance 200.1)
|
||||
)
|
||||
)
|
||||
)
|
||||
(wiring
|
||||
)
|
||||
)
|
||||
(pcb "/home/david/Projects/36keys/34Keys/Ferris Sweep Compact LOW/ferris-sweep-compact.dsn"
|
||||
(parser
|
||||
(string_quote ")
|
||||
(space_in_quoted_tokens on)
|
||||
(host_cad "KiCad's Pcbnew")
|
||||
(host_version "5.1.8")
|
||||
)
|
||||
(resolution um 10)
|
||||
(unit um)
|
||||
(structure
|
||||
(layer F.Cu
|
||||
(type signal)
|
||||
(property
|
||||
(index 0)
|
||||
)
|
||||
)
|
||||
(layer B.Cu
|
||||
(type signal)
|
||||
(property
|
||||
(index 1)
|
||||
)
|
||||
)
|
||||
(boundary
|
||||
(path pcb 0 88766.5 -15372.4 91159.2 -15632.1 93547.2 -15931.7
|
||||
95929.9 -16271.2 98306.5 -16650.5 100677 -17069.4 103039 -17527.9
|
||||
105394 -18025.8 107740 -18562.9 110077 -19139.2 112403 -19754.5
|
||||
114720 -20408.5 117024 -21101.2 119318 -21832.3 121598 -22601.6
|
||||
123865 -23408.9 124011 -23497.5 124132 -23616.5 124224 -23760
|
||||
124281 -23920.3 124300 -24089.4 124300 -36080 124330 -36360.8
|
||||
124399 -36634.6 124506 -36896 124648 -37139.7 124824 -37360.9
|
||||
125028 -37555.3 125259 -37718.9 125509 -37848.4 125776 -37941.4
|
||||
126053 -37995.9 126335 -38010.9 142240 -38008 142407 -38026.8
|
||||
142565 -38082.3 142708 -38171.6 142826 -38290.4 142916 -38432.6
|
||||
142971 -38591.1 142990 -38758 143002 -75184 142974 -76027.3
|
||||
142904 -76868.1 142792 -77704.3 142638 -78533.8 142442 -79354.5
|
||||
142205 -80164.3 141928 -80961.2 141611 -81743.1 141255 -82508.1
|
||||
130748 -101101 130580 -101329 130381 -101530 130156 -101700
|
||||
129908 -101836 129644 -101936 129368 -101996 129086 -102017
|
||||
128804 -101996 128528 -101936 128264 -101836 128016 -101700
|
||||
126457 -100789 124879 -99910.3 123283 -99065.1 121669 -98253.4
|
||||
120039 -97475.7 118393 -96732.3 116732 -96023.5 115056 -95349.7
|
||||
113367 -94711 111665 -94107.9 109950 -93540.5 108224 -93009.1
|
||||
106487 -92513.9 102926 -91756 99356.4 -91038.1 95779.1 -90360.4
|
||||
92194.3 -89722.9 88602.7 -89125.7 85004.5 -88569 81400.3 -88052.7
|
||||
77790.5 -87577 74175.7 -87141.9 70556.1 -86747.4 66932.4 -86393.6
|
||||
63304.9 -86080.6 59674.1 -85808.4 56040.5 -85577 52404.5 -85386.4
|
||||
48766.6 -85236.7 45127.2 -85128 41486.9 -85060.1 37846 -85033.1
|
||||
37561.6 -85021.4 37281.8 -84969.5 37012.1 -84878.3 36758.1 -84749.9
|
||||
36524.9 -84586.7 36317.3 -84392.1 36139.3 -84170 35994.6 -83924.9
|
||||
35886.2 -83661.7 35816.2 -83385.8 35786 -83102.8 35768.1 -33928.7
|
||||
35915 -33537.6 36101.2 -33163.7 36324.9 -32810.9 36583.7 -32482.9
|
||||
36874.7 -32183.2 37195 -31915 38443.4 -30860.4 39716.5 -29835.9
|
||||
41013.6 -28841.8 42333.9 -27878.9 43676.8 -26947.7 45041.5 -26048.7
|
||||
46427.1 -25182.3 47833 -24349.2 49258.2 -23549.7 50702.1 -22784.3
|
||||
52163.7 -22053.4 53642.3 -21357.5 55137.1 -20697 56647.1 -20072.2
|
||||
58171.5 -19483.5 59709.5 -18931.1 61260.2 -18415.5 62822.8 -17936.9
|
||||
64396.2 -17495.6 65979.8 -17091.9 67572.4 -16725.9 69173.3 -16397.8
|
||||
70781.6 -16108 72396.3 -15856.4 74016.5 -15643.3 75641.4 -15468.8
|
||||
77269.9 -15332.9 78901.2 -15235.8 80534.3 -15177.6 82168.4 -15158.1
|
||||
86369.8 -15152.7 88766.5 -15372.4)
|
||||
)
|
||||
(via "Via[0-1]_600:400_um")
|
||||
(rule
|
||||
(width 250)
|
||||
(clearance 200.1)
|
||||
(clearance 200.1 (type default_smd))
|
||||
(clearance 50 (type smd_smd))
|
||||
)
|
||||
)
|
||||
(placement
|
||||
(component Kailh:Kailh_PG1232
|
||||
(place SW10 80000 -42670 front 0 (PN SW_PUSH))
|
||||
(place SW2 44000 -42370 front 0 (PN SW_PUSH))
|
||||
(place SW3 62000 -30140 front 0 (PN SW_PUSH))
|
||||
(place SW5 98000 -30540 front 0 (PN SW_PUSH))
|
||||
(place SW6 116000 -32420 front 0 (PN SW_PUSH))
|
||||
(place SW8 44000 -59370 front 0 (PN SW_PUSH))
|
||||
(place SW9 62000 -47140 front 0 (PN SW_PUSH))
|
||||
(place SW11 98000 -47540 front 0 (PN SW_PUSH))
|
||||
(place SW12 116000 -49420 front 0 (PN SW_PUSH))
|
||||
(place SW15 62000 -64145 front 0 (PN SW_PUSH))
|
||||
(place SW16 80000 -59670 front 0 (PN SW_PUSH))
|
||||
(place SW17 98000 -64545 front 0 (PN SW_PUSH))
|
||||
(place SW18 116000 -66420 front 0 (PN SW_PUSH))
|
||||
(place SW14 44000 -76375 front 0 (PN SW_PUSH))
|
||||
(place SW4 80000 -25680 front 0 (PN SW_PUSH))
|
||||
)
|
||||
(component kbd:ProMicro_v3
|
||||
(place U1 134300 -56500 front 0 (PN ProMicro))
|
||||
)
|
||||
(component Kailh:ferris_broom
|
||||
(place G*** 80300 -79150 back 351 (PN LOGO))
|
||||
)
|
||||
(component foostan:ResetSW
|
||||
(place RSW1 126970 -77240 front 90 (PN Val**))
|
||||
)
|
||||
(component "kbd:MJ-4PP-9"
|
||||
(place J1 142020 -78680 front 270 (PN "MJ-4PP-9"))
|
||||
)
|
||||
)
|
||||
(library
|
||||
(image Kailh:Kailh_PG1232
|
||||
(outline (path signal 120 -5950 2950 5950 2950))
|
||||
(outline (path signal 120 5950 2950 5950 -2950))
|
||||
(outline (path signal 120 -5950 -2950 -5950 2950))
|
||||
(outline (path signal 120 -6750 6250 6750 6250))
|
||||
(outline (path signal 120 6750 6250 6750 -6250))
|
||||
(outline (path signal 120 6750 -6250 -6750 -6250))
|
||||
(outline (path signal 120 -6750 -6250 -6750 6250))
|
||||
(outline (path signal 120 -2250 -2950 -2250 -4000))
|
||||
(outline (path signal 120 -2250 -4000 2250 -4000))
|
||||
(outline (path signal 120 2250 -4000 2250 -2950))
|
||||
(outline (path signal 120 -2250 -2950 -5950 -2950))
|
||||
(outline (path signal 120 2250 -2950 5950 -2950))
|
||||
(outline (path signal 120 -9000 8500 -9000 -8500))
|
||||
(outline (path signal 120 -9000 -8500 9000 -8500))
|
||||
(outline (path signal 120 9000 -8500 9000 8500))
|
||||
(outline (path signal 120 9000 8500 -9000 8500))
|
||||
(pin Oval[A]Pad_4700x1000_um @1 0 -3500)
|
||||
(pin Oval[A]Pad_1200x300_um (rotate 90) @2 -2200 -3500)
|
||||
(pin Oval[A]Pad_1200x300_um (rotate 90) @3 2200 -3500)
|
||||
(pin Oval[A]Pad_4700x300_um @4 0 -3950)
|
||||
(pin Oval[A]Pad_1000x5900_um @5 5360 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @6 4590 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @7 4200 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @8 -4200 0)
|
||||
(pin Oval[A]Pad_1000x5900_um @9 -4590 0)
|
||||
(pin Oval[A]Pad_6100x300_um (rotate 90) @10 -5900 0)
|
||||
(pin Oval[A]Pad_6100x300_um (rotate 90) @11 5900 0)
|
||||
(pin Oval[A]Pad_12100x300_um @12 0 -2900)
|
||||
(pin Oval[A]Pad_12100x300_um @13 0 2900)
|
||||
(pin Oval[A]Pad_1000x5900_um @14 -5360 0)
|
||||
(pin Oval[A]Pad_11850x5900_um @15 0 0)
|
||||
(pin Round[A]Pad_1600_um 1 4580 -5100)
|
||||
(pin Round[A]Pad_1600_um 2 -2000 -5400)
|
||||
(pin Round[A]Pad_1600_um 1@1 -4580 -5100)
|
||||
(pin Round[A]Pad_1600_um 2@1 2000 -5400)
|
||||
(pin Round[A]Pad_1600_um 3 5300 4750)
|
||||
(pin Round[A]Pad_1600_um 4 -5300 4750)
|
||||
)
|
||||
(image kbd:ProMicro_v3
|
||||
(outline (path signal 150 8900 -14750 7890 -14750))
|
||||
(outline (path signal 150 -8900 -14750 -7900 -14750))
|
||||
(outline (path signal 150 8900 -13750 8900 -14750))
|
||||
(outline (path signal 150 -8900 -13700 -8900 -14750))
|
||||
(outline (path signal 150 8900 18300 7950 18300))
|
||||
(outline (path signal 150 -8900 18300 -7900 18300))
|
||||
(outline (path signal 150 8900 18300 8900 17300))
|
||||
(outline (path signal 150 -8900 18300 -8900 17300))
|
||||
(outline (path signal 150 -8900 -14750 -8900 18300))
|
||||
(outline (path signal 150 8900 -14750 -8900 -14750))
|
||||
(outline (path signal 150 8900 18300 8900 -14750))
|
||||
(outline (path signal 150 -8900 18300 -3750 18300))
|
||||
(outline (path signal 150 -3750 19600 3750 19600))
|
||||
(outline (path signal 150 3750 19600 3750 18300))
|
||||
(outline (path signal 150 -3750 19600 -3750 18299))
|
||||
(outline (path signal 150 -3750 18300 3750 18300))
|
||||
(outline (path signal 150 3760 18300 8900 18300))
|
||||
(outline (path signal 150 -3750 21200 -3750 19900))
|
||||
(outline (path signal 150 -3750 19900 3750 19900))
|
||||
(outline (path signal 150 3750 19900 3750 21200))
|
||||
(outline (path signal 150 3750 21200 -3750 21200))
|
||||
(outline (path signal 150 -500 20850 500 20850))
|
||||
(outline (path signal 150 500 20850 0 20200))
|
||||
(outline (path signal 150 0 20200 -500 20850))
|
||||
(outline (path signal 150 -350 20700 350 20700))
|
||||
(outline (path signal 150 -250 20550 250 20550))
|
||||
(outline (path signal 150 -150 20400 150 20400))
|
||||
(pin Round[A]Pad_1524_um 1 7611.4 14478)
|
||||
(pin Round[A]Pad_1524_um 2 7611.4 11938)
|
||||
(pin Round[A]Pad_1524_um 3 7611.4 9398)
|
||||
(pin Round[A]Pad_1524_um 4 7611.4 6858)
|
||||
(pin Round[A]Pad_1524_um 5 7611.4 4318)
|
||||
(pin Round[A]Pad_1524_um 6 7611.4 1778)
|
||||
(pin Round[A]Pad_1524_um 7 7611.4 -762)
|
||||
(pin Round[A]Pad_1524_um 8 7611.4 -3302)
|
||||
(pin Round[A]Pad_1524_um 9 7611.4 -5842)
|
||||
(pin Round[A]Pad_1524_um 10 7611.4 -8382)
|
||||
(pin Round[A]Pad_1524_um 11 7611.4 -10922)
|
||||
(pin Round[A]Pad_1524_um 12 7611.4 -13462)
|
||||
(pin Round[A]Pad_1524_um 13 -7608.6 -13462)
|
||||
(pin Round[A]Pad_1524_um 14 -7608.6 -10922)
|
||||
(pin Round[A]Pad_1524_um 15 -7608.6 -8382)
|
||||
(pin Round[A]Pad_1524_um 16 -7608.6 -5842)
|
||||
(pin Round[A]Pad_1524_um 17 -7608.6 -3302)
|
||||
(pin Round[A]Pad_1524_um 18 -7608.6 -762)
|
||||
(pin Round[A]Pad_1524_um 19 -7608.6 1778)
|
||||
(pin Round[A]Pad_1524_um 20 -7608.6 4318)
|
||||
(pin Round[A]Pad_1524_um 21 -7608.6 6858)
|
||||
(pin Round[A]Pad_1524_um 22 -7608.6 9398)
|
||||
(pin Round[A]Pad_1524_um 23 -7608.6 11938)
|
||||
(pin Round[A]Pad_1524_um 24 -7608.6 14478)
|
||||
)
|
||||
(image Kailh:ferris_broom
|
||||
)
|
||||
(image foostan:ResetSW
|
||||
(outline (path signal 150 3000 -1500 3000 -1750))
|
||||
(outline (path signal 150 3000 -1750 -3000 -1750))
|
||||
(outline (path signal 150 -3000 -1750 -3000 -1500))
|
||||
(outline (path signal 150 -3000 1500 -3000 1750))
|
||||
(outline (path signal 150 -3000 1750 3000 1750))
|
||||
(outline (path signal 150 3000 1750 3000 1500))
|
||||
(outline (path signal 150 -3000 -1750 3000 -1750))
|
||||
(outline (path signal 150 3000 -1750 3000 -1500))
|
||||
(outline (path signal 150 -3000 -1750 -3000 -1500))
|
||||
(outline (path signal 150 -3000 1750 -3000 1500))
|
||||
(outline (path signal 150 -3000 1750 3000 1750))
|
||||
(outline (path signal 150 3000 1750 3000 1500))
|
||||
(pin Round[A]Pad_2000_um 1 3250 0)
|
||||
(pin Round[A]Pad_2000_um 2 -3250 0)
|
||||
)
|
||||
(image "kbd:MJ-4PP-9"
|
||||
(outline (path signal 150 -4750 -12000 -4750 0))
|
||||
(outline (path signal 150 1250 -12000 -4750 -12000))
|
||||
(outline (path signal 150 1250 0 1250 -12000))
|
||||
(outline (path signal 150 -4750 0 1250 0))
|
||||
(outline (path signal 150 -3000 0 3000 0))
|
||||
(outline (path signal 150 3000 0 3000 -12000))
|
||||
(outline (path signal 150 3000 -12000 -3000 -12000))
|
||||
(outline (path signal 150 -3000 -12000 -3000 0))
|
||||
(pin Oval[A]Pad_1700x2500_um D -3850 -10300)
|
||||
(pin Oval[A]Pad_1700x2500_um A 350 -11800)
|
||||
(pin Oval[A]Pad_1700x2500_um B -3850 -3300)
|
||||
(pin Oval[A]Pad_1700x2500_um C -3850 -6300)
|
||||
(pin Oval[A]Pad_1700x2500_um B@1 2100 -3300)
|
||||
(pin Oval[A]Pad_1700x2500_um C@1 2100 -6300)
|
||||
(pin Oval[A]Pad_1700x2500_um D@1 2100 -10300)
|
||||
(pin Oval[A]Pad_1700x2500_um A@1 -2100 -11800)
|
||||
(keepout "" (circle F.Cu 1200 -1750 -8500))
|
||||
(keepout "" (circle B.Cu 1200 -1750 -8500))
|
||||
(keepout "" (circle F.Cu 1200 -1750 -1500))
|
||||
(keepout "" (circle B.Cu 1200 -1750 -1500))
|
||||
(keepout "" (circle F.Cu 1200 0 -1500))
|
||||
(keepout "" (circle B.Cu 1200 0 -1500))
|
||||
(keepout "" (circle F.Cu 1200 0 -8500))
|
||||
(keepout "" (circle B.Cu 1200 0 -8500))
|
||||
)
|
||||
(padstack Round[A]Pad_1524_um
|
||||
(shape (circle F.Cu 1524))
|
||||
(shape (circle B.Cu 1524))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Round[A]Pad_1600_um
|
||||
(shape (circle F.Cu 1600))
|
||||
(shape (circle B.Cu 1600))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Round[A]Pad_2000_um
|
||||
(shape (circle F.Cu 2000))
|
||||
(shape (circle B.Cu 2000))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_4700x1000_um
|
||||
(shape (path F.Cu 1000 -1850 0 1850 0))
|
||||
(shape (path B.Cu 1000 -1850 0 1850 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_1000x5900_um
|
||||
(shape (path F.Cu 1000 0 -2450 0 2450))
|
||||
(shape (path B.Cu 1000 0 -2450 0 2450))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_1700x2500_um
|
||||
(shape (path F.Cu 1700 0 -400 0 400))
|
||||
(shape (path B.Cu 1700 0 -400 0 400))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_4700x300_um
|
||||
(shape (path F.Cu 300 -2200 0 2200 0))
|
||||
(shape (path B.Cu 300 -2200 0 2200 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_6100x300_um
|
||||
(shape (path F.Cu 300 -2900 0 2900 0))
|
||||
(shape (path B.Cu 300 -2900 0 2900 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_1200x300_um
|
||||
(shape (path F.Cu 300 -450 0 450 0))
|
||||
(shape (path B.Cu 300 -450 0 450 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_12100x300_um
|
||||
(shape (path F.Cu 300 -5900 0 5900 0))
|
||||
(shape (path B.Cu 300 -5900 0 5900 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack Oval[A]Pad_11850x5900_um
|
||||
(shape (path F.Cu 5900 -2975 0 2975 0))
|
||||
(shape (path B.Cu 5900 -2975 0 2975 0))
|
||||
(attach off)
|
||||
)
|
||||
(padstack "Via[0-1]_600:400_um"
|
||||
(shape (circle F.Cu 600))
|
||||
(shape (circle B.Cu 600))
|
||||
(attach off)
|
||||
)
|
||||
)
|
||||
(network
|
||||
(net row0
|
||||
(pins SW16-1 SW16-1@1 U1-7)
|
||||
)
|
||||
(net row1
|
||||
(pins SW17-1 SW17-1@1 U1-8)
|
||||
)
|
||||
(net row2
|
||||
(pins SW18-1 SW18-1@1 U1-9)
|
||||
)
|
||||
(net row3
|
||||
(pins SW2-1 SW2-1@1 U1-10)
|
||||
)
|
||||
(net GND
|
||||
(pins SW10-2 SW10-2@1 SW2-2 SW2-2@1 SW3-2 SW3-2@1 SW5-2 SW5-2@1 SW6-2 SW6-2@1
|
||||
SW8-2 SW8-2@1 SW9-2 SW9-2@1 SW11-2 SW11-2@1 SW12-2 SW12-2@1 SW15-2 SW15-2@1
|
||||
SW16-2 SW16-2@1 SW17-2 SW17-2@1 SW18-2 SW18-2@1 SW14-2 SW14-2@1 SW4-2 SW4-2@1
|
||||
U1-3 U1-4 U1-23 RSW1-2 J1-C J1-C@1)
|
||||
)
|
||||
(net VCC
|
||||
(pins U1-21 J1-D J1-D@1)
|
||||
)
|
||||
(net col0
|
||||
(pins SW6-1 SW6-1@1 U1-20)
|
||||
)
|
||||
(net col1
|
||||
(pins SW5-1 SW5-1@1 U1-19)
|
||||
)
|
||||
(net col2
|
||||
(pins SW4-1 SW4-1@1 U1-18)
|
||||
)
|
||||
(net col3
|
||||
(pins SW3-1 SW3-1@1 U1-17)
|
||||
)
|
||||
(net col4
|
||||
(pins SW8-1 SW8-1@1 U1-16)
|
||||
)
|
||||
(net col5
|
||||
(pins SW9-1 SW9-1@1 U1-15)
|
||||
)
|
||||
(net LED
|
||||
(pins SW12-1 SW12-1@1 U1-1)
|
||||
)
|
||||
(net data
|
||||
(pins U1-2 J1-B J1-B@1)
|
||||
)
|
||||
(net reset
|
||||
(pins U1-22 RSW1-1)
|
||||
)
|
||||
(net SCL
|
||||
(pins SW15-1 SW15-1@1 U1-6)
|
||||
)
|
||||
(net SDA
|
||||
(pins SW14-1 SW14-1@1 U1-5)
|
||||
)
|
||||
(net "Net-(U1-Pad24)"
|
||||
(pins U1-24)
|
||||
)
|
||||
(net "Net-(J1-PadA)"
|
||||
(pins J1-A J1-A@1)
|
||||
)
|
||||
(net "Net-(U1-Pad14)"
|
||||
(pins SW10-1 SW10-1@1 U1-14)
|
||||
)
|
||||
(net "Net-(U1-Pad13)"
|
||||
(pins SW11-1 SW11-1@1 U1-13)
|
||||
)
|
||||
(net "Net-(U1-Pad12)"
|
||||
(pins U1-12)
|
||||
)
|
||||
(net "Net-(U1-Pad11)"
|
||||
(pins U1-11)
|
||||
)
|
||||
(class kicad_default "" GND LED "Net-(J1-PadA)" "Net-(U1-Pad11)" "Net-(U1-Pad12)"
|
||||
"Net-(U1-Pad13)" "Net-(U1-Pad14)" "Net-(U1-Pad24)" SCL SDA VCC col0
|
||||
col1 col2 col3 col4 col5 data reset row0 row1 row2 row3
|
||||
(circuit
|
||||
(use_via Via[0-1]_600:400_um)
|
||||
)
|
||||
(rule
|
||||
(width 250)
|
||||
(clearance 200.1)
|
||||
)
|
||||
)
|
||||
)
|
||||
(wiring
|
||||
)
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,236 +1,236 @@
|
|||
update=Wed 22 Jul 2020 14:49:49 BST
|
||||
version=1
|
||||
last_client=kicad
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[general]
|
||||
version=1
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[pcbnew]
|
||||
version=1
|
||||
PageLayoutDescrFile=
|
||||
LastNetListRead=sweep.net
|
||||
CopperLayerCount=2
|
||||
BoardThickness=1.6
|
||||
AllowMicroVias=0
|
||||
AllowBlindVias=0
|
||||
RequireCourtyardDefinitions=0
|
||||
ProhibitOverlappingCourtyards=1
|
||||
MinTrackWidth=0.2
|
||||
MinViaDiameter=0.4
|
||||
MinViaDrill=0.3
|
||||
MinMicroViaDiameter=0.2
|
||||
MinMicroViaDrill=0.09999999999999999
|
||||
MinHoleToHole=0.25
|
||||
TrackWidth1=0.25
|
||||
TrackWidth2=0.5
|
||||
ViaDiameter1=0.6
|
||||
ViaDrill1=0.4
|
||||
dPairWidth1=0.2
|
||||
dPairGap1=0.25
|
||||
dPairViaGap1=0.25
|
||||
SilkLineWidth=0.15
|
||||
SilkTextSizeV=1
|
||||
SilkTextSizeH=1
|
||||
SilkTextSizeThickness=0.15
|
||||
SilkTextItalic=0
|
||||
SilkTextUpright=1
|
||||
CopperLineWidth=0.15
|
||||
CopperTextSizeV=1.5
|
||||
CopperTextSizeH=1.5
|
||||
CopperTextThickness=0.3
|
||||
CopperTextItalic=0
|
||||
CopperTextUpright=1
|
||||
EdgeCutLineWidth=0.15
|
||||
CourtyardLineWidth=0.05
|
||||
OthersLineWidth=0.15
|
||||
OthersTextSizeV=1
|
||||
OthersTextSizeH=1
|
||||
OthersTextSizeThickness=0.15
|
||||
OthersTextItalic=0
|
||||
OthersTextUpright=1
|
||||
SolderMaskClearance=0.2
|
||||
SolderMaskMinWidth=0
|
||||
SolderPasteClearance=0
|
||||
SolderPasteRatio=0
|
||||
[pcbnew/Layer.F.Cu]
|
||||
Name=F.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.In1.Cu]
|
||||
Name=In1.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In2.Cu]
|
||||
Name=In2.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In3.Cu]
|
||||
Name=In3.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In4.Cu]
|
||||
Name=In4.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In5.Cu]
|
||||
Name=In5.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In6.Cu]
|
||||
Name=In6.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In7.Cu]
|
||||
Name=In7.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In8.Cu]
|
||||
Name=In8.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In9.Cu]
|
||||
Name=In9.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In10.Cu]
|
||||
Name=In10.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In11.Cu]
|
||||
Name=In11.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In12.Cu]
|
||||
Name=In12.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In13.Cu]
|
||||
Name=In13.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In14.Cu]
|
||||
Name=In14.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In15.Cu]
|
||||
Name=In15.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In16.Cu]
|
||||
Name=In16.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In17.Cu]
|
||||
Name=In17.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In18.Cu]
|
||||
Name=In18.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In19.Cu]
|
||||
Name=In19.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In20.Cu]
|
||||
Name=In20.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In21.Cu]
|
||||
Name=In21.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In22.Cu]
|
||||
Name=In22.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In23.Cu]
|
||||
Name=In23.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In24.Cu]
|
||||
Name=In24.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In25.Cu]
|
||||
Name=In25.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In26.Cu]
|
||||
Name=In26.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In27.Cu]
|
||||
Name=In27.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In28.Cu]
|
||||
Name=In28.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In29.Cu]
|
||||
Name=In29.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In30.Cu]
|
||||
Name=In30.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.B.Cu]
|
||||
Name=B.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Dwgs.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Cmts.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco1.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco2.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Edge.Cuts]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Margin]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Rescue]
|
||||
Enabled=0
|
||||
[pcbnew/Netclasses]
|
||||
[pcbnew/Netclasses/Default]
|
||||
Name=Default
|
||||
Clearance=0.2
|
||||
TrackWidth=0.25
|
||||
ViaDiameter=0.6
|
||||
ViaDrill=0.4
|
||||
uViaDiameter=0.3
|
||||
uViaDrill=0.1
|
||||
dPairWidth=0.2
|
||||
dPairGap=0.25
|
||||
dPairViaGap=0.25
|
||||
update=Wed 22 Jul 2020 14:49:49 BST
|
||||
version=1
|
||||
last_client=kicad
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[general]
|
||||
version=1
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[pcbnew]
|
||||
version=1
|
||||
PageLayoutDescrFile=
|
||||
LastNetListRead=sweep.net
|
||||
CopperLayerCount=2
|
||||
BoardThickness=1.6
|
||||
AllowMicroVias=0
|
||||
AllowBlindVias=0
|
||||
RequireCourtyardDefinitions=0
|
||||
ProhibitOverlappingCourtyards=1
|
||||
MinTrackWidth=0.2
|
||||
MinViaDiameter=0.4
|
||||
MinViaDrill=0.3
|
||||
MinMicroViaDiameter=0.2
|
||||
MinMicroViaDrill=0.09999999999999999
|
||||
MinHoleToHole=0.25
|
||||
TrackWidth1=0.25
|
||||
TrackWidth2=0.5
|
||||
ViaDiameter1=0.6
|
||||
ViaDrill1=0.4
|
||||
dPairWidth1=0.2
|
||||
dPairGap1=0.25
|
||||
dPairViaGap1=0.25
|
||||
SilkLineWidth=0.15
|
||||
SilkTextSizeV=1
|
||||
SilkTextSizeH=1
|
||||
SilkTextSizeThickness=0.15
|
||||
SilkTextItalic=0
|
||||
SilkTextUpright=1
|
||||
CopperLineWidth=0.15
|
||||
CopperTextSizeV=1.5
|
||||
CopperTextSizeH=1.5
|
||||
CopperTextThickness=0.3
|
||||
CopperTextItalic=0
|
||||
CopperTextUpright=1
|
||||
EdgeCutLineWidth=0.15
|
||||
CourtyardLineWidth=0.05
|
||||
OthersLineWidth=0.15
|
||||
OthersTextSizeV=1
|
||||
OthersTextSizeH=1
|
||||
OthersTextSizeThickness=0.15
|
||||
OthersTextItalic=0
|
||||
OthersTextUpright=1
|
||||
SolderMaskClearance=0.2
|
||||
SolderMaskMinWidth=0
|
||||
SolderPasteClearance=0
|
||||
SolderPasteRatio=0
|
||||
[pcbnew/Layer.F.Cu]
|
||||
Name=F.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.In1.Cu]
|
||||
Name=In1.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In2.Cu]
|
||||
Name=In2.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In3.Cu]
|
||||
Name=In3.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In4.Cu]
|
||||
Name=In4.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In5.Cu]
|
||||
Name=In5.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In6.Cu]
|
||||
Name=In6.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In7.Cu]
|
||||
Name=In7.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In8.Cu]
|
||||
Name=In8.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In9.Cu]
|
||||
Name=In9.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In10.Cu]
|
||||
Name=In10.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In11.Cu]
|
||||
Name=In11.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In12.Cu]
|
||||
Name=In12.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In13.Cu]
|
||||
Name=In13.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In14.Cu]
|
||||
Name=In14.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In15.Cu]
|
||||
Name=In15.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In16.Cu]
|
||||
Name=In16.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In17.Cu]
|
||||
Name=In17.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In18.Cu]
|
||||
Name=In18.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In19.Cu]
|
||||
Name=In19.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In20.Cu]
|
||||
Name=In20.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In21.Cu]
|
||||
Name=In21.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In22.Cu]
|
||||
Name=In22.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In23.Cu]
|
||||
Name=In23.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In24.Cu]
|
||||
Name=In24.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In25.Cu]
|
||||
Name=In25.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In26.Cu]
|
||||
Name=In26.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In27.Cu]
|
||||
Name=In27.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In28.Cu]
|
||||
Name=In28.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In29.Cu]
|
||||
Name=In29.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In30.Cu]
|
||||
Name=In30.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.B.Cu]
|
||||
Name=B.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Dwgs.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Cmts.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco1.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco2.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Edge.Cuts]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Margin]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Rescue]
|
||||
Enabled=0
|
||||
[pcbnew/Netclasses]
|
||||
[pcbnew/Netclasses/Default]
|
||||
Name=Default
|
||||
Clearance=0.2
|
||||
TrackWidth=0.25
|
||||
ViaDiameter=0.6
|
||||
ViaDrill=0.4
|
||||
uViaDiameter=0.3
|
||||
uViaDrill=0.1
|
||||
dPairWidth=0.2
|
||||
dPairGap=0.25
|
||||
dPairViaGap=0.25
|
||||
|
|
|
@ -1,78 +1,78 @@
|
|||
|
||||
(rules PCB ferris-sweep-compact
|
||||
(snap_angle
|
||||
fortyfive_degree
|
||||
)
|
||||
(autoroute_settings
|
||||
(fanout off)
|
||||
(autoroute on)
|
||||
(postroute on)
|
||||
(vias on)
|
||||
(via_costs 50)
|
||||
(plane_via_costs 5)
|
||||
(start_ripup_costs 100)
|
||||
(start_pass_no 927)
|
||||
(layer_rule F.Cu
|
||||
(active on)
|
||||
(preferred_direction horizontal)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 2.2)
|
||||
)
|
||||
(layer_rule B.Cu
|
||||
(active on)
|
||||
(preferred_direction vertical)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 1.8)
|
||||
)
|
||||
)
|
||||
(rule
|
||||
(width 250.0)
|
||||
(clear 200.2)
|
||||
(clear 125.0 (type smd_to_turn_gap))
|
||||
(clear 50.0 (type smd_smd))
|
||||
)
|
||||
(padstack "Via[0-1]_600:400_um"
|
||||
(shape
|
||||
(circle F.Cu 600.0 0.0 0.0)
|
||||
)
|
||||
(shape
|
||||
(circle B.Cu 600.0 0.0 0.0)
|
||||
)
|
||||
(attach off)
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_600:400_um" "Via[0-1]_600:400_um" default
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_600:400_um-kicad_default" "Via[0-1]_600:400_um" "kicad_default"
|
||||
)
|
||||
(via_rule
|
||||
default "Via[0-1]_600:400_um"
|
||||
)
|
||||
(via_rule
|
||||
"kicad_default" "Via[0-1]_600:400_um-kicad_default"
|
||||
)
|
||||
(class default
|
||||
(clearance_class default)
|
||||
(via_rule default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
(class "kicad_default"
|
||||
row0 row1 row2 row3 GND VCC col0 col1
|
||||
col2 col3 col4 col5 LED data reset SCL
|
||||
SDA "Net-(U1-Pad24)" "Net-(J1-PadA)" "Net-(U1-Pad14)" "Net-(U1-Pad13)" "Net-(U1-Pad12)" "Net-(U1-Pad11)"
|
||||
(clearance_class "kicad_default")
|
||||
(via_rule kicad_default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
|
||||
(rules PCB ferris-sweep-compact
|
||||
(snap_angle
|
||||
fortyfive_degree
|
||||
)
|
||||
(autoroute_settings
|
||||
(fanout off)
|
||||
(autoroute on)
|
||||
(postroute on)
|
||||
(vias on)
|
||||
(via_costs 50)
|
||||
(plane_via_costs 5)
|
||||
(start_ripup_costs 100)
|
||||
(start_pass_no 927)
|
||||
(layer_rule F.Cu
|
||||
(active on)
|
||||
(preferred_direction horizontal)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 2.2)
|
||||
)
|
||||
(layer_rule B.Cu
|
||||
(active on)
|
||||
(preferred_direction vertical)
|
||||
(preferred_direction_trace_costs 1.0)
|
||||
(against_preferred_direction_trace_costs 1.8)
|
||||
)
|
||||
)
|
||||
(rule
|
||||
(width 250.0)
|
||||
(clear 200.2)
|
||||
(clear 125.0 (type smd_to_turn_gap))
|
||||
(clear 50.0 (type smd_smd))
|
||||
)
|
||||
(padstack "Via[0-1]_600:400_um"
|
||||
(shape
|
||||
(circle F.Cu 600.0 0.0 0.0)
|
||||
)
|
||||
(shape
|
||||
(circle B.Cu 600.0 0.0 0.0)
|
||||
)
|
||||
(attach off)
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_600:400_um" "Via[0-1]_600:400_um" default
|
||||
)
|
||||
(via
|
||||
"Via[0-1]_600:400_um-kicad_default" "Via[0-1]_600:400_um" "kicad_default"
|
||||
)
|
||||
(via_rule
|
||||
default "Via[0-1]_600:400_um"
|
||||
)
|
||||
(via_rule
|
||||
"kicad_default" "Via[0-1]_600:400_um-kicad_default"
|
||||
)
|
||||
(class default
|
||||
(clearance_class default)
|
||||
(via_rule default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
(class "kicad_default"
|
||||
row0 row1 row2 row3 GND VCC col0 col1
|
||||
col2 col3 col4 col5 LED data reset SCL
|
||||
SDA "Net-(U1-Pad24)" "Net-(J1-PadA)" "Net-(U1-Pad14)" "Net-(U1-Pad13)" "Net-(U1-Pad12)" "Net-(U1-Pad11)"
|
||||
(clearance_class "kicad_default")
|
||||
(via_rule kicad_default)
|
||||
(rule
|
||||
(width 250.0)
|
||||
)
|
||||
(circuit
|
||||
(use_layer F.Cu B.Cu)
|
||||
)
|
||||
)
|
||||
)
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,2 +1,2 @@
|
|||
(fp_lib_table
|
||||
)
|
||||
(fp_lib_table
|
||||
)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(sym_lib_table
|
||||
(lib (name corne-light-rescue)(type Legacy)(uri ${KIPRJMOD}/corne-light-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweep-rescue)(type Legacy)(uri ${KIPRJMOD}/sweep-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name corne-light-rescue)(type Legacy)(uri ${KIPRJMOD}/corne-light-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweep-rescue)(type Legacy)(uri ${KIPRJMOD}/sweep-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,3 @@
|
|||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-high-m/front.png) | ![back](/gallery/sweep-high-m/back.png) |
|
||||
| Front | Back |
|
||||
| :---: | :---: |
|
||||
| ![front](/gallery/sweep-high-m/front.png) | ![back](/gallery/sweep-high-m/back.png) |
|
||||
|
|
|
@ -1,115 +1,115 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,40 +1,40 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,33 +1,33 @@
|
|||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,75 +1,75 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 0,
|
||||
"active_layer_preset": "All Layers",
|
||||
"auto_track_width": true,
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.6
|
||||
},
|
||||
"ratsnest_display_mode": 0,
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": true,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36
|
||||
],
|
||||
"visible_layers": "fffffff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high_plate.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"active_layer": 0,
|
||||
"active_layer_preset": "All Layers",
|
||||
"auto_track_width": true,
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.6
|
||||
},
|
||||
"ratsnest_display_mode": 0,
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": true,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36
|
||||
],
|
||||
"visible_layers": "fffffff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high_plate.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,31 +1,31 @@
|
|||
# Sweep HIGH
|
||||
![front](/gallery/sweep-high/front.png)
|
||||
![back](/gallery/sweep-high/back.png)
|
||||
|
||||
Same as the Sweep2 but trades choc spacing for compatibility with more switches and keycaps.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweepv2.1_gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|95.15mm x 229.54mm|
|
||||
|Different design|2|
|
||||
|Delivery format|Panel by customer|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
||||
2: Settings are taken from [Kyek's video guide](https://www.youtube.com/watch?v=fBPu7AyDtkM&t=17s).
|
||||
# Sweep HIGH
|
||||
![front](/gallery/sweep-high/front.png)
|
||||
![back](/gallery/sweep-high/back.png)
|
||||
|
||||
Same as the Sweep2 but trades choc spacing for compatibility with more switches and keycaps.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweepv2.1_gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|95.15mm x 229.54mm|
|
||||
|Different design|2|
|
||||
|Delivery format|Panel by customer|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
||||
2: Settings are taken from [Kyek's video guide](https://www.youtube.com/watch?v=fBPu7AyDtkM&t=17s).
|
||||
|
|
|
@ -1,115 +1,115 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,40 +1,40 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,314 +1,314 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
width="11.231880cm" height="9.519920cm" viewBox="0 0 112318800 95199200">
|
||||
<title>SVG Picture created as sweep-high-plate-Edge_Cuts.svg date 2021/12/17 18:38:48 </title>
|
||||
<desc>Picture generated by PCBNEW </desc>
|
||||
<g style="fill:#000000; fill-opacity:1.000000;stroke:#000000; stroke-opacity:1.000000;
|
||||
stroke-linecap:round; stroke-linejoin:round;"
|
||||
transform="translate(0 0) scale(1 1)">
|
||||
</g>
|
||||
<g style="fill:#000000; fill-opacity:0.0;
|
||||
stroke:#000000; stroke-width:0.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:0.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:50000.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M91816999 69161496
|
||||
L89116999 69161496
|
||||
" />
|
||||
<path d="M89116999 69161496
|
||||
L89116999 64511496
|
||||
" />
|
||||
<path d="M99016999 73411496
|
||||
L112316999 73311496
|
||||
" />
|
||||
<path d="M91816999 69161496
|
||||
L99016999 73411496
|
||||
" />
|
||||
<path d="M46434999.000000 29496.000000 A68730000.000000 68730000.000000 0.0 0 0 1461609.979334 16786356.976117" />
|
||||
<path d="M50410123 27057
|
||||
L46434999 29496
|
||||
" />
|
||||
<path d="M32858 18798816
|
||||
L25000 73104495
|
||||
" />
|
||||
<path d="M95029999.000000 10034496.000000 A750000.000000 750000.000000 0.0 0 0 94595243.862434 9353966.296968" />
|
||||
<path d="M25000.590345 73104494.979338 A2001223.000000 2001223.000000 0.0 0 0 2060000.997880 75035412.878802" />
|
||||
<path d="M72365170.062013 83943825.759194 A281933568.000000 281933568.000000 0.0 0 0 2334998.999960 75036067.039881" />
|
||||
<path d="M2334999 75036067
|
||||
L2060001 75035413
|
||||
" />
|
||||
<path d="M94595243.898955 9353966.264035 A144026593.000000 144026593.000000 0.0 0 0 50410225.979572 25000.402939" />
|
||||
<path d="M1459998.980738 16784495.974436 A4063010.000000 4063010.000000 0.0 0 0 32857.874062 18798815.959973" />
|
||||
<path d="M95066999 64511496
|
||||
L95029999 10034496
|
||||
" />
|
||||
<path d="M97544998.792767 94859496.319564 A1966571.000000 1966571.000000 0.0 0 0 100276998.870607 94260760.918155" />
|
||||
<path d="M97544998.764934 94859496.368771 A86937040.000000 86937040.000000 0.0 0 0 72364705.933756 83945633.258905" />
|
||||
<path d="M95066999 64511496
|
||||
L89116999 64511496
|
||||
" />
|
||||
<path d="M112316999 73311496
|
||||
L100276999 94260761
|
||||
" />
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:150000.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M70889252 66276282
|
||||
L84412213 69899749
|
||||
" />
|
||||
<path d="M67265785 79799243
|
||||
L80788746 83422710
|
||||
" />
|
||||
<path d="M67265785 79799243
|
||||
L70889252 66276282
|
||||
" />
|
||||
<path d="M80788746 83422710
|
||||
L84412213 69899749
|
||||
" />
|
||||
<path d="M92954821 73503318
|
||||
L105079177 80503318
|
||||
" />
|
||||
<path d="M85954821 85627674
|
||||
L98079177 92627674
|
||||
" />
|
||||
<path d="M85954821 85627674
|
||||
L92954821 73503318
|
||||
" />
|
||||
<path d="M98079177 92627674
|
||||
L105079177 80503318
|
||||
" />
|
||||
<path d="M59566999 45029496
|
||||
L73566999 45029496
|
||||
" />
|
||||
<path d="M59566999 59029496
|
||||
L73566999 59029496
|
||||
" />
|
||||
<path d="M59566999 59029496
|
||||
L59566999 45029496
|
||||
" />
|
||||
<path d="M73566999 59029496
|
||||
L73566999 45029496
|
||||
" />
|
||||
<path d="M40566999 40457496
|
||||
L54566999 40457496
|
||||
" />
|
||||
<path d="M40566999 54457496
|
||||
L54566999 54457496
|
||||
" />
|
||||
<path d="M40566999 54457496
|
||||
L40566999 40457496
|
||||
" />
|
||||
<path d="M54566999 54457496
|
||||
L54566999 40457496
|
||||
" />
|
||||
<path d="M21574999 46685496
|
||||
L35574999 46685496
|
||||
" />
|
||||
<path d="M21574999 60685496
|
||||
L35574999 60685496
|
||||
" />
|
||||
<path d="M21574999 60685496
|
||||
L21574999 46685496
|
||||
" />
|
||||
<path d="M35574999 60685496
|
||||
L35574999 46685496
|
||||
" />
|
||||
<path d="M2566999 58561496
|
||||
L16566999 58561496
|
||||
" />
|
||||
<path d="M2566999 72561496
|
||||
L16566999 72561496
|
||||
" />
|
||||
<path d="M2566999 72561496
|
||||
L2566999 58561496
|
||||
" />
|
||||
<path d="M16566999 72561496
|
||||
L16566999 58561496
|
||||
" />
|
||||
<path d="M78546999 28551496
|
||||
L92546999 28551496
|
||||
" />
|
||||
<path d="M78546999 42551496
|
||||
L92546999 42551496
|
||||
" />
|
||||
<path d="M78546999 42551496
|
||||
L78546999 28551496
|
||||
" />
|
||||
<path d="M92546999 42551496
|
||||
L92546999 28551496
|
||||
" />
|
||||
<path d="M59566999 26011496
|
||||
L73566999 26011496
|
||||
" />
|
||||
<path d="M59566999 40011496
|
||||
L73566999 40011496
|
||||
" />
|
||||
<path d="M59566999 40011496
|
||||
L59566999 26011496
|
||||
" />
|
||||
<path d="M73566999 40011496
|
||||
L73566999 26011496
|
||||
" />
|
||||
<path d="M40566999 21439496
|
||||
L54566999 21439496
|
||||
" />
|
||||
<path d="M40566999 35439496
|
||||
L54566999 35439496
|
||||
" />
|
||||
<path d="M40566999 35439496
|
||||
L40566999 21439496
|
||||
" />
|
||||
<path d="M54566999 35439496
|
||||
L54566999 21439496
|
||||
" />
|
||||
<path d="M21566999 27635496
|
||||
L35566999 27635496
|
||||
" />
|
||||
<path d="M21566999 41635496
|
||||
L35566999 41635496
|
||||
" />
|
||||
<path d="M21566999 41635496
|
||||
L21566999 27635496
|
||||
" />
|
||||
<path d="M35566999 41635496
|
||||
L35566999 27635496
|
||||
" />
|
||||
<path d="M2566999 39561496
|
||||
L16566999 39561496
|
||||
" />
|
||||
<path d="M2566999 53561496
|
||||
L16566999 53561496
|
||||
" />
|
||||
<path d="M2566999 53561496
|
||||
L2566999 39561496
|
||||
" />
|
||||
<path d="M16566999 53561496
|
||||
L16566999 39561496
|
||||
" />
|
||||
<path d="M78566999 9561496
|
||||
L92566999 9561496
|
||||
" />
|
||||
<path d="M78566999 23561496
|
||||
L92566999 23561496
|
||||
" />
|
||||
<path d="M78566999 23561496
|
||||
L78566999 9561496
|
||||
" />
|
||||
<path d="M92566999 23561496
|
||||
L92566999 9561496
|
||||
" />
|
||||
<path d="M59560999 6993496
|
||||
L73560999 6993496
|
||||
" />
|
||||
<path d="M59560999 20993496
|
||||
L73560999 20993496
|
||||
" />
|
||||
<path d="M59560999 20993496
|
||||
L59560999 6993496
|
||||
" />
|
||||
<path d="M73560999 20993496
|
||||
L73560999 6993496
|
||||
" />
|
||||
<path d="M40566999 2421496
|
||||
L54566999 2421496
|
||||
" />
|
||||
<path d="M40566999 16421496
|
||||
L54566999 16421496
|
||||
" />
|
||||
<path d="M40566999 16421496
|
||||
L40566999 2421496
|
||||
" />
|
||||
<path d="M54566999 16421496
|
||||
L54566999 2421496
|
||||
" />
|
||||
<path d="M21566999 8561496
|
||||
L35566999 8561496
|
||||
" />
|
||||
<path d="M21566999 22561496
|
||||
L35566999 22561496
|
||||
" />
|
||||
<path d="M21566999 22561496
|
||||
L21566999 8561496
|
||||
" />
|
||||
<path d="M35566999 22561496
|
||||
L35566999 8561496
|
||||
" />
|
||||
<path d="M2566999 20561496
|
||||
L16566999 20561496
|
||||
" />
|
||||
<path d="M2566999 34561496
|
||||
L16566999 34561496
|
||||
" />
|
||||
<path d="M2566999 34561496
|
||||
L2566999 20561496
|
||||
" />
|
||||
<path d="M16566999 34561496
|
||||
L16566999 20561496
|
||||
" />
|
||||
<path d="M78546999 47569496
|
||||
L92546999 47569496
|
||||
" />
|
||||
<path d="M78546999 61569496
|
||||
L92546999 61569496
|
||||
" />
|
||||
<path d="M78546999 61569496
|
||||
L78546999 47569496
|
||||
" />
|
||||
<path d="M92546999 61569496
|
||||
L92546999 47569496
|
||||
" />
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
width="11.231880cm" height="9.519920cm" viewBox="0 0 112318800 95199200">
|
||||
<title>SVG Picture created as sweep-high-plate-Edge_Cuts.svg date 2021/12/17 18:38:48 </title>
|
||||
<desc>Picture generated by PCBNEW </desc>
|
||||
<g style="fill:#000000; fill-opacity:1.000000;stroke:#000000; stroke-opacity:1.000000;
|
||||
stroke-linecap:round; stroke-linejoin:round;"
|
||||
transform="translate(0 0) scale(1 1)">
|
||||
</g>
|
||||
<g style="fill:#000000; fill-opacity:0.0;
|
||||
stroke:#000000; stroke-width:0.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:0.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:50000.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M91816999 69161496
|
||||
L89116999 69161496
|
||||
" />
|
||||
<path d="M89116999 69161496
|
||||
L89116999 64511496
|
||||
" />
|
||||
<path d="M99016999 73411496
|
||||
L112316999 73311496
|
||||
" />
|
||||
<path d="M91816999 69161496
|
||||
L99016999 73411496
|
||||
" />
|
||||
<path d="M46434999.000000 29496.000000 A68730000.000000 68730000.000000 0.0 0 0 1461609.979334 16786356.976117" />
|
||||
<path d="M50410123 27057
|
||||
L46434999 29496
|
||||
" />
|
||||
<path d="M32858 18798816
|
||||
L25000 73104495
|
||||
" />
|
||||
<path d="M95029999.000000 10034496.000000 A750000.000000 750000.000000 0.0 0 0 94595243.862434 9353966.296968" />
|
||||
<path d="M25000.590345 73104494.979338 A2001223.000000 2001223.000000 0.0 0 0 2060000.997880 75035412.878802" />
|
||||
<path d="M72365170.062013 83943825.759194 A281933568.000000 281933568.000000 0.0 0 0 2334998.999960 75036067.039881" />
|
||||
<path d="M2334999 75036067
|
||||
L2060001 75035413
|
||||
" />
|
||||
<path d="M94595243.898955 9353966.264035 A144026593.000000 144026593.000000 0.0 0 0 50410225.979572 25000.402939" />
|
||||
<path d="M1459998.980738 16784495.974436 A4063010.000000 4063010.000000 0.0 0 0 32857.874062 18798815.959973" />
|
||||
<path d="M95066999 64511496
|
||||
L95029999 10034496
|
||||
" />
|
||||
<path d="M97544998.792767 94859496.319564 A1966571.000000 1966571.000000 0.0 0 0 100276998.870607 94260760.918155" />
|
||||
<path d="M97544998.764934 94859496.368771 A86937040.000000 86937040.000000 0.0 0 0 72364705.933756 83945633.258905" />
|
||||
<path d="M95066999 64511496
|
||||
L89116999 64511496
|
||||
" />
|
||||
<path d="M112316999 73311496
|
||||
L100276999 94260761
|
||||
" />
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:150000.000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M70889252 66276282
|
||||
L84412213 69899749
|
||||
" />
|
||||
<path d="M67265785 79799243
|
||||
L80788746 83422710
|
||||
" />
|
||||
<path d="M67265785 79799243
|
||||
L70889252 66276282
|
||||
" />
|
||||
<path d="M80788746 83422710
|
||||
L84412213 69899749
|
||||
" />
|
||||
<path d="M92954821 73503318
|
||||
L105079177 80503318
|
||||
" />
|
||||
<path d="M85954821 85627674
|
||||
L98079177 92627674
|
||||
" />
|
||||
<path d="M85954821 85627674
|
||||
L92954821 73503318
|
||||
" />
|
||||
<path d="M98079177 92627674
|
||||
L105079177 80503318
|
||||
" />
|
||||
<path d="M59566999 45029496
|
||||
L73566999 45029496
|
||||
" />
|
||||
<path d="M59566999 59029496
|
||||
L73566999 59029496
|
||||
" />
|
||||
<path d="M59566999 59029496
|
||||
L59566999 45029496
|
||||
" />
|
||||
<path d="M73566999 59029496
|
||||
L73566999 45029496
|
||||
" />
|
||||
<path d="M40566999 40457496
|
||||
L54566999 40457496
|
||||
" />
|
||||
<path d="M40566999 54457496
|
||||
L54566999 54457496
|
||||
" />
|
||||
<path d="M40566999 54457496
|
||||
L40566999 40457496
|
||||
" />
|
||||
<path d="M54566999 54457496
|
||||
L54566999 40457496
|
||||
" />
|
||||
<path d="M21574999 46685496
|
||||
L35574999 46685496
|
||||
" />
|
||||
<path d="M21574999 60685496
|
||||
L35574999 60685496
|
||||
" />
|
||||
<path d="M21574999 60685496
|
||||
L21574999 46685496
|
||||
" />
|
||||
<path d="M35574999 60685496
|
||||
L35574999 46685496
|
||||
" />
|
||||
<path d="M2566999 58561496
|
||||
L16566999 58561496
|
||||
" />
|
||||
<path d="M2566999 72561496
|
||||
L16566999 72561496
|
||||
" />
|
||||
<path d="M2566999 72561496
|
||||
L2566999 58561496
|
||||
" />
|
||||
<path d="M16566999 72561496
|
||||
L16566999 58561496
|
||||
" />
|
||||
<path d="M78546999 28551496
|
||||
L92546999 28551496
|
||||
" />
|
||||
<path d="M78546999 42551496
|
||||
L92546999 42551496
|
||||
" />
|
||||
<path d="M78546999 42551496
|
||||
L78546999 28551496
|
||||
" />
|
||||
<path d="M92546999 42551496
|
||||
L92546999 28551496
|
||||
" />
|
||||
<path d="M59566999 26011496
|
||||
L73566999 26011496
|
||||
" />
|
||||
<path d="M59566999 40011496
|
||||
L73566999 40011496
|
||||
" />
|
||||
<path d="M59566999 40011496
|
||||
L59566999 26011496
|
||||
" />
|
||||
<path d="M73566999 40011496
|
||||
L73566999 26011496
|
||||
" />
|
||||
<path d="M40566999 21439496
|
||||
L54566999 21439496
|
||||
" />
|
||||
<path d="M40566999 35439496
|
||||
L54566999 35439496
|
||||
" />
|
||||
<path d="M40566999 35439496
|
||||
L40566999 21439496
|
||||
" />
|
||||
<path d="M54566999 35439496
|
||||
L54566999 21439496
|
||||
" />
|
||||
<path d="M21566999 27635496
|
||||
L35566999 27635496
|
||||
" />
|
||||
<path d="M21566999 41635496
|
||||
L35566999 41635496
|
||||
" />
|
||||
<path d="M21566999 41635496
|
||||
L21566999 27635496
|
||||
" />
|
||||
<path d="M35566999 41635496
|
||||
L35566999 27635496
|
||||
" />
|
||||
<path d="M2566999 39561496
|
||||
L16566999 39561496
|
||||
" />
|
||||
<path d="M2566999 53561496
|
||||
L16566999 53561496
|
||||
" />
|
||||
<path d="M2566999 53561496
|
||||
L2566999 39561496
|
||||
" />
|
||||
<path d="M16566999 53561496
|
||||
L16566999 39561496
|
||||
" />
|
||||
<path d="M78566999 9561496
|
||||
L92566999 9561496
|
||||
" />
|
||||
<path d="M78566999 23561496
|
||||
L92566999 23561496
|
||||
" />
|
||||
<path d="M78566999 23561496
|
||||
L78566999 9561496
|
||||
" />
|
||||
<path d="M92566999 23561496
|
||||
L92566999 9561496
|
||||
" />
|
||||
<path d="M59560999 6993496
|
||||
L73560999 6993496
|
||||
" />
|
||||
<path d="M59560999 20993496
|
||||
L73560999 20993496
|
||||
" />
|
||||
<path d="M59560999 20993496
|
||||
L59560999 6993496
|
||||
" />
|
||||
<path d="M73560999 20993496
|
||||
L73560999 6993496
|
||||
" />
|
||||
<path d="M40566999 2421496
|
||||
L54566999 2421496
|
||||
" />
|
||||
<path d="M40566999 16421496
|
||||
L54566999 16421496
|
||||
" />
|
||||
<path d="M40566999 16421496
|
||||
L40566999 2421496
|
||||
" />
|
||||
<path d="M54566999 16421496
|
||||
L54566999 2421496
|
||||
" />
|
||||
<path d="M21566999 8561496
|
||||
L35566999 8561496
|
||||
" />
|
||||
<path d="M21566999 22561496
|
||||
L35566999 22561496
|
||||
" />
|
||||
<path d="M21566999 22561496
|
||||
L21566999 8561496
|
||||
" />
|
||||
<path d="M35566999 22561496
|
||||
L35566999 8561496
|
||||
" />
|
||||
<path d="M2566999 20561496
|
||||
L16566999 20561496
|
||||
" />
|
||||
<path d="M2566999 34561496
|
||||
L16566999 34561496
|
||||
" />
|
||||
<path d="M2566999 34561496
|
||||
L2566999 20561496
|
||||
" />
|
||||
<path d="M16566999 34561496
|
||||
L16566999 20561496
|
||||
" />
|
||||
<path d="M78546999 47569496
|
||||
L92546999 47569496
|
||||
" />
|
||||
<path d="M78546999 61569496
|
||||
L92546999 61569496
|
||||
" />
|
||||
<path d="M78546999 61569496
|
||||
L78546999 47569496
|
||||
" />
|
||||
<path d="M92546999 61569496
|
||||
L92546999 47569496
|
||||
" />
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.6 KiB |
File diff suppressed because it is too large
Load diff
|
@ -1,193 +1,193 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.0,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.0,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
|
|
|
@ -1,33 +1,33 @@
|
|||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,74 +1,74 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 0,
|
||||
"active_layer_preset": "",
|
||||
"auto_track_width": true,
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.6
|
||||
},
|
||||
"ratsnest_display_mode": 0,
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": true,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36
|
||||
],
|
||||
"visible_layers": "003ffff_80000001",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high_plate.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"active_layer": 0,
|
||||
"active_layer_preset": "",
|
||||
"auto_track_width": true,
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.6
|
||||
},
|
||||
"ratsnest_display_mode": 0,
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": true,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36
|
||||
],
|
||||
"visible_layers": "003ffff_80000001",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high_plate.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,180 +1,180 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high_plate.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweep-high_plate.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"drawing": {
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": []
|
||||
},
|
||||
"sheets": [],
|
||||
"text_variables": {}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
|||
# Sweep Half Swept
|
||||
|
||||
| Front | Back |
|
||||
| --- | --- |
|
||||
| ![](/gallery/sweep-half-swept/front.png) | ![](/gallery/sweep-half-swept/back.png) |
|
||||
|
||||
Half of a Sweep2 with a reversible micro-controller footprint.
|
||||
# Sweep Half Swept
|
||||
|
||||
| Front | Back |
|
||||
| --- | --- |
|
||||
| ![](/gallery/sweep-half-swept/front.png) | ![](/gallery/sweep-half-swept/back.png) |
|
||||
|
||||
Half of a Sweep2 with a reversible micro-controller footprint.
|
||||
|
|
|
@ -1,115 +1,115 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,40 +1,40 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,33 +1,33 @@
|
|||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,4 @@
|
|||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,31 +1,31 @@
|
|||
# Sweep2
|
||||
![](/gallery/sweepv2/front.png)
|
||||
![](/gallery/sweepv2/back.png)
|
||||
|
||||
This is the main Choc v1 board we all know and love.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweepv2.X_gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|216.9mm x 86.9mm|
|
||||
|Different design|2|
|
||||
|Delivery format|Panel by customer|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
||||
2: Settings are taken from [Kyek's video guide](https://www.youtube.com/watch?v=fBPu7AyDtkM&t=17s).
|
||||
# Sweep2
|
||||
![](/gallery/sweepv2/front.png)
|
||||
![](/gallery/sweepv2/back.png)
|
||||
|
||||
This is the main Choc v1 board we all know and love.
|
||||
|
||||
## Ordering The PCB
|
||||
|
||||
To order the PCB the following settings are recommended<sup>1,2</sup>:
|
||||
|
||||
|Detail|Value|
|
||||
|---|---|
|
||||
|Gerber file|`sweepv2.X_gerber.zip`|
|
||||
|Base material|FR-4|
|
||||
|Layers|2|
|
||||
|Dimension|216.9mm x 86.9mm|
|
||||
|Different design|2|
|
||||
|Delivery format|Panel by customer|
|
||||
|PCB thickness|1.6mm|
|
||||
|PCB color|(Personal preference)|
|
||||
|Silkscreen|(Personal preference)|
|
||||
|Surface finish|(Personal preference)|
|
||||
|Outer copper weight|1oz|
|
||||
|Gold Fingers|No|
|
||||
|Confirm production file|No|
|
||||
|Castellated holes|No|
|
||||
|Remove order number|Yes|
|
||||
|
||||
1: Settings are for [JLCPCB](https://jlcpcb.com/), but could work for other manufacturers.
|
||||
|
||||
2: Settings are taken from [Kyek's video guide](https://www.youtube.com/watch?v=fBPu7AyDtkM&t=17s).
|
||||
|
|
|
@ -1,115 +1,115 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Mechanical_MountingHole_Pad
|
||||
#
|
||||
DEF Mechanical_MountingHole_Pad H 0 40 N N 1 F N
|
||||
F0 "H" 0 250 50 H V C CNN
|
||||
F1 "Mechanical_MountingHole_Pad" 0 175 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
MountingHole*Pad*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
C 0 50 50 0 1 50 N
|
||||
X 1 1 0 -100 100 U 50 50 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_Push
|
||||
#
|
||||
DEF Switch_SW_Push SW 0 40 N N 1 F N
|
||||
F0 "SW" 50 100 50 H V L CNN
|
||||
F1 "Switch_SW_Push" 0 -60 50 H V C CNN
|
||||
F2 "" 0 200 50 H I C CNN
|
||||
F3 "" 0 200 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 1 0 N
|
||||
C 80 0 20 0 1 0 N
|
||||
P 2 0 1 0 0 50 0 120 N
|
||||
P 2 0 1 0 100 50 -100 50 N
|
||||
X 1 1 -200 0 100 R 50 50 0 1 P
|
||||
X 2 2 200 0 100 L 50 50 0 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Switch_SW_SPDT
|
||||
#
|
||||
DEF Switch_SW_SPDT SW 0 0 Y N 1 F N
|
||||
F0 "SW" 0 170 50 H V C CNN
|
||||
F1 "Switch_SW_SPDT" 0 -200 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C -80 0 20 0 0 0 N
|
||||
C 80 -100 20 0 0 0 N
|
||||
C 80 100 20 0 1 0 N
|
||||
P 2 0 1 0 -60 10 65 90 N
|
||||
X A 1 200 100 100 L 50 50 1 1 P
|
||||
X B 2 -200 0 100 R 50 50 1 1 P
|
||||
X C 3 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "sweepv2-rescue_ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# tokas_bp_AudioJack4dpb
|
||||
#
|
||||
DEF tokas_bp_AudioJack4dpb J 0 20 Y Y 1 F N
|
||||
F0 "J" 0 350 50 H V C CNN
|
||||
F1 "tokas_bp_AudioJack4dpb" 0 250 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Jack*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -250 -200 -300 -300 0 1 10 F
|
||||
S 100 150 -250 -300 0 1 10 f
|
||||
P 4 0 1 10 0 -200 25 -225 50 -200 100 -200 N
|
||||
P 5 0 1 10 -225 -200 -200 -225 -175 -200 -175 100 100 100 N
|
||||
P 5 0 1 10 -75 -200 -50 -225 -25 -200 -25 -100 100 -100 N
|
||||
P 5 0 1 10 100 0 -100 0 -100 -200 -125 -225 -150 -200 N
|
||||
X ~ A 200 -200 100 L 50 50 1 1 P
|
||||
X ~ B 200 100 100 L 50 50 1 1 P
|
||||
X ~ C 200 0 100 L 50 50 1 1 P
|
||||
X ~ D 200 -100 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,40 +1,40 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# ProMicro-kbd-bigblackpill-34key-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-bigblackpill-34key-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-bigblackpill-34key-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
179484
Sweepv2.2/sweepv2.kicad_pcb
179484
Sweepv2.2/sweepv2.kicad_pcb
File diff suppressed because it is too large
Load diff
|
@ -1,419 +1,419 @@
|
|||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweepv2.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"4e66a44f-7fa6-4e16-bf9b-62ec864301a5",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.0,
|
||||
"height": 1.25,
|
||||
"width": 0.9
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [],
|
||||
"via_dimensions": [],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "sweepv2.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.25,
|
||||
"pin_symbol_size": 0.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"4e66a44f-7fa6-4e16-bf9b-62ec864301a5",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,307 +1,307 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
width="10.505440cm" height="8.689340cm" viewBox="0 0 41360 34210">
|
||||
<title>SVG Picture created as sweepv2_plate-Edge_Cuts.svg date 2021/07/26 10:33:26 </title>
|
||||
<desc>Picture generated by PCBNEW </desc>
|
||||
<g style="fill:#000000; fill-opacity:1;stroke:#000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;"
|
||||
transform="translate(0 0) scale(1 1)">
|
||||
</g>
|
||||
<g style="fill:#000000; fill-opacity:0.0;
|
||||
stroke:#000000; stroke-width:-0.000393701; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:-0.000393701; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:19.685; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M41351 26844
|
||||
L36351 26844
|
||||
" />
|
||||
<path d="M36351 26844
|
||||
L36351 24144
|
||||
" />
|
||||
<path d="M35251 24144
|
||||
L36351 24144
|
||||
" />
|
||||
<path d="M35251 23344
|
||||
L35251 24144
|
||||
" />
|
||||
<path d="M35251 23344
|
||||
L34851 23344
|
||||
" />
|
||||
<path d="M19931 9
|
||||
L18277 11
|
||||
" />
|
||||
<path d="M41351 26844
|
||||
L37403 33847
|
||||
" />
|
||||
<path d="M18277.7 11.9925 A27059.1 27059.1 0.0 0 0 571.632 6609.18" />
|
||||
<path d="M34851 23344
|
||||
L34864 3528
|
||||
" />
|
||||
<path d="M25.6691 26799 A780.87 780.87 0.0 0 0 827.931 27521.8" />
|
||||
<path d="M27852 30467 A127542 127542 0.0 0 0 827.932 27521.8" />
|
||||
<path d="M36327.9 34083.6 A774.241 774.241 0.0 0 0 37403.5 33847.9" />
|
||||
<path d="M34693.8 3260.32 A56703.2 56703.2 0.0 0 0 19931.8 9.84282" />
|
||||
<path d="M571.632 6609.18 A1599.61 1599.61 0.0 0 0 9.84309 7401.98" />
|
||||
<path d="M36327.9 34083.6 A33972.1 33972.1 0.0 0 0 27852 30467" />
|
||||
<path d="M34865 3528.24 A295.276 295.276 0.0 0 0 34693.8 3260.32" />
|
||||
<path d="M9 7401
|
||||
L25 26798
|
||||
" />
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:59.0551; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M7643 16888
|
||||
L13155 16888
|
||||
" />
|
||||
<path d="M7643 22400
|
||||
L13155 22400
|
||||
" />
|
||||
<path d="M7643 22400
|
||||
L7643 16888
|
||||
" />
|
||||
<path d="M13155 22400
|
||||
L13155 16888
|
||||
" />
|
||||
<path d="M7643 10188
|
||||
L13155 10188
|
||||
" />
|
||||
<path d="M7643 15700
|
||||
L13155 15700
|
||||
" />
|
||||
<path d="M7643 15700
|
||||
L7643 10188
|
||||
" />
|
||||
<path d="M13155 15700
|
||||
L13155 10188
|
||||
" />
|
||||
<path d="M557 14922
|
||||
L6068 14922
|
||||
" />
|
||||
<path d="M557 20434
|
||||
L6068 20434
|
||||
" />
|
||||
<path d="M557 20434
|
||||
L557 14922
|
||||
" />
|
||||
<path d="M6068 20434
|
||||
L6068 14922
|
||||
" />
|
||||
<path d="M7643 3505
|
||||
L13155 3505
|
||||
" />
|
||||
<path d="M7643 9017
|
||||
L13155 9017
|
||||
" />
|
||||
<path d="M7643 9017
|
||||
L7643 3505
|
||||
" />
|
||||
<path d="M13155 9017
|
||||
L13155 3505
|
||||
" />
|
||||
<path d="M557 8230
|
||||
L6068 8230
|
||||
" />
|
||||
<path d="M557 13741
|
||||
L6068 13741
|
||||
" />
|
||||
<path d="M557 13741
|
||||
L557 8230
|
||||
" />
|
||||
<path d="M6068 13741
|
||||
L6068 8230
|
||||
" />
|
||||
<path d="M557 21615
|
||||
L6068 21615
|
||||
" />
|
||||
<path d="M557 27127
|
||||
L6068 27127
|
||||
" />
|
||||
<path d="M557 27127
|
||||
L557 21615
|
||||
" />
|
||||
<path d="M6068 27127
|
||||
L6068 21615
|
||||
" />
|
||||
<path d="M30446 30384
|
||||
L25122 28958
|
||||
" />
|
||||
<path d="M31873 25060
|
||||
L26549 23634
|
||||
" />
|
||||
<path d="M31873 25060
|
||||
L30446 30384
|
||||
" />
|
||||
<path d="M26549 23634
|
||||
L25122 28958
|
||||
" />
|
||||
<path d="M36813 33923
|
||||
L32040 31167
|
||||
" />
|
||||
<path d="M39569 29150
|
||||
L34796 26394
|
||||
" />
|
||||
<path d="M39569 29150
|
||||
L36813 33923
|
||||
" />
|
||||
<path d="M34796 26394
|
||||
L32040 31167
|
||||
" />
|
||||
<path d="M28895 17288
|
||||
L34407 17288
|
||||
" />
|
||||
<path d="M28895 22800
|
||||
L34407 22800
|
||||
" />
|
||||
<path d="M28895 22800
|
||||
L28895 17288
|
||||
" />
|
||||
<path d="M34407 22800
|
||||
L34407 17288
|
||||
" />
|
||||
<path d="M21816 16288
|
||||
L27328 16288
|
||||
" />
|
||||
<path d="M21816 21800
|
||||
L27328 21800
|
||||
" />
|
||||
<path d="M21816 21800
|
||||
L21816 16288
|
||||
" />
|
||||
<path d="M27328 21800
|
||||
L27328 16288
|
||||
" />
|
||||
<path d="M14730 14188
|
||||
L20242 14188
|
||||
" />
|
||||
<path d="M14730 19700
|
||||
L20242 19700
|
||||
" />
|
||||
<path d="M14730 19700
|
||||
L14730 14188
|
||||
" />
|
||||
<path d="M20242 19700
|
||||
L20242 14188
|
||||
" />
|
||||
<path d="M28895 10588
|
||||
L34407 10588
|
||||
" />
|
||||
<path d="M28895 16100
|
||||
L34407 16100
|
||||
" />
|
||||
<path d="M28895 16100
|
||||
L28895 10588
|
||||
" />
|
||||
<path d="M34407 16100
|
||||
L34407 10588
|
||||
" />
|
||||
<path d="M21816 9588
|
||||
L27328 9588
|
||||
" />
|
||||
<path d="M21816 15100
|
||||
L27328 15100
|
||||
" />
|
||||
<path d="M21816 15100
|
||||
L21816 9588
|
||||
" />
|
||||
<path d="M27328 15100
|
||||
L27328 9588
|
||||
" />
|
||||
<path d="M14730 7488
|
||||
L20242 7488
|
||||
" />
|
||||
<path d="M14730 13000
|
||||
L20242 13000
|
||||
" />
|
||||
<path d="M14730 13000
|
||||
L14730 7488
|
||||
" />
|
||||
<path d="M20242 13000
|
||||
L20242 7488
|
||||
" />
|
||||
<path d="M28903 3899
|
||||
L34415 3899
|
||||
" />
|
||||
<path d="M28903 9411
|
||||
L34415 9411
|
||||
" />
|
||||
<path d="M28903 9411
|
||||
L28903 3899
|
||||
" />
|
||||
<path d="M34415 9411
|
||||
L34415 3899
|
||||
" />
|
||||
<path d="M21816 2915
|
||||
L27328 2915
|
||||
" />
|
||||
<path d="M21816 8426
|
||||
L27328 8426
|
||||
" />
|
||||
<path d="M21816 8426
|
||||
L21816 2915
|
||||
" />
|
||||
<path d="M27328 8426
|
||||
L27328 2915
|
||||
" />
|
||||
<path d="M14730 749
|
||||
L20242 749
|
||||
" />
|
||||
<path d="M14730 6261
|
||||
L20242 6261
|
||||
" />
|
||||
<path d="M14730 6261
|
||||
L14730 749
|
||||
" />
|
||||
<path d="M20242 6261
|
||||
L20242 749
|
||||
" />
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
version="1.1"
|
||||
width="10.505440cm" height="8.689340cm" viewBox="0 0 41360 34210">
|
||||
<title>SVG Picture created as sweepv2_plate-Edge_Cuts.svg date 2021/07/26 10:33:26 </title>
|
||||
<desc>Picture generated by PCBNEW </desc>
|
||||
<g style="fill:#000000; fill-opacity:1;stroke:#000000; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;"
|
||||
transform="translate(0 0) scale(1 1)">
|
||||
</g>
|
||||
<g style="fill:#000000; fill-opacity:0.0;
|
||||
stroke:#000000; stroke-width:-0.000393701; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:-0.000393701; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:19.685; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M41351 26844
|
||||
L36351 26844
|
||||
" />
|
||||
<path d="M36351 26844
|
||||
L36351 24144
|
||||
" />
|
||||
<path d="M35251 24144
|
||||
L36351 24144
|
||||
" />
|
||||
<path d="M35251 23344
|
||||
L35251 24144
|
||||
" />
|
||||
<path d="M35251 23344
|
||||
L34851 23344
|
||||
" />
|
||||
<path d="M19931 9
|
||||
L18277 11
|
||||
" />
|
||||
<path d="M41351 26844
|
||||
L37403 33847
|
||||
" />
|
||||
<path d="M18277.7 11.9925 A27059.1 27059.1 0.0 0 0 571.632 6609.18" />
|
||||
<path d="M34851 23344
|
||||
L34864 3528
|
||||
" />
|
||||
<path d="M25.6691 26799 A780.87 780.87 0.0 0 0 827.931 27521.8" />
|
||||
<path d="M27852 30467 A127542 127542 0.0 0 0 827.932 27521.8" />
|
||||
<path d="M36327.9 34083.6 A774.241 774.241 0.0 0 0 37403.5 33847.9" />
|
||||
<path d="M34693.8 3260.32 A56703.2 56703.2 0.0 0 0 19931.8 9.84282" />
|
||||
<path d="M571.632 6609.18 A1599.61 1599.61 0.0 0 0 9.84309 7401.98" />
|
||||
<path d="M36327.9 34083.6 A33972.1 33972.1 0.0 0 0 27852 30467" />
|
||||
<path d="M34865 3528.24 A295.276 295.276 0.0 0 0 34693.8 3260.32" />
|
||||
<path d="M9 7401
|
||||
L25 26798
|
||||
" />
|
||||
</g>
|
||||
<g style="fill:#C2C200; fill-opacity:0.0;
|
||||
stroke:#C2C200; stroke-width:59.0551; stroke-opacity:1;
|
||||
stroke-linecap:round; stroke-linejoin:round;">
|
||||
<path d="M7643 16888
|
||||
L13155 16888
|
||||
" />
|
||||
<path d="M7643 22400
|
||||
L13155 22400
|
||||
" />
|
||||
<path d="M7643 22400
|
||||
L7643 16888
|
||||
" />
|
||||
<path d="M13155 22400
|
||||
L13155 16888
|
||||
" />
|
||||
<path d="M7643 10188
|
||||
L13155 10188
|
||||
" />
|
||||
<path d="M7643 15700
|
||||
L13155 15700
|
||||
" />
|
||||
<path d="M7643 15700
|
||||
L7643 10188
|
||||
" />
|
||||
<path d="M13155 15700
|
||||
L13155 10188
|
||||
" />
|
||||
<path d="M557 14922
|
||||
L6068 14922
|
||||
" />
|
||||
<path d="M557 20434
|
||||
L6068 20434
|
||||
" />
|
||||
<path d="M557 20434
|
||||
L557 14922
|
||||
" />
|
||||
<path d="M6068 20434
|
||||
L6068 14922
|
||||
" />
|
||||
<path d="M7643 3505
|
||||
L13155 3505
|
||||
" />
|
||||
<path d="M7643 9017
|
||||
L13155 9017
|
||||
" />
|
||||
<path d="M7643 9017
|
||||
L7643 3505
|
||||
" />
|
||||
<path d="M13155 9017
|
||||
L13155 3505
|
||||
" />
|
||||
<path d="M557 8230
|
||||
L6068 8230
|
||||
" />
|
||||
<path d="M557 13741
|
||||
L6068 13741
|
||||
" />
|
||||
<path d="M557 13741
|
||||
L557 8230
|
||||
" />
|
||||
<path d="M6068 13741
|
||||
L6068 8230
|
||||
" />
|
||||
<path d="M557 21615
|
||||
L6068 21615
|
||||
" />
|
||||
<path d="M557 27127
|
||||
L6068 27127
|
||||
" />
|
||||
<path d="M557 27127
|
||||
L557 21615
|
||||
" />
|
||||
<path d="M6068 27127
|
||||
L6068 21615
|
||||
" />
|
||||
<path d="M30446 30384
|
||||
L25122 28958
|
||||
" />
|
||||
<path d="M31873 25060
|
||||
L26549 23634
|
||||
" />
|
||||
<path d="M31873 25060
|
||||
L30446 30384
|
||||
" />
|
||||
<path d="M26549 23634
|
||||
L25122 28958
|
||||
" />
|
||||
<path d="M36813 33923
|
||||
L32040 31167
|
||||
" />
|
||||
<path d="M39569 29150
|
||||
L34796 26394
|
||||
" />
|
||||
<path d="M39569 29150
|
||||
L36813 33923
|
||||
" />
|
||||
<path d="M34796 26394
|
||||
L32040 31167
|
||||
" />
|
||||
<path d="M28895 17288
|
||||
L34407 17288
|
||||
" />
|
||||
<path d="M28895 22800
|
||||
L34407 22800
|
||||
" />
|
||||
<path d="M28895 22800
|
||||
L28895 17288
|
||||
" />
|
||||
<path d="M34407 22800
|
||||
L34407 17288
|
||||
" />
|
||||
<path d="M21816 16288
|
||||
L27328 16288
|
||||
" />
|
||||
<path d="M21816 21800
|
||||
L27328 21800
|
||||
" />
|
||||
<path d="M21816 21800
|
||||
L21816 16288
|
||||
" />
|
||||
<path d="M27328 21800
|
||||
L27328 16288
|
||||
" />
|
||||
<path d="M14730 14188
|
||||
L20242 14188
|
||||
" />
|
||||
<path d="M14730 19700
|
||||
L20242 19700
|
||||
" />
|
||||
<path d="M14730 19700
|
||||
L14730 14188
|
||||
" />
|
||||
<path d="M20242 19700
|
||||
L20242 14188
|
||||
" />
|
||||
<path d="M28895 10588
|
||||
L34407 10588
|
||||
" />
|
||||
<path d="M28895 16100
|
||||
L34407 16100
|
||||
" />
|
||||
<path d="M28895 16100
|
||||
L28895 10588
|
||||
" />
|
||||
<path d="M34407 16100
|
||||
L34407 10588
|
||||
" />
|
||||
<path d="M21816 9588
|
||||
L27328 9588
|
||||
" />
|
||||
<path d="M21816 15100
|
||||
L27328 15100
|
||||
" />
|
||||
<path d="M21816 15100
|
||||
L21816 9588
|
||||
" />
|
||||
<path d="M27328 15100
|
||||
L27328 9588
|
||||
" />
|
||||
<path d="M14730 7488
|
||||
L20242 7488
|
||||
" />
|
||||
<path d="M14730 13000
|
||||
L20242 13000
|
||||
" />
|
||||
<path d="M14730 13000
|
||||
L14730 7488
|
||||
" />
|
||||
<path d="M20242 13000
|
||||
L20242 7488
|
||||
" />
|
||||
<path d="M28903 3899
|
||||
L34415 3899
|
||||
" />
|
||||
<path d="M28903 9411
|
||||
L34415 9411
|
||||
" />
|
||||
<path d="M28903 9411
|
||||
L28903 3899
|
||||
" />
|
||||
<path d="M34415 9411
|
||||
L34415 3899
|
||||
" />
|
||||
<path d="M21816 2915
|
||||
L27328 2915
|
||||
" />
|
||||
<path d="M21816 8426
|
||||
L27328 8426
|
||||
" />
|
||||
<path d="M21816 8426
|
||||
L21816 2915
|
||||
" />
|
||||
<path d="M27328 8426
|
||||
L27328 2915
|
||||
" />
|
||||
<path d="M14730 749
|
||||
L20242 749
|
||||
" />
|
||||
<path d="M14730 6261
|
||||
L20242 6261
|
||||
" />
|
||||
<path d="M14730 6261
|
||||
L14730 749
|
||||
" />
|
||||
<path d="M20242 6261
|
||||
L20242 749
|
||||
" />
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
<g >
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 5.2 KiB |
File diff suppressed because it is too large
Load diff
|
@ -1,33 +1,33 @@
|
|||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
update=22/05/2015 07:44:53
|
||||
version=1
|
||||
last_client=kicad
|
||||
[general]
|
||||
version=1
|
||||
RootSch=
|
||||
BoardNm=
|
||||
[pcbnew]
|
||||
version=1
|
||||
LastNetListRead=
|
||||
UseCmpFile=1
|
||||
PadDrill=0.600000000000
|
||||
PadDrillOvalY=0.600000000000
|
||||
PadSizeH=1.500000000000
|
||||
PadSizeV=1.500000000000
|
||||
PcbTextSizeV=1.500000000000
|
||||
PcbTextSizeH=1.500000000000
|
||||
PcbTextThickness=0.300000000000
|
||||
ModuleTextSizeV=1.000000000000
|
||||
ModuleTextSizeH=1.000000000000
|
||||
ModuleTextSizeThickness=0.150000000000
|
||||
SolderMaskClearance=0.000000000000
|
||||
SolderMaskMinWidth=0.000000000000
|
||||
DrawSegmentWidth=0.200000000000
|
||||
BoardOutlineThickness=0.100000000000
|
||||
ModuleOutlineThickness=0.150000000000
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[eeschema/libraries]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
(sym_lib_table
|
||||
(lib (name 34key-rescue)(type Legacy)(uri ${KIPRJMOD}/34key-rescue.lib)(options "")(descr ""))
|
||||
(lib (name sweepv2-rescue)(type Legacy)(uri ${KIPRJMOD}/sweepv2-rescue.lib)(options "")(descr ""))
|
||||
)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Archive (of Legacy Versions)
|
||||
|
||||
You are viewing the archive section of the Sweep repository.
|
||||
Here you will find all of the older revisions of the Sweep.
|
||||
|
||||
If a version is here, it means that there is another version that is "the same but better" outside of this folder.
|
||||
# Archive (of Legacy Versions)
|
||||
|
||||
You are viewing the archive section of the Sweep repository.
|
||||
Here you will find all of the older revisions of the Sweep.
|
||||
|
||||
If a version is here, it means that there is another version that is "the same but better" outside of this folder.
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
# Sweep Compact BLE
|
||||
![](/gallery/sweep-compact-ble.jpg)
|
||||
|
||||
This is an older revision.
|
||||
The Half Swept version is very similar but offers more features.
|
||||
|
||||
The main difference in this design is the missing TRRS jack footprint.
|
||||
|
||||
## Features
|
||||
|
||||
| Device | Bluetooth Support<sup>[1]</sup> | On/Off Switch | Reversible PCB | Choc V1 | Choc V2 | Choc Mini | MX & Alps | Choc Spacing<sup>[2]</sup> | Tenting<sup>[3]</sup> |
|
||||
| :--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
| Sweep Compact BLE | ✔ | | ✔ | ✔ | | | | ✔ | |
|
||||
# Sweep Compact BLE
|
||||
![](/gallery/sweep-compact-ble.jpg)
|
||||
|
||||
This is an older revision.
|
||||
The Half Swept version is very similar but offers more features.
|
||||
|
||||
The main difference in this design is the missing TRRS jack footprint.
|
||||
|
||||
## Features
|
||||
|
||||
| Device | Bluetooth Support<sup>[1]</sup> | On/Off Switch | Reversible PCB | Choc V1 | Choc V2 | Choc Mini | MX & Alps | Choc Spacing<sup>[2]</sup> | Tenting<sup>[3]</sup> |
|
||||
| :--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
| Sweep Compact BLE | ✔ | | ✔ | ✔ | | | | ✔ | |
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
(fp_lib_table
|
||||
)
|
||||
(fp_lib_table
|
||||
)
|
||||
|
|
|
@ -1,188 +1,188 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Connector_Generic_Conn_01x04
|
||||
#
|
||||
DEF Connector_Generic_Conn_01x04 J 0 40 Y N 1 F N
|
||||
F0 "J" 0 200 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_01x04" 0 -300 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_1x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 150 50 -250 1 1 10 f
|
||||
X Pin_1 1 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_2 2 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
|
||||
X Pin_4 4 -200 -200 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_D
|
||||
#
|
||||
DEF Device_D D 0 40 N N 1 F N
|
||||
F0 "D" 0 100 50 H V C CNN
|
||||
F1 "Device_D" 0 -100 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
TO-???*
|
||||
*_Diode_*
|
||||
*SingleDiode*
|
||||
D_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 8 -50 50 -50 -50 N
|
||||
P 2 0 1 0 50 0 -50 0 N
|
||||
P 4 0 1 8 50 50 50 -50 -50 0 50 50 N
|
||||
X K 1 -150 0 100 R 50 50 1 1 P
|
||||
X A 2 150 0 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_MJ-4PP-9-kbd
|
||||
#
|
||||
DEF corne-light-rescue_MJ-4PP-9-kbd J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "corne-light-rescue_MJ-4PP-9-kbd" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_ProMicro-kbd
|
||||
#
|
||||
DEF corne-light-rescue_ProMicro-kbd U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "corne-light-rescue_ProMicro-kbd" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_SW_PUSH-kbd
|
||||
#
|
||||
DEF corne-light-rescue_SW_PUSH-kbd SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "corne-light-rescue_SW_PUSH-kbd" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GND
|
||||
#
|
||||
DEF power_GND #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GND" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GND 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GNDA
|
||||
#
|
||||
DEF power_GNDA #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GNDA" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GNDA 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_PWR_FLAG
|
||||
#
|
||||
DEF power_PWR_FLAG #FLG 0 0 N N 1 F P
|
||||
F0 "#FLG" 0 75 50 H I C CNN
|
||||
F1 "power_PWR_FLAG" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N
|
||||
X pwr 1 0 0 0 U 50 50 0 0 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VCC
|
||||
#
|
||||
DEF power_VCC #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VCC" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VCC 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VDD
|
||||
#
|
||||
DEF power_VDD #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VDD" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VDD 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# Connector_Generic_Conn_01x04
|
||||
#
|
||||
DEF Connector_Generic_Conn_01x04 J 0 40 Y N 1 F N
|
||||
F0 "J" 0 200 50 H V C CNN
|
||||
F1 "Connector_Generic_Conn_01x04" 0 -300 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
Connector*:*_1x??_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -50 -195 0 -205 1 1 6 N
|
||||
S -50 -95 0 -105 1 1 6 N
|
||||
S -50 5 0 -5 1 1 6 N
|
||||
S -50 105 0 95 1 1 6 N
|
||||
S -50 150 50 -250 1 1 10 f
|
||||
X Pin_1 1 -200 100 150 R 50 50 1 1 P
|
||||
X Pin_2 2 -200 0 150 R 50 50 1 1 P
|
||||
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
|
||||
X Pin_4 4 -200 -200 150 R 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_D
|
||||
#
|
||||
DEF Device_D D 0 40 N N 1 F N
|
||||
F0 "D" 0 100 50 H V C CNN
|
||||
F1 "Device_D" 0 -100 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
TO-???*
|
||||
*_Diode_*
|
||||
*SingleDiode*
|
||||
D_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 8 -50 50 -50 -50 N
|
||||
P 2 0 1 0 50 0 -50 0 N
|
||||
P 4 0 1 8 50 50 50 -50 -50 0 50 50 N
|
||||
X K 1 -150 0 100 R 50 50 1 1 P
|
||||
X A 2 150 0 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_MJ-4PP-9-kbd
|
||||
#
|
||||
DEF corne-light-rescue_MJ-4PP-9-kbd J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "corne-light-rescue_MJ-4PP-9-kbd" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_ProMicro-kbd
|
||||
#
|
||||
DEF corne-light-rescue_ProMicro-kbd U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "corne-light-rescue_ProMicro-kbd" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# corne-light-rescue_SW_PUSH-kbd
|
||||
#
|
||||
DEF corne-light-rescue_SW_PUSH-kbd SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "corne-light-rescue_SW_PUSH-kbd" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GND
|
||||
#
|
||||
DEF power_GND #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GND" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GND 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_GNDA
|
||||
#
|
||||
DEF power_GNDA #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GNDA" 0 -150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||
X GNDA 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_PWR_FLAG
|
||||
#
|
||||
DEF power_PWR_FLAG #FLG 0 0 N N 1 F P
|
||||
F0 "#FLG" 0 75 50 H I C CNN
|
||||
F1 "power_PWR_FLAG" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N
|
||||
X pwr 1 0 0 0 U 50 50 0 0 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VCC
|
||||
#
|
||||
DEF power_VCC #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VCC" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VCC 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# power_VDD
|
||||
#
|
||||
DEF power_VDD #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_VDD" 0 150 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 0 75 25 0 1 0 N
|
||||
P 2 0 1 0 0 0 0 50 N
|
||||
X VDD 1 0 0 0 U 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
EESchema-DOCLIB Version 2.0
|
||||
#
|
||||
#End Doc Library
|
||||
|
|
|
@ -1,76 +1,76 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# MJ-4PP-9-kbd-corne-light-rescue
|
||||
#
|
||||
DEF MJ-4PP-9-kbd-corne-light-rescue J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "MJ-4PP-9-kbd-corne-light-rescue" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# ProMicro-kbd-corne-light-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-corne-light-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-corne-light-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# SW_PUSH-kbd-corne-light-rescue
|
||||
#
|
||||
DEF SW_PUSH-kbd-corne-light-rescue SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "SW_PUSH-kbd-corne-light-rescue" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# MJ-4PP-9-kbd-corne-light-rescue
|
||||
#
|
||||
DEF MJ-4PP-9-kbd-corne-light-rescue J 0 40 Y Y 1 F N
|
||||
F0 "J" 0 150 50 H V C CNN
|
||||
F1 "MJ-4PP-9-kbd-corne-light-rescue" 0 -150 50 H V C CNN
|
||||
F2 "" 275 175 50 H I C CNN
|
||||
F3 "" 275 175 50 H I C CNN
|
||||
DRAW
|
||||
S -75 -75 -125 50 0 1 0 N
|
||||
S 125 100 -150 -100 0 1 12 N
|
||||
P 3 0 1 0 -100 50 -100 75 125 75 N
|
||||
P 4 0 1 0 -50 -75 -25 -50 0 -75 125 -75 N
|
||||
P 4 0 1 0 0 -25 25 0 50 -25 125 -25 N
|
||||
P 4 0 1 0 50 25 75 50 100 25 125 25 N
|
||||
X ~ A 200 75 79 L 28 20 1 1 I
|
||||
X ~ B 200 -75 79 L 28 20 1 1 I
|
||||
X ~ C 200 -25 79 L 28 20 1 1 I
|
||||
X ~ D 200 25 79 L 28 20 1 1 I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# ProMicro-kbd-corne-light-rescue
|
||||
#
|
||||
DEF ProMicro-kbd-corne-light-rescue U 0 40 Y Y 1 F N
|
||||
F0 "U" 0 950 60 H V C CNN
|
||||
F1 "ProMicro-kbd-corne-light-rescue" 0 -550 60 H V C CNN
|
||||
F2 "" 100 -1050 60 H V C CNN
|
||||
F3 "" 100 -1050 60 H V C CNN
|
||||
DRAW
|
||||
S -500 850 500 -450 0 1 0 N
|
||||
X TX 1 -700 750 200 R 50 50 1 1 B
|
||||
X E6 10 -700 -150 200 R 50 50 1 1 B
|
||||
X B4 11 -700 -250 200 R 50 50 1 1 B
|
||||
X B5 12 -700 -350 200 R 50 50 1 1 B
|
||||
X B6 13 700 -350 200 L 50 50 1 1 B
|
||||
X B2 14 700 -250 200 L 50 50 1 1 B
|
||||
X B3 15 700 -150 200 L 50 50 1 1 B
|
||||
X B1 16 700 -50 200 L 50 50 1 1 B
|
||||
X F7 17 700 50 200 L 50 50 1 1 B
|
||||
X F6 18 700 150 200 L 50 50 1 1 B
|
||||
X F5 19 700 250 200 L 50 50 1 1 B
|
||||
X RX 2 -700 650 200 R 50 50 1 1 B
|
||||
X F4 20 700 350 200 L 50 50 1 1 B
|
||||
X VCC 21 700 450 200 L 50 50 1 1 W
|
||||
X RST 22 700 550 200 L 50 50 1 1 I
|
||||
X GND 23 700 650 200 L 50 50 1 1 W
|
||||
X RAW 24 700 750 200 L 50 50 1 1 w
|
||||
X GND 3 -700 550 200 R 50 50 1 1 W
|
||||
X GND 4 -700 450 200 R 50 50 1 1 W
|
||||
X SDA 5 -700 350 200 R 50 50 1 1 B
|
||||
X SCL 6 -700 250 200 R 50 50 1 1 B
|
||||
X D4 7 -700 150 200 R 50 50 1 1 B
|
||||
X C6 8 -700 50 200 R 50 50 1 1 B
|
||||
X D7 9 -700 -50 200 R 50 50 1 1 B
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# SW_PUSH-kbd-corne-light-rescue
|
||||
#
|
||||
DEF SW_PUSH-kbd-corne-light-rescue SW 0 40 N N 1 F N
|
||||
F0 "SW" 150 110 50 H V C CNN
|
||||
F1 "SW_PUSH-kbd-corne-light-rescue" 0 -80 50 H V C CNN
|
||||
F2 "" 0 0 50 H V C CNN
|
||||
F3 "" 0 0 50 H V C CNN
|
||||
DRAW
|
||||
S -170 50 170 60 0 1 0 N
|
||||
P 4 0 1 0 -40 60 -30 90 30 90 40 60 N
|
||||
X 1 1 -300 0 200 R 50 50 0 1 P I
|
||||
X 2 2 300 0 200 L 50 50 0 1 P I
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,236 +1,236 @@
|
|||
update=Wed 22 Jul 2020 14:49:49 BST
|
||||
version=1
|
||||
last_client=kicad
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[general]
|
||||
version=1
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[pcbnew]
|
||||
version=1
|
||||
PageLayoutDescrFile=
|
||||
LastNetListRead=sweep.net
|
||||
CopperLayerCount=2
|
||||
BoardThickness=1.6
|
||||
AllowMicroVias=0
|
||||
AllowBlindVias=0
|
||||
RequireCourtyardDefinitions=0
|
||||
ProhibitOverlappingCourtyards=1
|
||||
MinTrackWidth=0.2
|
||||
MinViaDiameter=0.4
|
||||
MinViaDrill=0.3
|
||||
MinMicroViaDiameter=0.2
|
||||
MinMicroViaDrill=0.09999999999999999
|
||||
MinHoleToHole=0.25
|
||||
TrackWidth1=0.25
|
||||
TrackWidth2=0.5
|
||||
ViaDiameter1=0.6
|
||||
ViaDrill1=0.4
|
||||
dPairWidth1=0.2
|
||||
dPairGap1=0.25
|
||||
dPairViaGap1=0.25
|
||||
SilkLineWidth=0.15
|
||||
SilkTextSizeV=1
|
||||
SilkTextSizeH=1
|
||||
SilkTextSizeThickness=0.15
|
||||
SilkTextItalic=0
|
||||
SilkTextUpright=1
|
||||
CopperLineWidth=0.15
|
||||
CopperTextSizeV=1.5
|
||||
CopperTextSizeH=1.5
|
||||
CopperTextThickness=0.3
|
||||
CopperTextItalic=0
|
||||
CopperTextUpright=1
|
||||
EdgeCutLineWidth=0.15
|
||||
CourtyardLineWidth=0.05
|
||||
OthersLineWidth=0.15
|
||||
OthersTextSizeV=1
|
||||
OthersTextSizeH=1
|
||||
OthersTextSizeThickness=0.15
|
||||
OthersTextItalic=0
|
||||
OthersTextUpright=1
|
||||
SolderMaskClearance=0.2
|
||||
SolderMaskMinWidth=0
|
||||
SolderPasteClearance=0
|
||||
SolderPasteRatio=0
|
||||
[pcbnew/Layer.F.Cu]
|
||||
Name=F.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.In1.Cu]
|
||||
Name=In1.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In2.Cu]
|
||||
Name=In2.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In3.Cu]
|
||||
Name=In3.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In4.Cu]
|
||||
Name=In4.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In5.Cu]
|
||||
Name=In5.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In6.Cu]
|
||||
Name=In6.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In7.Cu]
|
||||
Name=In7.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In8.Cu]
|
||||
Name=In8.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In9.Cu]
|
||||
Name=In9.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In10.Cu]
|
||||
Name=In10.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In11.Cu]
|
||||
Name=In11.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In12.Cu]
|
||||
Name=In12.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In13.Cu]
|
||||
Name=In13.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In14.Cu]
|
||||
Name=In14.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In15.Cu]
|
||||
Name=In15.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In16.Cu]
|
||||
Name=In16.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In17.Cu]
|
||||
Name=In17.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In18.Cu]
|
||||
Name=In18.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In19.Cu]
|
||||
Name=In19.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In20.Cu]
|
||||
Name=In20.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In21.Cu]
|
||||
Name=In21.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In22.Cu]
|
||||
Name=In22.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In23.Cu]
|
||||
Name=In23.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In24.Cu]
|
||||
Name=In24.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In25.Cu]
|
||||
Name=In25.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In26.Cu]
|
||||
Name=In26.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In27.Cu]
|
||||
Name=In27.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In28.Cu]
|
||||
Name=In28.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In29.Cu]
|
||||
Name=In29.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In30.Cu]
|
||||
Name=In30.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.B.Cu]
|
||||
Name=B.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Dwgs.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Cmts.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco1.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco2.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Edge.Cuts]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Margin]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Rescue]
|
||||
Enabled=0
|
||||
[pcbnew/Netclasses]
|
||||
[pcbnew/Netclasses/Default]
|
||||
Name=Default
|
||||
Clearance=0.2
|
||||
TrackWidth=0.25
|
||||
ViaDiameter=0.6
|
||||
ViaDrill=0.4
|
||||
uViaDiameter=0.3
|
||||
uViaDrill=0.1
|
||||
dPairWidth=0.2
|
||||
dPairGap=0.25
|
||||
dPairViaGap=0.25
|
||||
update=Wed 22 Jul 2020 14:49:49 BST
|
||||
version=1
|
||||
last_client=kicad
|
||||
[cvpcb]
|
||||
version=1
|
||||
NetIExt=net
|
||||
[general]
|
||||
version=1
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
[pcbnew]
|
||||
version=1
|
||||
PageLayoutDescrFile=
|
||||
LastNetListRead=sweep.net
|
||||
CopperLayerCount=2
|
||||
BoardThickness=1.6
|
||||
AllowMicroVias=0
|
||||
AllowBlindVias=0
|
||||
RequireCourtyardDefinitions=0
|
||||
ProhibitOverlappingCourtyards=1
|
||||
MinTrackWidth=0.2
|
||||
MinViaDiameter=0.4
|
||||
MinViaDrill=0.3
|
||||
MinMicroViaDiameter=0.2
|
||||
MinMicroViaDrill=0.09999999999999999
|
||||
MinHoleToHole=0.25
|
||||
TrackWidth1=0.25
|
||||
TrackWidth2=0.5
|
||||
ViaDiameter1=0.6
|
||||
ViaDrill1=0.4
|
||||
dPairWidth1=0.2
|
||||
dPairGap1=0.25
|
||||
dPairViaGap1=0.25
|
||||
SilkLineWidth=0.15
|
||||
SilkTextSizeV=1
|
||||
SilkTextSizeH=1
|
||||
SilkTextSizeThickness=0.15
|
||||
SilkTextItalic=0
|
||||
SilkTextUpright=1
|
||||
CopperLineWidth=0.15
|
||||
CopperTextSizeV=1.5
|
||||
CopperTextSizeH=1.5
|
||||
CopperTextThickness=0.3
|
||||
CopperTextItalic=0
|
||||
CopperTextUpright=1
|
||||
EdgeCutLineWidth=0.15
|
||||
CourtyardLineWidth=0.05
|
||||
OthersLineWidth=0.15
|
||||
OthersTextSizeV=1
|
||||
OthersTextSizeH=1
|
||||
OthersTextSizeThickness=0.15
|
||||
OthersTextItalic=0
|
||||
OthersTextUpright=1
|
||||
SolderMaskClearance=0.2
|
||||
SolderMaskMinWidth=0
|
||||
SolderPasteClearance=0
|
||||
SolderPasteRatio=0
|
||||
[pcbnew/Layer.F.Cu]
|
||||
Name=F.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.In1.Cu]
|
||||
Name=In1.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In2.Cu]
|
||||
Name=In2.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In3.Cu]
|
||||
Name=In3.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In4.Cu]
|
||||
Name=In4.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In5.Cu]
|
||||
Name=In5.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In6.Cu]
|
||||
Name=In6.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In7.Cu]
|
||||
Name=In7.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In8.Cu]
|
||||
Name=In8.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In9.Cu]
|
||||
Name=In9.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In10.Cu]
|
||||
Name=In10.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In11.Cu]
|
||||
Name=In11.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In12.Cu]
|
||||
Name=In12.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In13.Cu]
|
||||
Name=In13.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In14.Cu]
|
||||
Name=In14.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In15.Cu]
|
||||
Name=In15.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In16.Cu]
|
||||
Name=In16.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In17.Cu]
|
||||
Name=In17.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In18.Cu]
|
||||
Name=In18.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In19.Cu]
|
||||
Name=In19.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In20.Cu]
|
||||
Name=In20.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In21.Cu]
|
||||
Name=In21.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In22.Cu]
|
||||
Name=In22.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In23.Cu]
|
||||
Name=In23.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In24.Cu]
|
||||
Name=In24.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In25.Cu]
|
||||
Name=In25.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In26.Cu]
|
||||
Name=In26.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In27.Cu]
|
||||
Name=In27.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In28.Cu]
|
||||
Name=In28.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In29.Cu]
|
||||
Name=In29.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.In30.Cu]
|
||||
Name=In30.Cu
|
||||
Type=0
|
||||
Enabled=0
|
||||
[pcbnew/Layer.B.Cu]
|
||||
Name=B.Cu
|
||||
Type=0
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Adhes]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Paste]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.SilkS]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Mask]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Dwgs.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Cmts.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco1.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Eco2.User]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Edge.Cuts]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Margin]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.CrtYd]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.B.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.F.Fab]
|
||||
Enabled=1
|
||||
[pcbnew/Layer.Rescue]
|
||||
Enabled=0
|
||||
[pcbnew/Netclasses]
|
||||
[pcbnew/Netclasses/Default]
|
||||
Name=Default
|
||||
Clearance=0.2
|
||||
TrackWidth=0.25
|
||||
ViaDiameter=0.6
|
||||
ViaDrill=0.4
|
||||
uViaDiameter=0.3
|
||||
uViaDrill=0.1
|
||||
dPairWidth=0.2
|
||||
dPairGap=0.25
|
||||
dPairViaGap=0.25
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue