├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── enclosure ├── INCUR enclosure base.stl ├── I_n_c_u_r eurorack.pdf ├── i_n_c_u_r _ eurorack_panel.step └── i_n_c_u_r _ eurorack_panel.stl ├── hardware ├── bom │ ├── full_bom.csv │ ├── ibom.html │ ├── mouser_bom.csv │ ├── tayda_bom.csv │ ├── tayda_bom_10x.csv │ └── tayda_bom_x10.csv ├── fp-lib-table ├── gerber_latest.zip ├── i_n_c_u_r.csv ├── i_n_c_u_r.kicad_pcb ├── i_n_c_u_r.kicad_prl ├── i_n_c_u_r.kicad_pro ├── i_n_c_u_r.kicad_sch ├── i_n_c_u_r.pro ├── i_n_c_u_r.sch ├── i_n_c_u_r.xml ├── incur_board-rescue.lib ├── incur_pcbV5.zip ├── lib_fp.pretty │ ├── 2x20_Extra_Tall_Header.kicad_mod │ ├── Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles.kicad_mod │ ├── tht_rca_vertical.kicad_mod │ ├── tht_vertical_din5.kicad_mod │ └── tht_vertical_potentiometer.kicad_mod ├── rescue-backup │ ├── incur_board-2021-03-27-12-47-42.pro │ ├── incur_board-2021-03-27-12-47-42.sch │ └── incur_board-cache-2021-03-27-12-47-42.lib ├── schematic.pdf └── sym-lib-table ├── i_n_c_u_r_booklet.odg ├── i_n_c_u_r_booklet.pdf ├── incur_board_3d.png └── panel ├── back_panel ├── back_panel-Edge_Cuts.dxf ├── back_panel-Edge_Cuts.svg ├── back_panel.kicad_pcb ├── back_panel.kicad_prl ├── back_panel.kicad_pro ├── back_panel.kicad_sch └── back_panel.zip ├── default_panel ├── i_n_c_u_r-Edge_Cuts.dxf ├── i_n_c_u_r-Edge_Cuts.svg ├── i_n_c_u_r-F_Silkscreen.dxf ├── i_n_c_u_r-F_Silkscreen.svg ├── i_n_c_u_r.kicad_pcb ├── i_n_c_u_r.kicad_prl ├── i_n_c_u_r.kicad_pro ├── i_n_c_u_r_default_panel_for_v5_mk_ii.zip └── readme.md └── eurorack_panel ├── i_n_c_u_r.kicad_pcb ├── i_n_c_u_r.kicad_prl ├── i_n_c_u_r.kicad_pro └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | **/ibom.html linguist-generated 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.sch-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-save.pro 14 | *-save.kicad_pcb 15 | fp-info-cache 16 | 17 | # Netlist files (exported from Eeschema) 18 | *.net 19 | 20 | # Autorouter files (exported from Pcbnew) 21 | *.dsn 22 | *.ses 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # i_n_c_u_r 2 | 3 | ### a [r_e_c_u_r](https://github.com/cyberboy666/r_e_c_u_r) video sampler extension circuit - adding knobs, cv and serial midi control 4 | 5 | ![image](https://user-images.githubusercontent.com/12017938/151867823-2ffd7ad9-15bf-4f38-b4a9-118ac54efecb.png) 6 | 7 | - this circuit is distributed by __UNDERSCORES__ - _an open video hardware label_ : it is available to purchase - as a pcb, kit or assembled unit - at [underscores.shop](https://underscores.shop/i_n_c_u_r/) 8 | - the schematic for the circuit can be found [here](/hardware/schematic.pdf) 9 | - the pcb gerber files for the lastest version can be found [here](/hardware/gerber_latest.zip) 10 | - interactive BOM is [here](https://htmlpreview.github.io/?https://github.com/cyberboy666/i_n_c_u_r/blob/main/hardware/bom/ibom.html) 11 | - consider [donating](https://opencollective.com/underscores) to the underscores project to help us continue creating for the commons 12 | 13 | ## description 14 | 15 | __NOTE__ : _i_n_c_u_r_ is an extension circuit for my existing raspberry pi project [r_e_c_u_r](https://github.com/cyberboy666/r_e_c_u_r) - it will only be useful to you if you already have build a r_e_c_u_r 16 | 17 | _disclaimer: this is a fun custom project, but dont forget there are other ways to getting serial and cv control over recur parameters. USB midi is supported in recur without any extra circuitry. other [diy](https://aemodular.boards.net/thread/141/simple-cv-midi-converter-arduino) and [commercial](https://www.befaco.org/en/vcmc/) products exist that convert cv to midi, and serial to USB. in my opinion a general solution for cv-to-usb-midi applied to recur is more useful than a specific board that only works with recur_ 18 | 19 | - 4x __knobs__ for physical control over shader parameters 20 | - 4x __cv jacks (0-5v)__ for sequenced control over shader parameters (from older/analog synths eg eurorack) 21 | - __serial midi__ din5 jack for sequenced control over shader parameters (from older midi devices) 22 | - exposes _rpi video output through rca jack_ (rather than the 3.5mm trrs jack on pi ) 23 | - mounting holes and front facing interface parts for easier racking / enclosure building 24 | - interfacing with rpi through gpio leaving all usb jacks free 25 | 26 | ## demo videos 27 | 28 | [![image](https://user-images.githubusercontent.com/12017938/155867434-a2ea9398-58d5-4c8e-8ebe-b9a845a329d8.png)](https://videos.scanlines.xyz/w/534XkPbbdpDNjTziM6pPNG) 29 | 30 | [![image](https://user-images.githubusercontent.com/12017938/151878669-bfd9f65a-8660-4917-8029-e255410f0958.png)](https://youtu.be/ah2HY1fuv8w?t=638) 31 | 32 | # documentation 33 | 34 | this project is fully _open-source hardware_ - all the files required to build it are included in this repo for free. if you have the time and/or skill you can contribute back by collaborating on / testing new designs, improving these docs, making demo videos/other creative content etc. you can also support the project financially by [donating directing](https://opencollective.com/underscores), or purchasing through the [web shop](https://underscores.shop). 35 | 36 | depending on whether you are going fully diy or buying an assembled and tested unit, some of the following guides will be relavent to you. the flow would be: 37 | 38 | ## ordering parts 39 | 40 |
parts sourcing guide (w/ notes on pcb fabracation ) - start here if you are building fully from scatch or have purchased a pcb 41 | 42 | i try to source all the parts i can from either: 43 | - [tayda](https://www.taydaelectronics.com/) ; cheaper for common parts like resistors etc, also good for mechanical parts like switches and buttons 44 | - [mouser](https://www.mouser.de/) ; has lots more options, speciality video ic's, can sometimes cost more (free shipping on orders over 50euros) 45 | - other ; ocationally there will be parts which will need to be sourced elsewhere - usaully either aliexpress, ebay or amazon etc... 46 | 47 | take a look at the [full_bom](/hardware/bom/full_bom.csv) for this project to see where i am sourcing each part from 48 | 49 | ## import into tayda 50 | 51 | - go to the [tayda quick order](https://www.taydaelectronics.com/quick-order/) and in bottom corner choose _add from file_ 52 | - select the file [tayda_bom.csv](./hardware/bom/tayda_bom.csv) in the BOM folder (you will have to download it first or clone this repo) 53 | - after importing select _add to cart_ 54 | - __NOTE:__ the minimum value for resistors is 10, so you may need to modify these values to add to cart (or if they are already modified here you will need to see the full_bom for actual part QTY) 55 | 56 | - OPTIONAL: it is a good idea to add some dip-ic sockets and 2.54pin headers/sockets to your tayda order if you dont have them around already 57 | 58 | ## import into mouser 59 | 60 | - go to [mouser bom tool](https://nz.mouser.com/Bom/) and click _upload spreadsheet_ 61 | - select the file [mouser_bom.csv](./hardware/bom/mouser_bom.csv) in this folder (you will have to download it first or clone this repo), then _upload my spreadsheet_ and _next_ 62 | - ensure that __Mouser Part Number__ is selected in the dropdown above the first row, then _next_, _process_ 63 | - if everything looks correct can now put _add to basket_ 64 | 65 | # ordering pcbs 66 | 67 | you can support this project by buying individual pcbs from the [shop](https://underscores.shop). if you would rather have pcbs fabricated from gerbers directly the file you need is [here](/hardware/gerber_latest.zip) 68 | 69 | - i get my pcbs fabricated from [jlcpcb](https://cart.jlcpcb.com/quote) - 5 is the minumum order per design 70 | - upload the zip file with the `add gerber file` button 71 | - the default settings are mostly fine - set the __PCB Qty__ and __PCB Color__ settings (you can check that the file looks correct with pcb veiwer) 72 | - it may be best to combine orders with other pcbs you want to have fab'd since the shipping can cost more than the items - also orginising group buys is a good way to distribute the extra pcbs /costs 73 | 74 | i often use jlcpcb because they are reliable, cheap and give you an option of colours. remember though that the cheapest Chinese fab houses are not always the most ethical or environmently friendly - if you can afford it consider supporting local companies. 75 | 76 |
77 | 78 | ## assembly guide 79 | 80 |
assembly guide - start here if you have purchased a diy kit 81 | 82 | 83 | ## interactive BOM for build guiding 84 | 85 | follow this link to view the [interactive BOM](https://htmlpreview.github.io/?https://github.com/cyberboy666/i_n_c_u_r/blob/main/hardware/bom/ibom.html) 86 | 87 | ## general solder advices 88 | 89 | - remember to heat pad first (2-3seconds), then add solder, then continue to heat (1-2seconds) 90 | 91 | - Checkout the web-comic [soldering is easy](https://mightyohm.com/files/soldercomic/FullSolderComic_EN.pdf) for more soldering advice 92 | 93 | ## general order of assembly 94 | 95 | - in general while assembling i start placing resistors and capacitors first. placing 5 - 10 components at a time and then flipping the board to solder them and trim the legs etc. 96 | - next i would do diodes, transistors and ic's - taking care that these are placed in the right direction (using a ic socket can be useful) 97 | - finally i place the interface parts - rca jacks, power jack, pots and switches - make sure these have lots of solder on for structural stablity 98 | 99 | ## slightly more specific assembly advice 100 | 101 | start with the lowest to place components : resistors, diodes, ic's 102 | 103 | next i would place the two headers since soldering from the top can be awkward with too many components - __NOTE these need to be placed upside down!__ ,: 104 | 105 | - J8 needs the pins facing up from top of pcb so the screen can go ontop and raspberry pi can go underneath 106 | - J6 also needs to soldered from the top so a jumper from the pi board can be run to bottom of circuit 107 | 108 | finally place the pots and jacks. 109 | 110 | ### rca video-out 111 | 112 | if you want RCA video out from the pi on this pcb a jumper needs to be run from J6 to the composite video out on the raspberry pi board. on pi0 this is a labeled pin, however on pi3 you will need to solder directly to the board. i used a header-cable, cut one side to be soldered. The pin on pi3 is marked as PP24. 113 | 114 | [picture coming soon] 115 | 116 |
117 | 118 | ## operating guide 119 | 120 |
operating guide - start here if you have purchased an assembled unit 121 | 122 | ![image](https://user-images.githubusercontent.com/12017938/152460623-594553bc-bd70-41ab-b25c-0dcfacb6dc7d.png) 123 | 124 | - to enable the analog inputs ( knobs & cv ) go to `user_input` folder in r_e_c_u_r's `_SETTINGS_` tab and toggle `ANALOG_INPUT` 125 | - to enable serial midi input go to `user_input` folder in r_e_c_u_r's `_SETTINGS_` tab and toggle `MIDI_INPUT` to _serial_ 126 | 127 | for more info on operating r_e_c_u_r see this [guide](https://github.com/cyberboy666/r_e_c_u_r/wiki/operate_docs) 128 | 129 |
130 | 131 | ### more info 132 | 133 |
how the circuit works 134 | 135 | 136 | 137 |
138 | 139 |
contributing guide 140 | 141 | if you would like to contribute back to these projects in some way but dont know how the best thing (for now) would be to reach out to me directly ( tim@cyberboy666.com or @cyberboy666 on scanlines forum) - i will be happy to help 142 | 143 |
144 | 145 | ## community contributed enclosure designs: 146 | 147 | - an [eurorack panel design](enclosure/i_n_c_u_r%20_%20eurorack_panel.stl) by [Simon Gorzelnik](https://www.instagram.com/shimon.jpg/) 148 | - a [base enclosure](enclosure/INCUR%20enclosure%20base.stl) by [miles](mailto:milesjohnsonwashere@gmail.com) 149 | 150 | ## credits & more info 151 | 152 | 153 | This circuit is distributed through UNDERSCORES – open video hardware label – visit [underscores.shop](https://underscores.shop) for more info 154 | 155 | The pcb was designed using KICAD 156 | 157 | Everything from gerbers, cad files, panels and documentation is freely available online and distributed under CC-BY-SA / open-source licenses – help us contribute to the commons ! 158 | 159 | Ask any questions or start discussions related to this project on the [scanlines.xyz](https://scanlines.xyz) forum – an online community space dedicated to diy av / electronic media art 160 | 161 | You can contact me directly at tim (at) cyberboy666 (dot) com 162 | Please get in touch if you are interested in hosting a workshop ! 163 | 164 | ![image](https://user-images.githubusercontent.com/12017938/152463166-0fea052b-1eed-4f63-a59d-55c360bfea76.png) 165 | 166 | 167 | Thanks to Signal Culture for giving me the time and space to explore. to Bastien Lavaud for circuit advice, always. To Ben Caldwell for project advice. To everyone who has or will contribute ♥♥♥ 168 | 169 | -------------------------------------------------------------------------------- /enclosure/INCUR enclosure base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/enclosure/INCUR enclosure base.stl -------------------------------------------------------------------------------- /enclosure/I_n_c_u_r eurorack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/enclosure/I_n_c_u_r eurorack.pdf -------------------------------------------------------------------------------- /enclosure/i_n_c_u_r _ eurorack_panel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/enclosure/i_n_c_u_r _ eurorack_panel.stl -------------------------------------------------------------------------------- /hardware/bom/full_bom.csv: -------------------------------------------------------------------------------- 1 | sku,qty,ref,val,vendor 2 | A-1095,8,D1 D2 D3 D4 D5 D6 D7 D8 ,BAT46,tayda 3 | A-157,1,D9 ,1N4148,tayda 4 | A-2563,4,J1 J2 J3 J4 ,mono_jack_3.5mm,tayda 5 | 490-SD-50BV,1,J5 ,din5,mouser 6 | -,1,J6 ,Conn_01x01,- 7 | 490-RCJ-024,1,J7 ,rca,mouser 8 | 485-1979,1,J8 ,2x20_Extra_Tall_Socket_Header,mouser 9 | A-2200,4,R1 R2 R3 R4 ,1K,tayda 10 | A-2246,1,R5 ,220,tayda 11 | A-2248,1,R6 ,100K,tayda 12 | A-2247,1,R7 ,470,tayda 13 | A-5531,4,RV1 RV2 RV3 RV4 ,10k_pot,tayda 14 | A-2470,1,U1 ,MCP3008,tayda 15 | 859-6N138,1,U2 ,6N138,mouser 16 | -------------------------------------------------------------------------------- /hardware/bom/mouser_bom.csv: -------------------------------------------------------------------------------- 1 | sku,qty,ref,val,vendor 2 | 490-SD-50BV,1,J5 ,din5,mouser 3 | 490-RCJ-024,1,J7 ,rca,mouser 4 | 485-1979,1,J8 ,2x20_Extra_Tall_Socket_Header,mouser 5 | 859-6N138,1,U2 ,6N138,mouser 6 | -------------------------------------------------------------------------------- /hardware/bom/tayda_bom.csv: -------------------------------------------------------------------------------- 1 | sku,qty,ref,val,vendor 2 | A-1095,8,D1 D2 D3 D4 D5 D6 D7 D8 ,BAT46,tayda 3 | A-157,1,D9 ,1N4148,tayda 4 | A-2563,4,J1 J2 J3 J4 ,mono_jack_3.5mm,tayda 5 | A-2200,4,R1 R2 R3 R4 ,1K,tayda 6 | A-2246,1,R5 ,220,tayda 7 | A-2248,1,R6 ,100K,tayda 8 | A-2247,1,R7 ,470,tayda 9 | A-5531,4,RV1 RV2 RV3 RV4 ,10k_pot,tayda 10 | A-2470,1,U1 ,MCP3008,tayda 11 | -------------------------------------------------------------------------------- /hardware/bom/tayda_bom_10x.csv: -------------------------------------------------------------------------------- 1 | sku,qty,ref,val,vendor 2 | A-1095,80,D1 D2 D3 D4 D5 D6 D7 D8 ,BAT46,tayda 3 | A-157,10,D9 ,1N4148,tayda 4 | A-2563,40,J1 J2 J3 J4 ,mono_jack_3.5mm,tayda 5 | A-2200,40,R1 R2 R3 R4 ,1K,tayda 6 | A-2246,10,R5 ,220,tayda 7 | A-2248,10,R6 ,100K,tayda 8 | A-2247,10,R7 ,470,tayda 9 | A-5531,40,RV1 RV2 RV3 RV4 ,10k_pot,tayda 10 | A-2470,10,U1 ,MCP3008,tayda 11 | -------------------------------------------------------------------------------- /hardware/bom/tayda_bom_x10.csv: -------------------------------------------------------------------------------- 1 | sku,qty,ref,val,amount single 2 | A-1095,80,D1 D2 D3 D4 D5 D6 D7 D8 ,BAT46,8 3 | A-157,10,D9 ,1N4148,1 4 | A-2563,40,J1 J2 J3 J4 ,mono_jack_3.5mm,4 5 | A-2200,40,R1 R2 R3 R4 ,1K,4 6 | A-2246,10,R5 ,220,1 7 | A-2248,10,R6 ,100K,1 8 | A-2247,10,R7 ,470,1 9 | A-2470,10,U1 ,MCP3008,1 10 | -------------------------------------------------------------------------------- /hardware/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name lib_fp)(type KiCad)(uri ${KIPRJMOD}/lib_fp.pretty)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /hardware/gerber_latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/hardware/gerber_latest.zip -------------------------------------------------------------------------------- /hardware/i_n_c_u_r.csv: -------------------------------------------------------------------------------- 1 | Reference, Quantity, Value, Footprint, Datasheet, Field4, Field5 2 | D1 D2 D3 D4 D5 D6 D7 D8 ,8,"BAT46","Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp","" 3 | D9 ,1,"1N4148","Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp","" 4 | J1 J2 J3 J4 ,4,"mono_jack_3.5mm","lib_fp:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles","" 5 | J5 ,1,"din5","lib_fp:tht_vertical_din5","" 6 | J6 ,1,"Conn_01x01","Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm","" 7 | J7 ,1,"rca","lib_fp:tht_rca_vertical","CUI Inc","Manufacturer recommendations","B" 8 | J8 ,1,"2x20_Extra_Tall_Socket_Header","Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical","" 9 | R1 R2 R3 R4 ,4,"1K","Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal","" 10 | R5 ,1,"220","Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal","" 11 | R6 ,1,"100K","Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal","" 12 | R7 ,1,"470","Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal","" 13 | RV1 RV2 RV3 RV4 ,4,"10k_pot","lib_fp:tht_vertical_potentiometer","" 14 | U1 ,1,"MCP3008","Housings_DIP:DIP-16_W7.62mm_LongPads","" 15 | U2 ,1,"6N138","Housings_DIP:DIP-8_W7.62mm_LongPads","" -------------------------------------------------------------------------------- /hardware/i_n_c_u_r.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 5, 32 | 9, 33 | 10, 34 | 11, 35 | 14, 36 | 15, 37 | 17, 38 | 18, 39 | 19, 40 | 20, 41 | 21, 42 | 22, 43 | 23, 44 | 24, 45 | 25, 46 | 26, 47 | 27, 48 | 28, 49 | 29, 50 | 30, 51 | 32, 52 | 33, 53 | 34, 54 | 35, 55 | 36 56 | ], 57 | "visible_layers": "fffffff_ffffffff", 58 | "zone_display_mode": 0 59 | }, 60 | "meta": { 61 | "filename": "i_n_c_u_r.kicad_prl", 62 | "version": 3 63 | }, 64 | "project": { 65 | "files": [] 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /hardware/i_n_c_u_r.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.15, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 1.6, 37 | "height": 2.15, 38 | "width": 2.6 39 | }, 40 | "silk_line_width": 0.15, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "filename": "board_design_settings.json", 55 | "version": 2 56 | }, 57 | "rule_severities": { 58 | "annular_width": "error", 59 | "clearance": "error", 60 | "copper_edge_clearance": "error", 61 | "courtyards_overlap": "warning", 62 | "diff_pair_gap_out_of_range": "error", 63 | "diff_pair_uncoupled_length_too_long": "error", 64 | "drill_out_of_range": "error", 65 | "duplicate_footprints": "warning", 66 | "extra_footprint": "warning", 67 | "footprint_type_mismatch": "error", 68 | "hole_clearance": "error", 69 | "hole_near_hole": "error", 70 | "invalid_outline": "error", 71 | "item_on_disabled_layer": "error", 72 | "items_not_allowed": "error", 73 | "length_out_of_range": "error", 74 | "malformed_courtyard": "error", 75 | "microvia_drill_out_of_range": "error", 76 | "missing_courtyard": "ignore", 77 | "missing_footprint": "warning", 78 | "net_conflict": "warning", 79 | "npth_inside_courtyard": "ignore", 80 | "padstack": "error", 81 | "pth_inside_courtyard": "ignore", 82 | "shorting_items": "error", 83 | "silk_over_copper": "warning", 84 | "silk_overlap": "warning", 85 | "skew_out_of_range": "error", 86 | "through_hole_pad_without_hole": "error", 87 | "too_many_vias": "error", 88 | "track_dangling": "warning", 89 | "track_width": "error", 90 | "tracks_crossing": "error", 91 | "unconnected_items": "error", 92 | "unresolved_variable": "error", 93 | "via_dangling": "warning", 94 | "zone_has_empty_net": "error", 95 | "zones_intersect": "error" 96 | }, 97 | "rule_severitieslegacy_courtyards_overlap": true, 98 | "rule_severitieslegacy_no_courtyard_defined": false, 99 | "rules": { 100 | "allow_blind_buried_vias": false, 101 | "allow_microvias": false, 102 | "max_error": 0.005, 103 | "min_clearance": 0.0, 104 | "min_copper_edge_clearance": 0.075, 105 | "min_hole_clearance": 0.25, 106 | "min_hole_to_hole": 0.25, 107 | "min_microvia_diameter": 0.19999999999999998, 108 | "min_microvia_drill": 0.09999999999999999, 109 | "min_silk_clearance": 0.0, 110 | "min_through_hole_diameter": 0.3, 111 | "min_track_width": 0.19999999999999998, 112 | "min_via_annular_width": 0.049999999999999996, 113 | "min_via_diameter": 0.39999999999999997, 114 | "use_height_for_length_calcs": true 115 | }, 116 | "track_widths": [], 117 | "via_dimensions": [], 118 | "zones_allow_external_fillets": false, 119 | "zones_use_no_outline": true 120 | }, 121 | "layer_presets": [] 122 | }, 123 | "boards": [], 124 | "cvpcb": { 125 | "equivalence_files": [] 126 | }, 127 | "erc": { 128 | "erc_exclusions": [], 129 | "meta": { 130 | "version": 0 131 | }, 132 | "pin_map": [ 133 | [ 134 | 0, 135 | 0, 136 | 0, 137 | 0, 138 | 0, 139 | 0, 140 | 1, 141 | 0, 142 | 0, 143 | 0, 144 | 0, 145 | 2 146 | ], 147 | [ 148 | 0, 149 | 2, 150 | 0, 151 | 1, 152 | 0, 153 | 0, 154 | 1, 155 | 0, 156 | 2, 157 | 2, 158 | 2, 159 | 2 160 | ], 161 | [ 162 | 0, 163 | 0, 164 | 0, 165 | 0, 166 | 0, 167 | 0, 168 | 1, 169 | 0, 170 | 1, 171 | 0, 172 | 1, 173 | 2 174 | ], 175 | [ 176 | 0, 177 | 1, 178 | 0, 179 | 0, 180 | 0, 181 | 0, 182 | 1, 183 | 1, 184 | 2, 185 | 1, 186 | 1, 187 | 2 188 | ], 189 | [ 190 | 0, 191 | 0, 192 | 0, 193 | 0, 194 | 0, 195 | 0, 196 | 1, 197 | 0, 198 | 0, 199 | 0, 200 | 0, 201 | 2 202 | ], 203 | [ 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 0, 214 | 0, 215 | 2 216 | ], 217 | [ 218 | 1, 219 | 1, 220 | 1, 221 | 1, 222 | 1, 223 | 0, 224 | 1, 225 | 1, 226 | 1, 227 | 1, 228 | 1, 229 | 2 230 | ], 231 | [ 232 | 0, 233 | 0, 234 | 0, 235 | 1, 236 | 0, 237 | 0, 238 | 1, 239 | 0, 240 | 0, 241 | 0, 242 | 0, 243 | 2 244 | ], 245 | [ 246 | 0, 247 | 2, 248 | 1, 249 | 2, 250 | 0, 251 | 0, 252 | 1, 253 | 0, 254 | 2, 255 | 2, 256 | 2, 257 | 2 258 | ], 259 | [ 260 | 0, 261 | 2, 262 | 0, 263 | 1, 264 | 0, 265 | 0, 266 | 1, 267 | 0, 268 | 2, 269 | 0, 270 | 0, 271 | 2 272 | ], 273 | [ 274 | 0, 275 | 2, 276 | 1, 277 | 1, 278 | 0, 279 | 0, 280 | 1, 281 | 0, 282 | 2, 283 | 0, 284 | 0, 285 | 2 286 | ], 287 | [ 288 | 2, 289 | 2, 290 | 2, 291 | 2, 292 | 2, 293 | 2, 294 | 2, 295 | 2, 296 | 2, 297 | 2, 298 | 2, 299 | 2 300 | ] 301 | ], 302 | "rule_severities": { 303 | "bus_definition_conflict": "error", 304 | "bus_entry_needed": "error", 305 | "bus_label_syntax": "error", 306 | "bus_to_bus_conflict": "error", 307 | "bus_to_net_conflict": "error", 308 | "different_unit_footprint": "error", 309 | "different_unit_net": "error", 310 | "duplicate_reference": "error", 311 | "duplicate_sheet_names": "error", 312 | "extra_units": "error", 313 | "global_label_dangling": "warning", 314 | "hier_label_mismatch": "error", 315 | "label_dangling": "error", 316 | "lib_symbol_issues": "warning", 317 | "multiple_net_names": "warning", 318 | "net_not_bus_member": "warning", 319 | "no_connect_connected": "warning", 320 | "no_connect_dangling": "warning", 321 | "pin_not_connected": "error", 322 | "pin_not_driven": "error", 323 | "pin_to_pin": "warning", 324 | "power_pin_not_driven": "error", 325 | "similar_labels": "warning", 326 | "unannotated": "error", 327 | "unit_value_mismatch": "error", 328 | "unresolved_variable": "error", 329 | "wire_dangling": "error" 330 | } 331 | }, 332 | "libraries": { 333 | "pinned_footprint_libs": [], 334 | "pinned_symbol_libs": [] 335 | }, 336 | "meta": { 337 | "filename": "i_n_c_u_r.kicad_pro", 338 | "version": 1 339 | }, 340 | "net_settings": { 341 | "classes": [ 342 | { 343 | "bus_width": 12.0, 344 | "clearance": 0.18, 345 | "diff_pair_gap": 0.25, 346 | "diff_pair_via_gap": 0.25, 347 | "diff_pair_width": 0.2, 348 | "line_style": 0, 349 | "microvia_diameter": 0.3, 350 | "microvia_drill": 0.1, 351 | "name": "Default", 352 | "pcb_color": "rgba(0, 0, 0, 0.000)", 353 | "schematic_color": "rgba(0, 0, 0, 0.000)", 354 | "track_width": 0.4, 355 | "via_diameter": 0.6, 356 | "via_drill": 0.4, 357 | "wire_width": 6.0 358 | } 359 | ], 360 | "meta": { 361 | "version": 2 362 | }, 363 | "net_colors": null 364 | }, 365 | "pcbnew": { 366 | "last_paths": { 367 | "gencad": "", 368 | "idf": "", 369 | "netlist": "incur_board.net", 370 | "specctra_dsn": "", 371 | "step": "", 372 | "vrml": "" 373 | }, 374 | "page_layout_descr_file": "" 375 | }, 376 | "schematic": { 377 | "annotate_start_num": 0, 378 | "drawing": { 379 | "default_line_thickness": 6.0, 380 | "default_text_size": 60.0, 381 | "field_names": [], 382 | "intersheets_ref_own_page": false, 383 | "intersheets_ref_prefix": "", 384 | "intersheets_ref_short": false, 385 | "intersheets_ref_show": false, 386 | "intersheets_ref_suffix": "", 387 | "junction_size_choice": 3, 388 | "label_size_ratio": 0.25, 389 | "pin_symbol_size": 0.0, 390 | "text_offset_ratio": 0.08 391 | }, 392 | "legacy_lib_dir": "", 393 | "legacy_lib_list": [], 394 | "meta": { 395 | "version": 1 396 | }, 397 | "net_format_name": "Pcbnew", 398 | "ngspice": { 399 | "fix_include_paths": true, 400 | "fix_passive_vals": false, 401 | "meta": { 402 | "version": 0 403 | }, 404 | "model_mode": 0, 405 | "workbook_filename": "" 406 | }, 407 | "page_layout_descr_file": "", 408 | "plot_directory": "", 409 | "spice_adjust_passive_values": false, 410 | "spice_external_command": "spice \"%I\"", 411 | "subpart_first_id": 65, 412 | "subpart_id_separator": 0 413 | }, 414 | "sheets": [ 415 | [ 416 | "39cd1fc4-ce5f-4903-905f-46fa43016446", 417 | "" 418 | ] 419 | ], 420 | "text_variables": {} 421 | } 422 | -------------------------------------------------------------------------------- /hardware/i_n_c_u_r.pro: -------------------------------------------------------------------------------- 1 | update=Thu 10 Feb 2022 13:37:57 2 | version=1 3 | last_client=kicad 4 | [cvpcb] 5 | version=1 6 | NetIExt=net 7 | [general] 8 | version=1 9 | [eeschema] 10 | version=1 11 | LibDir= 12 | [pcbnew] 13 | version=1 14 | PageLayoutDescrFile= 15 | LastNetListRead=incur_board.net 16 | CopperLayerCount=2 17 | BoardThickness=1.6 18 | AllowMicroVias=0 19 | AllowBlindVias=0 20 | RequireCourtyardDefinitions=0 21 | ProhibitOverlappingCourtyards=1 22 | MinTrackWidth=0.2 23 | MinViaDiameter=0.4 24 | MinViaDrill=0.3 25 | MinMicroViaDiameter=0.2 26 | MinMicroViaDrill=0.09999999999999999 27 | MinHoleToHole=0.25 28 | TrackWidth1=0.4 29 | ViaDiameter1=0.6 30 | ViaDrill1=0.4 31 | dPairWidth1=0.2 32 | dPairGap1=0.25 33 | dPairViaGap1=0.25 34 | SilkLineWidth=0.15 35 | SilkTextSizeV=1 36 | SilkTextSizeH=1 37 | SilkTextSizeThickness=0.15 38 | SilkTextItalic=0 39 | SilkTextUpright=1 40 | CopperLineWidth=0.2 41 | CopperTextSizeV=1.5 42 | CopperTextSizeH=1.5 43 | CopperTextThickness=0.3 44 | CopperTextItalic=0 45 | CopperTextUpright=1 46 | EdgeCutLineWidth=0.15 47 | CourtyardLineWidth=0.05 48 | OthersLineWidth=0.15 49 | OthersTextSizeV=1 50 | OthersTextSizeH=1 51 | OthersTextSizeThickness=0.15 52 | OthersTextItalic=0 53 | OthersTextUpright=1 54 | SolderMaskClearance=0.2 55 | SolderMaskMinWidth=0 56 | SolderPasteClearance=0 57 | SolderPasteRatio=0 58 | [pcbnew/Layer.F.Cu] 59 | Name=F.Cu 60 | Type=0 61 | Enabled=1 62 | [pcbnew/Layer.In1.Cu] 63 | Name=In1.Cu 64 | Type=0 65 | Enabled=0 66 | [pcbnew/Layer.In2.Cu] 67 | Name=In2.Cu 68 | Type=0 69 | Enabled=0 70 | [pcbnew/Layer.In3.Cu] 71 | Name=In3.Cu 72 | Type=0 73 | Enabled=0 74 | [pcbnew/Layer.In4.Cu] 75 | Name=In4.Cu 76 | Type=0 77 | Enabled=0 78 | [pcbnew/Layer.In5.Cu] 79 | Name=In5.Cu 80 | Type=0 81 | Enabled=0 82 | [pcbnew/Layer.In6.Cu] 83 | Name=In6.Cu 84 | Type=0 85 | Enabled=0 86 | [pcbnew/Layer.In7.Cu] 87 | Name=In7.Cu 88 | Type=0 89 | Enabled=0 90 | [pcbnew/Layer.In8.Cu] 91 | Name=In8.Cu 92 | Type=0 93 | Enabled=0 94 | [pcbnew/Layer.In9.Cu] 95 | Name=In9.Cu 96 | Type=0 97 | Enabled=0 98 | [pcbnew/Layer.In10.Cu] 99 | Name=In10.Cu 100 | Type=0 101 | Enabled=0 102 | [pcbnew/Layer.In11.Cu] 103 | Name=In11.Cu 104 | Type=0 105 | Enabled=0 106 | [pcbnew/Layer.In12.Cu] 107 | Name=In12.Cu 108 | Type=0 109 | Enabled=0 110 | [pcbnew/Layer.In13.Cu] 111 | Name=In13.Cu 112 | Type=0 113 | Enabled=0 114 | [pcbnew/Layer.In14.Cu] 115 | Name=In14.Cu 116 | Type=0 117 | Enabled=0 118 | [pcbnew/Layer.In15.Cu] 119 | Name=In15.Cu 120 | Type=0 121 | Enabled=0 122 | [pcbnew/Layer.In16.Cu] 123 | Name=In16.Cu 124 | Type=0 125 | Enabled=0 126 | [pcbnew/Layer.In17.Cu] 127 | Name=In17.Cu 128 | Type=0 129 | Enabled=0 130 | [pcbnew/Layer.In18.Cu] 131 | Name=In18.Cu 132 | Type=0 133 | Enabled=0 134 | [pcbnew/Layer.In19.Cu] 135 | Name=In19.Cu 136 | Type=0 137 | Enabled=0 138 | [pcbnew/Layer.In20.Cu] 139 | Name=In20.Cu 140 | Type=0 141 | Enabled=0 142 | [pcbnew/Layer.In21.Cu] 143 | Name=In21.Cu 144 | Type=0 145 | Enabled=0 146 | [pcbnew/Layer.In22.Cu] 147 | Name=In22.Cu 148 | Type=0 149 | Enabled=0 150 | [pcbnew/Layer.In23.Cu] 151 | Name=In23.Cu 152 | Type=0 153 | Enabled=0 154 | [pcbnew/Layer.In24.Cu] 155 | Name=In24.Cu 156 | Type=0 157 | Enabled=0 158 | [pcbnew/Layer.In25.Cu] 159 | Name=In25.Cu 160 | Type=0 161 | Enabled=0 162 | [pcbnew/Layer.In26.Cu] 163 | Name=In26.Cu 164 | Type=0 165 | Enabled=0 166 | [pcbnew/Layer.In27.Cu] 167 | Name=In27.Cu 168 | Type=0 169 | Enabled=0 170 | [pcbnew/Layer.In28.Cu] 171 | Name=In28.Cu 172 | Type=0 173 | Enabled=0 174 | [pcbnew/Layer.In29.Cu] 175 | Name=In29.Cu 176 | Type=0 177 | Enabled=0 178 | [pcbnew/Layer.In30.Cu] 179 | Name=In30.Cu 180 | Type=0 181 | Enabled=0 182 | [pcbnew/Layer.B.Cu] 183 | Name=B.Cu 184 | Type=0 185 | Enabled=1 186 | [pcbnew/Layer.B.Adhes] 187 | Enabled=0 188 | [pcbnew/Layer.F.Adhes] 189 | Enabled=1 190 | [pcbnew/Layer.B.Paste] 191 | Enabled=0 192 | [pcbnew/Layer.F.Paste] 193 | Enabled=1 194 | [pcbnew/Layer.B.SilkS] 195 | Enabled=1 196 | [pcbnew/Layer.F.SilkS] 197 | Enabled=1 198 | [pcbnew/Layer.B.Mask] 199 | Enabled=1 200 | [pcbnew/Layer.F.Mask] 201 | Enabled=1 202 | [pcbnew/Layer.Dwgs.User] 203 | Enabled=1 204 | [pcbnew/Layer.Cmts.User] 205 | Enabled=1 206 | [pcbnew/Layer.Eco1.User] 207 | Enabled=1 208 | [pcbnew/Layer.Eco2.User] 209 | Enabled=1 210 | [pcbnew/Layer.Edge.Cuts] 211 | Enabled=1 212 | [pcbnew/Layer.Margin] 213 | Enabled=1 214 | [pcbnew/Layer.B.CrtYd] 215 | Enabled=0 216 | [pcbnew/Layer.F.CrtYd] 217 | Enabled=1 218 | [pcbnew/Layer.B.Fab] 219 | Enabled=0 220 | [pcbnew/Layer.F.Fab] 221 | Enabled=1 222 | [pcbnew/Layer.Rescue] 223 | Enabled=0 224 | [pcbnew/Netclasses] 225 | [pcbnew/Netclasses/Default] 226 | Name=Default 227 | Clearance=0.18 228 | TrackWidth=0.4 229 | ViaDiameter=0.6 230 | ViaDrill=0.4 231 | uViaDiameter=0.3 232 | uViaDrill=0.1 233 | dPairWidth=0.2 234 | dPairGap=0.25 235 | dPairViaGap=0.25 236 | [schematic_editor] 237 | version=1 238 | PageLayoutDescrFile= 239 | PlotDirectoryName= 240 | SubpartIdSeparator=0 241 | SubpartFirstId=65 242 | NetFmtName=Pcbnew 243 | SpiceAjustPassiveValues=0 244 | LabSize=60 245 | ERC_TestSimilarLabels=1 246 | -------------------------------------------------------------------------------- /hardware/incur_board-rescue.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.4 2 | #encoding utf-8 3 | # 4 | # +3V3 5 | # 6 | DEF +3V3 #PWR 0 0 Y Y 1 F P 7 | F0 "#PWR" 0 -150 50 H I C CNN 8 | F1 "+3V3" 0 140 50 H V C CNN 9 | F2 "" 0 0 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | DRAW 12 | P 2 0 1 0 -30 50 0 100 N 13 | P 2 0 1 0 0 0 0 100 N 14 | P 2 0 1 0 0 100 30 50 N 15 | X +3V3 1 0 0 0 U 50 50 1 1 W N 16 | ENDDRAW 17 | ENDDEF 18 | # 19 | # +5V 20 | # 21 | DEF +5V #PWR 0 0 Y Y 1 F P 22 | F0 "#PWR" 0 -150 50 H I C CNN 23 | F1 "+5V" 0 140 50 H V C CNN 24 | F2 "" 0 0 50 H I C CNN 25 | F3 "" 0 0 50 H I C CNN 26 | DRAW 27 | P 2 0 1 0 -30 50 0 100 N 28 | P 2 0 1 0 0 0 0 100 N 29 | P 2 0 1 0 0 100 30 50 N 30 | X +5V 1 0 0 0 U 50 50 1 1 W N 31 | ENDDRAW 32 | ENDDEF 33 | # 34 | # 6N138 35 | # 36 | DEF 6N138 U 0 40 Y N 1 F N 37 | F0 "U" -160 350 50 H V C CNN 38 | F1 "6N138" 90 350 50 H V C CNN 39 | F2 "" 290 -300 50 H I C CNN 40 | F3 "" 290 -300 50 H I C CNN 41 | $FPLIST 42 | DIP*W7.62mm* 43 | SMDIP*W9.53mm* 44 | $ENDFPLIST 45 | DRAW 46 | S -200 300 200 -300 0 1 10 f 47 | P 2 0 1 10 -180 -25 -130 -25 N 48 | P 2 0 1 10 35 -25 -15 -25 N 49 | P 2 0 1 0 55 -105 100 -150 N 50 | P 2 0 1 0 55 -95 100 -50 N 51 | P 2 0 1 0 100 -150 125 -150 N 52 | P 2 0 1 0 135 -155 180 -200 N 53 | P 2 0 1 0 135 -145 180 -100 N 54 | P 2 0 1 0 180 -200 200 -200 N 55 | P 2 0 1 0 180 -100 200 -100 N 56 | P 3 0 1 14 55 -60 55 -140 55 -140 N 57 | P 3 0 1 0 100 -50 100 200 200 200 N 58 | P 3 0 1 14 135 -110 135 -190 135 -190 N 59 | P 3 0 1 0 200 100 120 100 120 -150 N 60 | P 4 0 1 0 -200 -100 -155 -100 -155 100 -200 100 N 61 | P 4 0 1 10 -155 -25 -180 25 -130 25 -155 -25 N 62 | P 4 0 1 10 10 -25 35 -75 -15 -75 10 -25 N 63 | P 4 0 1 0 50 -100 10 -100 10 200 100 200 N 64 | P 4 0 1 0 95 -145 85 -125 75 -135 95 -145 N 65 | P 4 0 1 0 175 -195 165 -175 155 -185 175 -195 N 66 | P 5 0 1 0 -110 -20 -60 -20 -75 -25 -75 -15 -60 -20 N 67 | P 5 0 1 0 -110 20 -60 20 -75 15 -75 25 -60 20 N 68 | X NC 1 -200 200 100 R 50 50 1 1 N N 69 | X C1 2 -300 100 100 R 50 50 1 1 P 70 | X C2 3 -300 -100 100 R 50 50 1 1 P 71 | X NC 4 -200 -200 100 R 50 50 1 1 N N 72 | X GND 5 300 -200 100 L 50 50 1 1 P 73 | X VO2 6 300 -100 100 L 50 50 1 1 P 74 | X VO1 7 300 100 100 L 50 50 1 1 P 75 | X VCC 8 300 200 100 L 50 50 1 1 P 76 | ENDDRAW 77 | ENDDEF 78 | # 79 | # Audio-Jack-2_Switch 80 | # 81 | DEF Audio-Jack-2_Switch J 0 40 Y Y 1 F N 82 | F0 "J" -50 175 50 H V C CNN 83 | F1 "Audio-Jack-2_Switch" 225 -75 50 H V C CNN 84 | F2 "" 250 100 50 H I C CNN 85 | F3 "" 250 100 50 H I C CNN 86 | DRAW 87 | T 0 -100 50 30 0 0 0 1 Normal 0 C C 88 | S -185 125 100 -25 0 1 10 f 89 | S -175 0 -205 100 0 1 0 F 90 | P 2 0 1 0 -25 95 -10 65 N 91 | P 4 0 1 0 100 0 -25 0 -25 95 -40 65 N 92 | P 4 0 1 10 100 100 -75 100 -100 75 -125 100 N 93 | X ~ 1 200 100 100 L 50 50 1 1 P 94 | X ~ 2 -200 -100 100 U 50 50 1 1 P 95 | X ~ 3 200 0 100 L 50 50 1 1 P 96 | ENDDRAW 97 | ENDDEF 98 | # 99 | # Conn_01x01 100 | # 101 | DEF Conn_01x01 J 0 40 Y N 1 F N 102 | F0 "J" 0 100 50 H V C CNN 103 | F1 "Conn_01x01" 0 -100 50 H V C CNN 104 | F2 "" 0 0 50 H I C CNN 105 | F3 "" 0 0 50 H I C CNN 106 | $FPLIST 107 | Connector*:*_??x*mm* 108 | Connector*:*1x??x*mm* 109 | Pin?Header?Straight?1X* 110 | Pin?Header?Angled?1X* 111 | Socket?Strip?Straight?1X* 112 | Socket?Strip?Angled?1X* 113 | $ENDFPLIST 114 | DRAW 115 | S -50 5 0 -5 1 1 6 N 116 | S -50 50 50 -50 1 1 10 f 117 | X Pin_1 1 -200 0 150 R 50 50 1 1 P 118 | ENDDRAW 119 | ENDDEF 120 | # 121 | # D 122 | # 123 | DEF D D 0 40 N N 1 F N 124 | F0 "D" 0 100 50 H V C CNN 125 | F1 "D" 0 -100 50 H V C CNN 126 | F2 "" 0 0 50 H I C CNN 127 | F3 "" 0 0 50 H I C CNN 128 | $FPLIST 129 | TO-???* 130 | *SingleDiode 131 | *_Diode_* 132 | *SingleDiode* 133 | D_* 134 | $ENDFPLIST 135 | DRAW 136 | P 2 0 1 8 -50 50 -50 -50 N 137 | P 2 0 1 0 50 0 -50 0 N 138 | P 4 0 1 8 50 50 50 -50 -50 0 50 50 N 139 | X K 1 -150 0 100 R 50 50 1 1 P 140 | X A 2 150 0 100 L 50 50 1 1 P 141 | ENDDRAW 142 | ENDDEF 143 | # 144 | # DIN-5_180degree 145 | # 146 | DEF DIN-5_180degree J 0 40 Y Y 1 F N 147 | F0 "J" 125 225 50 H V C CNN 148 | F1 "DIN-5_180degree" 0 -250 50 H V C CNN 149 | F2 "" 0 0 50 H I C CNN 150 | F3 "" 0 0 50 H I C CNN 151 | $FPLIST 152 | DIN* 153 | $ENDFPLIST 154 | DRAW 155 | A -1 -1 201 -811 3 0 1 10 N 30 -200 200 0 156 | A 0 0 200 1 1799 0 1 10 N 200 0 -200 0 157 | A 1 -1 201 1797 -989 0 1 10 N -200 0 -30 -200 158 | C -120 0 20 0 1 0 N 159 | C -90 90 20 0 1 0 N 160 | C 0 130 20 0 1 0 N 161 | C 90 90 20 0 1 0 N 162 | C 120 0 20 0 1 0 N 163 | P 2 0 1 0 -200 0 -140 0 N 164 | P 2 0 1 0 0 200 0 150 N 165 | P 2 0 1 0 200 0 140 0 N 166 | P 3 0 1 0 -200 100 -170 100 -110 90 N 167 | P 3 0 1 0 200 100 170 100 110 90 N 168 | P 4 0 1 10 -30 -195 -30 -165 30 -165 30 -195 N 169 | X ~ 1 -300 0 100 R 50 50 1 1 P 170 | X ~ 2 0 300 100 D 50 50 1 1 P 171 | X ~ 3 300 0 100 L 50 50 1 1 P 172 | X ~ 4 -300 100 100 R 50 50 1 1 P 173 | X ~ 5 300 100 100 L 50 50 1 1 P 174 | ENDDRAW 175 | ENDDEF 176 | # 177 | # GND 178 | # 179 | DEF GND #PWR 0 0 Y Y 1 F P 180 | F0 "#PWR" 0 -250 50 H I C CNN 181 | F1 "GND" 0 -150 50 H V C CNN 182 | F2 "" 0 0 50 H I C CNN 183 | F3 "" 0 0 50 H I C CNN 184 | DRAW 185 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 186 | X GND 1 0 0 0 D 50 50 1 1 W N 187 | ENDDRAW 188 | ENDDEF 189 | # 190 | # MCP3208 191 | # 192 | DEF MCP3208 U 0 40 Y Y 1 F N 193 | F0 "U" -200 525 50 H V R CNN 194 | F1 "MCP3208" -200 450 50 H V R CNN 195 | F2 "" 100 100 50 H I C CNN 196 | F3 "" 100 100 50 H I C CNN 197 | $FPLIST 198 | DIP*W7.62mm* 199 | SOIC*3.9x9.9mm*Pitch1.27mm* 200 | $ENDFPLIST 201 | DRAW 202 | T 0 -25 50 50 0 0 0 ADC Normal 0 C C 203 | T 900 235 -115 50 0 0 0 CNTRL Normal 0 L B 204 | T 900 -250 -50 50 0 0 0 MUX Normal 0 C C 205 | S 150 -150 275 150 0 1 0 N 206 | S 500 -500 -500 400 0 1 10 f 207 | P 2 0 1 0 -150 50 -200 50 N 208 | P 2 0 1 0 75 50 150 50 N 209 | P 5 0 1 0 -300 350 -300 -450 -200 -400 -200 300 -300 350 N 210 | P 5 0 1 0 150 -125 -150 -125 -150 -450 -250 -450 -250 -425 N 211 | P 6 0 1 0 75 125 75 -25 -100 -25 -150 50 -100 125 75 125 N 212 | X CH0 1 -600 300 100 R 50 50 1 1 I 213 | X ~CS~/SHDN 10 600 -200 100 L 50 50 1 1 I 214 | X Din 11 600 -100 100 L 50 50 1 1 I 215 | X Dout 12 600 0 100 L 50 50 1 1 O 216 | X CLK 13 600 100 100 L 50 50 1 1 I C 217 | X AGND 14 -100 -600 100 U 50 50 1 1 W 218 | X Vref 15 -100 500 100 D 50 50 1 1 W 219 | X Vdd 16 200 500 100 D 50 50 1 1 W 220 | X CH1 2 -600 200 100 R 50 50 1 1 I 221 | X CH2 3 -600 100 100 R 50 50 1 1 I 222 | X CH3 4 -600 0 100 R 50 50 1 1 I 223 | X CH4 5 -600 -100 100 R 50 50 1 1 I 224 | X CH5 6 -600 -200 100 R 50 50 1 1 I 225 | X CH6 7 -600 -300 100 R 50 50 1 1 I 226 | X CH7 8 -600 -400 100 R 50 50 1 1 I 227 | X DGND 9 200 -600 100 U 50 50 1 1 W 228 | ENDDRAW 229 | ENDDEF 230 | # 231 | # POT 232 | # 233 | DEF POT RV 0 40 N N 1 F N 234 | F0 "RV" -175 0 50 V V C CNN 235 | F1 "POT" -100 0 50 V V C CNN 236 | F2 "" 0 0 50 H I C CNN 237 | F3 "" 0 0 50 H I C CNN 238 | $FPLIST 239 | Potentiometer* 240 | $ENDFPLIST 241 | DRAW 242 | S 40 100 -40 -100 0 1 10 N 243 | P 2 0 1 0 100 0 60 0 N 244 | P 3 0 1 0 45 0 90 20 90 -20 F 245 | X 1 1 0 150 50 D 50 50 1 1 P 246 | X 2 2 150 0 50 L 50 50 1 1 P 247 | X 3 3 0 -150 50 U 50 50 1 1 P 248 | ENDDRAW 249 | ENDDEF 250 | # 251 | # PWR_FLAG 252 | # 253 | DEF PWR_FLAG #FLG 0 0 N N 1 F P 254 | F0 "#FLG" 0 75 50 H I C CNN 255 | F1 "PWR_FLAG" 0 150 50 H V C CNN 256 | F2 "" 0 0 50 H I C CNN 257 | F3 "" 0 0 50 H I C CNN 258 | DRAW 259 | P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N 260 | X pwr 1 0 0 0 U 50 50 0 0 w 261 | ENDDRAW 262 | ENDDEF 263 | # 264 | # R 265 | # 266 | DEF R R 0 0 N Y 1 F N 267 | F0 "R" 80 0 50 V V C CNN 268 | F1 "R" 0 0 50 V V C CNN 269 | F2 "" -70 0 50 V I C CNN 270 | F3 "" 0 0 50 H I C CNN 271 | $FPLIST 272 | R_* 273 | R_* 274 | $ENDFPLIST 275 | DRAW 276 | S -40 -100 40 100 0 1 10 N 277 | X ~ 1 0 150 50 D 50 50 1 1 P 278 | X ~ 2 0 -150 50 U 50 50 1 1 P 279 | ENDDRAW 280 | ENDDEF 281 | # 282 | # RCJ-024 283 | # 284 | DEF RCJ-024 J 0 40 Y Y 1 L N 285 | F0 "J" -100 150 50 H V L BNN 286 | F1 "RCJ-024" -100 -250 50 H V L BNN 287 | F2 "CUI_RCJ-024" 0 0 50 H I L BNN 288 | F3 "CUI Inc" 0 0 50 H I L BNN 289 | F4 "Manufacturer recommendations" 0 0 50 H I L BNN 290 | F5 "B" 0 0 50 H I L BNN 291 | DRAW 292 | S -130 -100 -70 50 0 0 0 F 293 | P 2 0 0 6 -100 100 -100 50 N 294 | P 2 0 0 6 0 -40 -30 -100 N 295 | P 2 0 0 6 30 -100 0 -40 N 296 | P 2 0 0 6 100 -100 30 -100 N 297 | P 2 0 0 6 200 -100 100 -100 N 298 | P 2 0 0 6 200 100 -100 100 N 299 | X 1 1A 300 100 100 L 40 40 0 0 P 300 | X 1 1B 300 100 100 L 40 40 0 0 P 301 | X 2 2 300 -100 100 L 40 40 0 0 P 302 | ENDDRAW 303 | ENDDEF 304 | # 305 | # Raspberry_Pi_2_3 306 | # 307 | DEF Raspberry_Pi_2_3 J 0 40 Y Y 1 F N 308 | F0 "J" 700 -1250 50 H V C CNN 309 | F1 "Raspberry_Pi_2_3" -400 900 50 H V C CNN 310 | F2 "Pin_Headers:Pin_Header_Straight_2x20" 1000 1250 50 H I C CNN 311 | F3 "" 50 -150 50 H I C CNN 312 | DRAW 313 | S -800 1200 800 -1200 0 1 10 f 314 | X 3V3 1 100 1300 100 D 50 50 1 1 w 315 | X (RXD0)_GPIO15 10 900 -800 100 L 50 50 1 1 B 316 | X GPIO17_(GEN0) 11 -900 600 100 R 50 50 1 1 B 317 | X GPIO18_(GEN1) 12 -900 500 100 R 50 50 1 1 B 318 | X GPIO27_(GEN2) 13 -900 -400 100 R 50 50 1 1 B 319 | X GND 14 -200 -1300 100 U 50 50 1 1 P 320 | X GPIO22_(GEN3) 15 -900 100 100 R 50 50 1 1 B 321 | X GPIO23_(GEN4) 16 -900 0 100 R 50 50 1 1 B 322 | X 3V3 17 200 1300 100 D 50 50 1 1 w 323 | X GPIO24_(GEN5) 18 -900 -100 100 R 50 50 1 1 B 324 | X (SPI_MOSI)_GPIO10 19 900 -100 100 L 50 50 1 1 B 325 | X 5V 2 -200 1300 100 D 50 50 1 1 P 326 | X GND 20 -100 -1300 100 U 50 50 1 1 P 327 | X (SPI_MISO)_GPIO9 21 900 0 100 L 50 50 1 1 B 328 | X GPIO25_(GEN6) 22 -900 -200 100 R 50 50 1 1 B 329 | X (SPI_SCLK)_GPIO11 23 900 -200 100 L 50 50 1 1 B 330 | X (~SPI_CE0~)_GPIO8 24 900 100 100 L 50 50 1 1 B 331 | X GND 25 0 -1300 100 U 50 50 1 1 P 332 | X (~SPI_CE1~)_GPIO7 26 900 200 100 L 50 50 1 1 B 333 | X ID_SD 27 -900 -700 100 R 50 50 1 1 B 334 | X ID_SC 28 -900 -800 100 R 50 50 1 1 B 335 | X GPIO5 29 900 500 100 L 50 50 1 1 B 336 | X (SDA1)_GPIO2 3 900 900 100 L 50 50 1 1 B 337 | X GND 30 100 -1300 100 U 50 50 1 1 P 338 | X GPIO6 31 900 400 100 L 50 50 1 1 B 339 | X GPIO12 32 900 -400 100 L 50 50 1 1 B 340 | X GPIO13 33 900 -500 100 L 50 50 1 1 B 341 | X GND 34 200 -1300 100 U 50 50 1 1 P 342 | X GPIO19 35 -900 400 100 R 50 50 1 1 B 343 | X GPIO16 36 -900 700 100 R 50 50 1 1 B 344 | X GPIO26 37 -900 -300 100 R 50 50 1 1 B 345 | X GPIO20 38 -900 300 100 R 50 50 1 1 B 346 | X GND 39 300 -1300 100 U 50 50 1 1 P 347 | X 5V 4 -100 1300 100 D 50 50 1 1 P 348 | X GPIO21 40 -900 200 100 R 50 50 1 1 B 349 | X (SCL1)_GPIO3 5 900 800 100 L 50 50 1 1 B 350 | X GND 6 -400 -1300 100 U 50 50 1 1 P 351 | X (GCLK)_GPIO4 7 900 700 100 L 50 50 1 1 B 352 | X (TXD0)_GPIO14 8 900 -700 100 L 50 50 1 1 B 353 | X GND 9 -300 -1300 100 U 50 50 1 1 P 354 | ENDDRAW 355 | ENDDEF 356 | # 357 | #End Library 358 | -------------------------------------------------------------------------------- /hardware/incur_pcbV5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/hardware/incur_pcbV5.zip -------------------------------------------------------------------------------- /hardware/lib_fp.pretty/2x20_Extra_Tall_Header.kicad_mod: -------------------------------------------------------------------------------- 1 | (module 2x20_Extra_Tall_Header (layer F.Cu) (tedit 59FED5CC) 2 | (descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows") 3 | (tags "Through hole pin header THT 2x20 2.54mm double row") 4 | (fp_text reference REF** (at 1.27 -2.33) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value 2x20_Extra_Tall_Header (at 1.27 50.59) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1)) 11 | (fp_line (start 3.81 -1.27) (end 3.81 49.53) (layer F.Fab) (width 0.1)) 12 | (fp_line (start 3.81 49.53) (end -1.27 49.53) (layer F.Fab) (width 0.1)) 13 | (fp_line (start -1.27 49.53) (end -1.27 0) (layer F.Fab) (width 0.1)) 14 | (fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1)) 15 | (fp_line (start -1.33 49.59) (end 3.87 49.59) (layer F.SilkS) (width 0.12)) 16 | (fp_line (start -1.33 1.27) (end -1.33 49.59) (layer F.SilkS) (width 0.12)) 17 | (fp_line (start 3.87 -1.33) (end 3.87 49.59) (layer F.SilkS) (width 0.12)) 18 | (fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12)) 19 | (fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12)) 20 | (fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12)) 21 | (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) 22 | (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) 23 | (fp_line (start -1.8 -1.8) (end -1.8 50.05) (layer F.CrtYd) (width 0.05)) 24 | (fp_line (start -1.8 50.05) (end 4.35 50.05) (layer F.CrtYd) (width 0.05)) 25 | (fp_line (start 4.35 50.05) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05)) 26 | (fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) 27 | (fp_text user %R (at 1.27 24.13 90) (layer F.Fab) 28 | (effects (font (size 1 1) (thickness 0.15))) 29 | ) 30 | (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 31 | (pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 32 | (pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 33 | (pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 34 | (pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 35 | (pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 36 | (pad 7 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 37 | (pad 8 thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 38 | (pad 9 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 39 | (pad 10 thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 40 | (pad 11 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 41 | (pad 12 thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 42 | (pad 13 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 43 | (pad 14 thru_hole oval (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 44 | (pad 15 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 45 | (pad 16 thru_hole oval (at 2.54 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 46 | (pad 17 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 47 | (pad 18 thru_hole oval (at 2.54 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 48 | (pad 19 thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 49 | (pad 20 thru_hole oval (at 2.54 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 50 | (pad 21 thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 51 | (pad 22 thru_hole oval (at 2.54 25.4) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 52 | (pad 23 thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 53 | (pad 24 thru_hole oval (at 2.54 27.94) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 54 | (pad 25 thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 55 | (pad 26 thru_hole oval (at 2.54 30.48) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 56 | (pad 27 thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 57 | (pad 28 thru_hole oval (at 2.54 33.02) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 58 | (pad 29 thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 59 | (pad 30 thru_hole oval (at 2.54 35.56) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 60 | (pad 31 thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 61 | (pad 32 thru_hole oval (at 2.54 38.1) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 62 | (pad 33 thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 63 | (pad 34 thru_hole oval (at 2.54 40.64) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 64 | (pad 35 thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 65 | (pad 36 thru_hole oval (at 2.54 43.18) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 66 | (pad 37 thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 67 | (pad 38 thru_hole oval (at 2.54 45.72) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 68 | (pad 39 thru_hole oval (at 0 48.26) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 69 | (pad 40 thru_hole oval (at 2.54 48.26) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) 70 | (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x20_P2.54mm_Vertical.wrl 71 | (at (xyz 0 0 0)) 72 | (scale (xyz 1 1 1)) 73 | (rotate (xyz 0 0 0)) 74 | ) 75 | ) 76 | -------------------------------------------------------------------------------- /hardware/lib_fp.pretty/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles.kicad_mod: -------------------------------------------------------------------------------- 1 | (module Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles (layer F.Cu) (tedit 61F77866) 2 | (descr "TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html)") 3 | (tags "WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu") 4 | (fp_text reference REF** (at -4.03 1.08 180) (layer F.SilkS) 5 | (effects (font (size 1 1) (thickness 0.15))) 6 | ) 7 | (fp_text value Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles (at 0 5 180) (layer F.Fab) 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | ) 10 | (fp_text user %R (at 0 8 180) (layer F.Fab) 11 | (effects (font (size 1 1) (thickness 0.15))) 12 | ) 13 | (fp_text user KEEPOUT (at 0 6.48) (layer Cmts.User) 14 | (effects (font (size 0.4 0.4) (thickness 0.051))) 15 | ) 16 | (fp_line (start 0 0) (end 0 2.03) (layer F.Fab) (width 0.1)) 17 | (fp_circle (center 0 6.48) (end 1.8 6.48) (layer F.Fab) (width 0.1)) 18 | (fp_line (start 4.5 2.03) (end -4.5 2.03) (layer F.Fab) (width 0.1)) 19 | (fp_line (start 5 -1.42) (end -5 -1.42) (layer F.CrtYd) (width 0.05)) 20 | (fp_line (start 5 12.98) (end -5 12.98) (layer F.CrtYd) (width 0.05)) 21 | (fp_line (start 5 12.98) (end 5 -1.42) (layer F.CrtYd) (width 0.05)) 22 | (fp_line (start 4.5 12.48) (end -4.5 12.48) (layer F.Fab) (width 0.1)) 23 | (fp_line (start 4.5 12.48) (end 4.5 2.08) (layer F.Fab) (width 0.1)) 24 | (fp_line (start -1.06 -1) (end -0.2 -1) (layer F.SilkS) (width 0.12)) 25 | (fp_line (start -1.06 -1) (end -1.06 -0.2) (layer F.SilkS) (width 0.12)) 26 | (fp_circle (center 0 6.48) (end 1.8 6.48) (layer F.SilkS) (width 0.12)) 27 | (fp_line (start -0.35 1.98) (end -4.5 1.98) (layer F.SilkS) (width 0.12)) 28 | (fp_line (start 4.5 1.98) (end 0.35 1.98) (layer F.SilkS) (width 0.12)) 29 | (fp_line (start -0.5 12.48) (end -4.5 12.48) (layer F.SilkS) (width 0.12)) 30 | (fp_line (start 4.5 12.48) (end 0.5 12.48) (layer F.SilkS) (width 0.12)) 31 | (fp_line (start -1.41 6.02) (end -0.46 5.07) (layer Dwgs.User) (width 0.12)) 32 | (fp_line (start -1.42 6.875) (end 0.4 5.06) (layer Dwgs.User) (width 0.12)) 33 | (fp_line (start -1.07 7.49) (end 1.01 5.41) (layer Dwgs.User) (width 0.12)) 34 | (fp_line (start -0.58 7.83) (end 1.36 5.89) (layer Dwgs.User) (width 0.12)) 35 | (fp_line (start 0.09 7.96) (end 1.48 6.57) (layer Dwgs.User) (width 0.12)) 36 | (fp_circle (center 0 6.48) (end 1.5 6.48) (layer Dwgs.User) (width 0.12)) 37 | (fp_line (start 4.5 1.98) (end 4.5 12.48) (layer F.SilkS) (width 0.12)) 38 | (fp_line (start -4.5 1.98) (end -4.5 12.48) (layer F.SilkS) (width 0.12)) 39 | (fp_line (start -4.5 12.48) (end -4.5 2.08) (layer F.Fab) (width 0.1)) 40 | (fp_line (start -5 12.98) (end -5 -1.42) (layer F.CrtYd) (width 0.05)) 41 | (pad T thru_hole circle (at 0 11.4 180) (size 2.13 2.13) (drill 1.43) (layers *.Cu *.Mask)) 42 | (pad S thru_hole rect (at 0 0 180) (size 1.93 1.83) (drill 1.22) (layers *.Cu *.Mask)) 43 | (pad TN thru_hole circle (at 0 3.1 180) (size 2.13 2.13) (drill 1.42) (layers *.Cu *.Mask)) 44 | (model ${KISYS3DMOD}/Connector_Audio.3dshapes/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical.wrl 45 | (at (xyz 0 0 0)) 46 | (scale (xyz 1 1 1)) 47 | (rotate (xyz 0 0 0)) 48 | ) 49 | (model /home/timcaldwell/projects/kicad-3dmodels/thonkicon-wqp-pj398sm-1.snapshot.5/Thonkicon.step 50 | (offset (xyz 4 -2.5 8)) 51 | (scale (xyz 1 1 1)) 52 | (rotate (xyz 0 0 180)) 53 | ) 54 | ) 55 | -------------------------------------------------------------------------------- /hardware/lib_fp.pretty/tht_rca_vertical.kicad_mod: -------------------------------------------------------------------------------- 1 | (module tht_rca_vertical (layer F.Cu) (tedit 61F778FC) 2 | (descr "DC POWER JACK

Source: DCJ0202.pdf") 3 | (fp_text reference rca (at -2.84404 -6.24388) (layer F.SilkS) 4 | (effects (font (size 1.00143 1.00143) (thickness 0.15))) 5 | ) 6 | (fp_text value VAL** (at -1.67672 6.32154) (layer F.SilkS) 7 | (effects (font (size 1.00104 1.00104) (thickness 0.15))) 8 | ) 9 | (fp_circle (center -7.4 0) (end -7.2 0) (layer F.SilkS) (width 0.4)) 10 | (fp_line (start -5.35 -3.135) (end -5.35 3.135) (layer Eco2.User) (width 0.127)) 11 | (fp_line (start 5.35 3.135) (end 5.35 -3.135) (layer Eco2.User) (width 0.127)) 12 | (fp_line (start 5.35 -3.135) (end 3.884 -3.135) (layer Eco2.User) (width 0.127)) 13 | (fp_line (start -3.884 -3.135) (end -5.35 -3.135) (layer Eco2.User) (width 0.127)) 14 | (fp_line (start -3.884 3.135) (end -5.35 3.135) (layer Eco2.User) (width 0.127)) 15 | (fp_line (start 5.35 3.135) (end 3.884 3.135) (layer Eco2.User) (width 0.127)) 16 | (fp_line (start 5.35 -3.135) (end 3.884 -3.135) (layer F.SilkS) (width 0.127)) 17 | (fp_line (start -3.884 -3.135) (end -5.35 -3.135) (layer F.SilkS) (width 0.127)) 18 | (fp_line (start -3.884 3.135) (end -5.35 3.135) (layer F.SilkS) (width 0.127)) 19 | (fp_line (start 5.35 3.135) (end 3.884 3.135) (layer F.SilkS) (width 0.127)) 20 | (fp_line (start -5.6 -3.385) (end -5.6 -1.7) (layer Eco1.User) (width 0.05)) 21 | (fp_line (start -5.6 1.75) (end -5.6 3.385) (layer Eco1.User) (width 0.05)) 22 | (fp_line (start 5.6 3.385) (end 5.6 1.7) (layer Eco1.User) (width 0.05)) 23 | (fp_line (start 5.6 -1.75) (end 5.6 -3.385) (layer Eco1.User) (width 0.05)) 24 | (fp_line (start 5.6 -3.385) (end 3.895 -3.385) (layer Eco1.User) (width 0.05)) 25 | (fp_line (start -3.903 -3.385) (end -5.6 -3.385) (layer Eco1.User) (width 0.05)) 26 | (fp_line (start -5.6 -3.385) (end -5.605 -3.385) (layer Eco1.User) (width 0.05)) 27 | (fp_line (start -3.901 3.385) (end -5.6 3.385) (layer Eco1.User) (width 0.05)) 28 | (fp_line (start 5.6 3.385) (end 3.904 3.385) (layer Eco1.User) (width 0.05)) 29 | (fp_line (start 5.6 -1.75) (end 6.95 -1.75) (layer Eco1.User) (width 0.05)) 30 | (fp_line (start 6.95 -1.75) (end 6.95 1.7) (layer Eco1.User) (width 0.05)) 31 | (fp_line (start 6.95 1.7) (end 5.6 1.7) (layer Eco1.User) (width 0.05)) 32 | (fp_line (start -5.6 -1.7) (end -6.9 -1.7) (layer Eco1.User) (width 0.05)) 33 | (fp_line (start -6.9 -1.7) (end -6.9 1.75) (layer Eco1.User) (width 0.05)) 34 | (fp_line (start -6.9 1.75) (end -5.6 1.75) (layer Eco1.User) (width 0.05)) 35 | (fp_line (start -5.35 1.765) (end -5.35 3.135) (layer F.SilkS) (width 0.127)) 36 | (fp_line (start -5.35 -3.135) (end -5.35 -1.765) (layer F.SilkS) (width 0.127)) 37 | (fp_line (start 5.35 -3.135) (end 5.35 -1.765) (layer F.SilkS) (width 0.127)) 38 | (fp_line (start 5.35 1.765) (end 5.35 3.135) (layer F.SilkS) (width 0.127)) 39 | (fp_arc (start 0 0.013851) (end 3.884 -3.135) (angle -101.9) (layer Eco2.User) (width 0.127)) 40 | (fp_arc (start 0 -0.013851) (end -3.884 3.135) (angle -101.9) (layer Eco2.User) (width 0.127)) 41 | (fp_arc (start 0 0.013851) (end 3.884 -3.135) (angle -101.9) (layer F.SilkS) (width 0.127)) 42 | (fp_arc (start 0 -0.013851) (end -3.884 3.135) (angle -101.9) (layer F.SilkS) (width 0.127)) 43 | (fp_arc (start -0.004 -0.223988) (end 3.895 -3.385) (angle -101.9) (layer Eco1.User) (width 0.05)) 44 | (fp_arc (start -0.002 0.223988) (end -3.901 3.385) (angle -101.9) (layer Eco1.User) (width 0.05)) 45 | (pad 2 thru_hole circle (at -5.15 0) (size 3 3) (drill 2) (layers *.Cu *.Mask)) 46 | (pad 2 thru_hole circle (at 5.15 0) (size 3 3) (drill 2) (layers *.Cu *.Mask)) 47 | (pad 1 thru_hole circle (at 0 -1.6) (size 2.55 2.55) (drill 1.7) (layers *.Cu *.Mask)) 48 | (model ${KIPRJMOD}/3dmodels/rca_vertical.step 49 | (offset (xyz 0 0 -5)) 50 | (scale (xyz 1 1 1)) 51 | (rotate (xyz 90 90 180)) 52 | ) 53 | (model /home/timcaldwell/projects/kicad-3dmodels/CUI_DEVICES_RCJ-024/CUI_DEVICES_RCJ-024.step 54 | (offset (xyz 0 -0.5 -4)) 55 | (scale (xyz 1 1 1)) 56 | (rotate (xyz 0 90 -90)) 57 | ) 58 | ) 59 | -------------------------------------------------------------------------------- /hardware/lib_fp.pretty/tht_vertical_din5.kicad_mod: -------------------------------------------------------------------------------- 1 | (module tht_vertical_din5 (layer F.Cu) (tedit 61F77A60) 2 | (fp_text reference J5 (at -0.5 0 -270) (layer F.SilkS) 3 | (effects (font (size 1.00746 1.00746) (thickness 0.15))) 4 | ) 5 | (fp_text value tht_vertical_din5 (at -0.60531 10.288) (layer F.SilkS) 6 | (effects (font (size 1.00702 1.00702) (thickness 0.05))) 7 | ) 8 | (fp_circle (center 0 0) (end 8 0) (layer F.SilkS) (width 0.127)) 9 | (fp_circle (center 0 8.919) (end 0.1 8.919) (layer F.SilkS) (width 0.3)) 10 | (fp_line (start 0 0) (end -3.89 -3.89) (layer Dwgs.User) (width 0.05)) 11 | (fp_circle (center 0 0) (end 5.5 0) (layer Dwgs.User) (width 0.05)) 12 | (fp_circle (center 0 0) (end 5.9 0) (layer Dwgs.User) (width 0.127)) 13 | (fp_circle (center 0 0) (end 8.25 0) (layer Eco1.User) (width 0.05)) 14 | (fp_circle (center 0 0) (end 8 0) (layer Dwgs.User) (width 0.127)) 15 | (pad 3 thru_hole circle (at 0 -5.5) (size 2.1 2.1) (drill 1.4) (layers *.Cu *.Mask)) 16 | (pad 1 thru_hole rect (at 0 5.5) (size 2.1 2.1) (drill 1.4) (layers *.Cu *.Mask)) 17 | (pad 2 thru_hole circle (at -5.5 0) (size 2.1 2.1) (drill 1.4) (layers *.Cu *.Mask)) 18 | (pad S thru_hole circle (at 4.5 0) (size 2.1 2.1) (drill 1.4) (layers *.Cu *.Mask)) 19 | (pad 4 thru_hole circle (at -3.89 3.89) (size 2.1 2.1) (drill 1.4) (layers *.Cu *.Mask)) 20 | (pad 5 thru_hole circle (at -3.89 -3.89) (size 2.1 2.1) (drill 1.4) (layers *.Cu *.Mask)) 21 | (model "/home/timcaldwell/projects/kicad-3dmodels/din5_sd-50bv/MIDI DIN 5 v7.step" 22 | (offset (xyz 0 0 -2.5)) 23 | (scale (xyz 1 1 1)) 24 | (rotate (xyz -90 0 0)) 25 | ) 26 | ) 27 | -------------------------------------------------------------------------------- /hardware/lib_fp.pretty/tht_vertical_potentiometer.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "tht_vertical_potentiometer" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 61F777D4) 4 | (descr "Potentiometer, horizontally mounted, Omeg PC16PU, Omeg PC16PU, Omeg PC16PU, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GH/249GH Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148A/149A Single with mounting plates, Vishay/Spectrol 148/149 Double, Vishay/Spectrol 148A/149A Double with mounting plates, Piher PC-16 Single, Piher PC-16 Single, Piher PC-16 Single, Piher PC-16SV Single, Piher PC-16 Double, Piher PC-16 Triple, Piher T16H Single, Piher T16L Single, Piher T16H Double, Alps RK163 Single, Alps RK163 Double, Alps RK097 Single, Alps RK097 Double, Bourns PTV09A-2 Single with mounting sleve Single, Bourns PTV09A-1 with mounting sleve Single, Bourns PRS11S Single, Alps RK09K Single with mounting sleve Single, Alps RK09K with mounting sleve Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09D1130C1B.html") 5 | (tags "Potentiometer horizontal Omeg PC16PU Omeg PC16PU Omeg PC16PU Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GH/249GH Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148A/149A Single with mounting plates Vishay/Spectrol 148/149 Double Vishay/Spectrol 148A/149A Double with mounting plates Piher PC-16 Single Piher PC-16 Single Piher PC-16 Single Piher PC-16SV Single Piher PC-16 Double Piher PC-16 Triple Piher T16H Single Piher T16L Single Piher T16H Double Alps RK163 Single Alps RK163 Double Alps RK097 Single Alps RK097 Double Bourns PTV09A-2 Single with mounting sleve Single Bourns PTV09A-1 with mounting sleve Single Bourns PRS11S Single Alps RK09K Single with mounting sleve Single Alps RK09K with mounting sleve Single") 6 | (attr through_hole) 7 | (fp_text reference "RV2" (at 2.5 0.5 -270) (layer "F.SilkS") 8 | (effects (font (size 1 1) (thickness 0.15))) 9 | (tstamp 1c222724-bc7c-4c84-b7e1-717621c5487e) 10 | ) 11 | (fp_text value "POT_IN_1" (at 6.05 5.15) (layer "F.Fab") 12 | (effects (font (size 1 1) (thickness 0.15))) 13 | (tstamp 424b07d8-1c7d-46d4-aef8-a503abfcaec3) 14 | ) 15 | (fp_line (start 0.94 0.825) (end 0.94 2.46) (layer "F.SilkS") (width 0.12) (tstamp 1acab943-1129-4e94-bdf5-66775e188ae1)) 16 | (fp_line (start 0.94 -4.175) (end 0.94 -3.325) (layer "F.SilkS") (width 0.12) (tstamp 29698152-320d-4905-918d-a6b66dddba1a)) 17 | (fp_line (start 0.94 -1.675) (end 0.94 -0.825) (layer "F.SilkS") (width 0.12) (tstamp 337e82dd-e205-48b7-acc1-60325cd3b3df)) 18 | (fp_line (start 13.06 -7.461) (end 13.06 2.46) (layer "F.SilkS") (width 0.12) (tstamp 33c02b0f-7b68-4b34-926c-bf7248d682bf)) 19 | (fp_line (start 0.94 -7.461) (end 4.806 -7.461) (layer "F.SilkS") (width 0.12) (tstamp abaccd29-54d2-45bc-986d-ac76c43b523d)) 20 | (fp_line (start 9.195 -7.461) (end 13.06 -7.461) (layer "F.SilkS") (width 0.12) (tstamp b7073c8b-de70-491f-b384-57222855e846)) 21 | (fp_line (start 0.94 2.46) (end 4.806 2.46) (layer "F.SilkS") (width 0.12) (tstamp cb9e19ec-3462-4e59-af4b-605f71868ce3)) 22 | (fp_line (start 0.94 -7.461) (end 0.94 -5.825) (layer "F.SilkS") (width 0.12) (tstamp da5195d0-145f-4b10-9e8b-bf0d3c6b7500)) 23 | (fp_line (start 9.195 2.46) (end 13.06 2.46) (layer "F.SilkS") (width 0.12) (tstamp f16a886d-928f-46af-9e74-5440017d03b0)) 24 | (fp_arc (start 8.671982 -5.262432) (mid 10.500762 -2.500553) (end 8.673 0.262) (layer "F.SilkS") (width 0.12) (tstamp 321ff93e-45fb-4309-8d5c-3cd0c4ea7ddf)) 25 | (fp_arc (start 5.571705 -0.202247) (mid 4.500335 -2.500192) (end 5.572 -4.798) (layer "F.SilkS") (width 0.12) (tstamp 49adb4b0-19ee-45d5-bfb3-bd6e41a255c5)) 26 | (fp_line (start -1.15 4.15) (end 13.25 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 24fe8ba7-7c86-4224-b8dc-5b378927f5fd)) 27 | (fp_line (start 13.25 4.15) (end 13.25 -9.15) (layer "F.CrtYd") (width 0.05) (tstamp 2af5db0e-84f5-435f-9347-198f3d542701)) 28 | (fp_line (start 13.25 -9.15) (end -1.15 -9.15) (layer "F.CrtYd") (width 0.05) (tstamp c2d4da4f-5707-46ae-8b92-af0f92280ed9)) 29 | (fp_line (start -1.15 -9.15) (end -1.15 4.15) (layer "F.CrtYd") (width 0.05) (tstamp d94b8452-4fc8-47e0-b003-d4c144d5e4c5)) 30 | (fp_line (start 13 2.4) (end 13 -7.4) (layer "F.Fab") (width 0.1) (tstamp 2e885732-c4e6-4b25-9092-f8558ab691f7)) 31 | (fp_line (start 1 2.4) (end 13 2.4) (layer "F.Fab") (width 0.1) (tstamp a403403c-e258-4451-a913-26c34a6047b3)) 32 | (fp_line (start 1 -7.4) (end 1 2.4) (layer "F.Fab") (width 0.1) (tstamp ca907a4b-73ab-412a-9c15-1b90fc7c62ea)) 33 | (fp_line (start 13 -7.4) (end 1 -7.4) (layer "F.Fab") (width 0.1) (tstamp cef11178-e301-4ae8-9231-fe712e031178)) 34 | (fp_circle (center 7.5 -2.5) (end 10.75 -2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9c7e9aaf-5d42-4806-8a79-5702e8bf7be9)) 35 | (fp_circle (center 7.5 -2.5) (end 10.5 -2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp bcc50589-cbe3-4f7c-8e03-e30cc863e565)) 36 | (pad "" np_thru_hole circle (at 7 -6.9) (size 4 4) (drill 2.2) (layers F&B.Cu *.Mask) (tstamp 3f5a3131-a054-4ca7-a30a-adb3b990b05c)) 37 | (pad "" np_thru_hole circle (at 7 1.9) (size 4 4) (drill 2.2) (layers F&B.Cu *.Mask) (tstamp 692c3df1-2592-4394-bfa2-e6db8b347e8b)) 38 | (pad "1" thru_hole circle (at 0 0) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask) (tstamp 3c546746-a69d-4991-805d-a030786ebba8)) 39 | (pad "2" thru_hole circle (at 0 -2.5) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask) (tstamp 8e744a9a-b2d1-44f5-851e-baadc63594bd)) 40 | (pad "3" thru_hole circle (at 0 -5) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask) (tstamp 4c03e767-4f50-4f7e-b433-0973a8908041)) 41 | (model "Potentiometers.3dshapes/Potentiometer_Alps_RK09K_Horizontal.wrl" 42 | (offset (xyz 0 0 0)) 43 | (scale (xyz 0.393701 0.393701 0.393701)) 44 | (rotate (xyz 0 0 0)) 45 | ) 46 | (model "/home/timcaldwell/projects/kicad-3dmodels/9mm-potentiometer-tall-trimmer-1.snapshot.4/R-0904N-L-25KCv2.step" 47 | (offset (xyz 7 2.5 0)) 48 | (scale (xyz 1 1 1)) 49 | (rotate (xyz 0 0 -90)) 50 | ) 51 | ) 52 | -------------------------------------------------------------------------------- /hardware/rescue-backup/incur_board-2021-03-27-12-47-42.pro: -------------------------------------------------------------------------------- 1 | update=4/08/2019 3:24:56 p.m. 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir= 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=switches 35 | LibName4=relays 36 | LibName5=motors 37 | LibName6=transistors 38 | LibName7=conn 39 | LibName8=linear 40 | LibName9=regul 41 | LibName10=74xx 42 | LibName11=cmos4000 43 | LibName12=adc-dac 44 | LibName13=memory 45 | LibName14=xilinx 46 | LibName15=microcontrollers 47 | LibName16=dsp 48 | LibName17=microchip 49 | LibName18=analog_switches 50 | LibName19=motorola 51 | LibName20=texas 52 | LibName21=intel 53 | LibName22=audio 54 | LibName23=interface 55 | LibName24=digital-audio 56 | LibName25=philips 57 | LibName26=display 58 | LibName27=cypress 59 | LibName28=siliconi 60 | LibName29=opto 61 | LibName30=atmel 62 | LibName31=contrib 63 | LibName32=valves 64 | LibName33=Isolator 65 | LibName34=C:/Program Files/KiCad/share/kicad/modules/RCJ-024/RCJ-024 66 | LibName35=C:/Users/Tim/Documents/kicad/custom_parts/custom_audio_jack 67 | [schematic_editor] 68 | version=1 69 | PageLayoutDescrFile= 70 | PlotDirectoryName=C:/Users/Tim/Documents/kicad/incur/ 71 | SubpartIdSeparator=0 72 | SubpartFirstId=65 73 | NetFmtName= 74 | SpiceForceRefPrefix=0 75 | SpiceUseNetNumbers=0 76 | LabSize=60 77 | -------------------------------------------------------------------------------- /hardware/rescue-backup/incur_board-2021-03-27-12-47-42.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:switches 5 | LIBS:relays 6 | LIBS:motors 7 | LIBS:transistors 8 | LIBS:conn 9 | LIBS:linear 10 | LIBS:regul 11 | LIBS:74xx 12 | LIBS:cmos4000 13 | LIBS:adc-dac 14 | LIBS:memory 15 | LIBS:xilinx 16 | LIBS:microcontrollers 17 | LIBS:dsp 18 | LIBS:microchip 19 | LIBS:analog_switches 20 | LIBS:motorola 21 | LIBS:texas 22 | LIBS:intel 23 | LIBS:audio 24 | LIBS:interface 25 | LIBS:digital-audio 26 | LIBS:philips 27 | LIBS:display 28 | LIBS:cypress 29 | LIBS:siliconi 30 | LIBS:opto 31 | LIBS:atmel 32 | LIBS:contrib 33 | LIBS:valves 34 | LIBS:RCJ-024 35 | LIBS:custom_audio_jack 36 | LIBS:incur_board-cache 37 | EELAYER 25 0 38 | EELAYER END 39 | $Descr A4 11693 8268 40 | encoding utf-8 41 | Sheet 1 1 42 | Title "i_n_c_u_r board" 43 | Date "2019-06-01" 44 | Rev "v5" 45 | Comp "cyberboy666 & user43368831" 46 | Comment1 "created by tim caldwell" 47 | Comment2 "CC-BY-SA" 48 | Comment3 "" 49 | Comment4 "" 50 | $EndDescr 51 | $Comp 52 | L DIN-5_180degree J5 53 | U 1 1 5BC53796 54 | P 6250 1125 55 | F 0 "J5" H 6375 1350 50 0000 C CNN 56 | F 1 "MIDI_DIN_IN" H 6250 875 50 0000 C CNN 57 | F 2 "SD-50BV:CUI_SD-50BV" H 6250 1125 50 0001 C CNN 58 | F 3 "" H 6250 1125 50 0001 C CNN 59 | 1 6250 1125 60 | 1 0 0 -1 61 | $EndComp 62 | $Comp 63 | L POT RV1 64 | U 1 1 5BC53B0C 65 | P 3950 2875 66 | F 0 "RV1" V 3775 2875 50 0000 C CNN 67 | F 1 "POT_IN_0" V 3850 2875 50 0000 C CNN 68 | F 2 "Potentiometers:Potentiometer_Alps_RK09K_Horizontal" H 3950 2875 50 0001 C CNN 69 | F 3 "" H 3950 2875 50 0001 C CNN 70 | 1 3950 2875 71 | 1 0 0 -1 72 | $EndComp 73 | $Comp 74 | L MCP3208 U1 75 | U 1 1 5BC569F6 76 | P 6475 3725 77 | F 0 "U1" H 6275 4250 50 0000 R CNN 78 | F 1 "MCP3208" H 6275 4175 50 0000 R CNN 79 | F 2 "Housings_DIP:DIP-16_W7.62mm_LongPads" H 6575 3825 50 0001 C CNN 80 | F 3 "" H 6575 3825 50 0001 C CNN 81 | 1 6475 3725 82 | 1 0 0 -1 83 | $EndComp 84 | $Comp 85 | L 6N138 U2 86 | U 1 1 5BC57C89 87 | P 7300 1775 88 | F 0 "U2" H 7140 2125 50 0000 C CNN 89 | F 1 "6N138" H 7390 2125 50 0000 C CNN 90 | F 2 "Housings_DIP:DIP-8_W7.62mm_LongPads" H 7590 1475 50 0001 C CNN 91 | F 3 "" H 7590 1475 50 0001 C CNN 92 | 1 7300 1775 93 | 1 0 0 -1 94 | $EndComp 95 | $Comp 96 | L R R5 97 | U 1 1 5BC58A3C 98 | P 6275 1525 99 | F 0 "R5" V 6355 1525 50 0000 C CNN 100 | F 1 "220" V 6275 1525 50 0000 C CNN 101 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 6205 1525 50 0001 C CNN 102 | F 3 "" H 6275 1525 50 0001 C CNN 103 | 1 6275 1525 104 | 0 1 1 0 105 | $EndComp 106 | $Comp 107 | L R R7 108 | U 1 1 5BC58E2E 109 | P 8325 1575 110 | F 0 "R7" V 8405 1575 50 0000 C CNN 111 | F 1 "470" V 8325 1575 50 0000 C CNN 112 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 8255 1575 50 0001 C CNN 113 | F 3 "" H 8325 1575 50 0001 C CNN 114 | 1 8325 1575 115 | 0 1 1 0 116 | $EndComp 117 | $Comp 118 | L R R6 119 | U 1 1 5BC58F88 120 | P 8025 2125 121 | F 0 "R6" V 8105 2125 50 0000 C CNN 122 | F 1 "100K" V 8025 2125 50 0000 C CNN 123 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 7955 2125 50 0001 C CNN 124 | F 3 "" H 8025 2125 50 0001 C CNN 125 | 1 8025 2125 126 | -1 0 0 1 127 | $EndComp 128 | $Comp 129 | L D D9 130 | U 1 1 5BC591F2 131 | P 6675 1725 132 | F 0 "D9" H 6675 1825 50 0000 C CNN 133 | F 1 "1N4148" H 6675 1625 50 0000 C CNN 134 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 6675 1725 50 0001 C CNN 135 | F 3 "" H 6675 1725 50 0001 C CNN 136 | 1 6675 1725 137 | 0 1 1 0 138 | $EndComp 139 | $Comp 140 | L R R1 141 | U 1 1 5BC59626 142 | P 2275 1200 143 | F 0 "R1" V 2355 1200 50 0000 C CNN 144 | F 1 "1K" V 2275 1200 50 0000 C CNN 145 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 2205 1200 50 0001 C CNN 146 | F 3 "" H 2275 1200 50 0001 C CNN 147 | 1 2275 1200 148 | 0 1 1 0 149 | $EndComp 150 | $Comp 151 | L D D1 152 | U 1 1 5BC5A965 153 | P 1900 975 154 | F 0 "D1" H 1900 1075 50 0000 C CNN 155 | F 1 "BAT85" H 1900 875 50 0000 C CNN 156 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1900 975 50 0001 C CNN 157 | F 3 "" H 1900 975 50 0001 C CNN 158 | 1 1900 975 159 | 0 1 1 0 160 | $EndComp 161 | $Comp 162 | L D D2 163 | U 1 1 5BC5A9EA 164 | P 1900 1425 165 | F 0 "D2" H 1900 1525 50 0000 C CNN 166 | F 1 "BAT85" H 1900 1325 50 0000 C CNN 167 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1900 1425 50 0001 C CNN 168 | F 3 "" H 1900 1425 50 0001 C CNN 169 | 1 1900 1425 170 | 0 1 1 0 171 | $EndComp 172 | Text GLabel 2675 1200 2 60 Input ~ 0 173 | A_IN_0 174 | $Comp 175 | L GND #PWR01 176 | U 1 1 5BC60E2C 177 | P 1450 1800 178 | F 0 "#PWR01" H 1450 1550 50 0001 C CNN 179 | F 1 "GND" H 1450 1650 50 0000 C CNN 180 | F 2 "" H 1450 1800 50 0001 C CNN 181 | F 3 "" H 1450 1800 50 0001 C CNN 182 | 1 1450 1800 183 | 1 0 0 -1 184 | $EndComp 185 | $Comp 186 | L +5V #PWR02 187 | U 1 1 5BC62929 188 | P 3950 2475 189 | F 0 "#PWR02" H 3950 2325 50 0001 C CNN 190 | F 1 "+5V" H 3950 2615 50 0000 C CNN 191 | F 2 "" H 3950 2475 50 0001 C CNN 192 | F 3 "" H 3950 2475 50 0001 C CNN 193 | 1 3950 2475 194 | 1 0 0 -1 195 | $EndComp 196 | $Comp 197 | L GND #PWR03 198 | U 1 1 5BC62BE1 199 | P 3950 3275 200 | F 0 "#PWR03" H 3950 3025 50 0001 C CNN 201 | F 1 "GND" H 3950 3125 50 0000 C CNN 202 | F 2 "" H 3950 3275 50 0001 C CNN 203 | F 3 "" H 3950 3275 50 0001 C CNN 204 | 1 3950 3275 205 | 1 0 0 -1 206 | $EndComp 207 | Text GLabel 4475 2875 2 60 Input ~ 0 208 | A_IN_4 209 | $Comp 210 | L R R2 211 | U 1 1 5BC64EDC 212 | P 2300 2675 213 | F 0 "R2" V 2380 2675 50 0000 C CNN 214 | F 1 "1K" V 2300 2675 50 0000 C CNN 215 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 2230 2675 50 0001 C CNN 216 | F 3 "" H 2300 2675 50 0001 C CNN 217 | 1 2300 2675 218 | 0 1 1 0 219 | $EndComp 220 | $Comp 221 | L D D3 222 | U 1 1 5BC64EE2 223 | P 1925 2450 224 | F 0 "D3" H 1925 2550 50 0000 C CNN 225 | F 1 "BAT85" H 1925 2350 50 0000 C CNN 226 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1925 2450 50 0001 C CNN 227 | F 3 "" H 1925 2450 50 0001 C CNN 228 | 1 1925 2450 229 | 0 1 1 0 230 | $EndComp 231 | $Comp 232 | L D D4 233 | U 1 1 5BC64EE8 234 | P 1925 2900 235 | F 0 "D4" H 1925 3000 50 0000 C CNN 236 | F 1 "BAT85" H 1925 2800 50 0000 C CNN 237 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1925 2900 50 0001 C CNN 238 | F 3 "" H 1925 2900 50 0001 C CNN 239 | 1 1925 2900 240 | 0 1 1 0 241 | $EndComp 242 | $Comp 243 | L +5V #PWR04 244 | U 1 1 5BC64EEE 245 | P 1925 2150 246 | F 0 "#PWR04" H 1925 2000 50 0001 C CNN 247 | F 1 "+5V" H 1925 2290 50 0000 C CNN 248 | F 2 "" H 1925 2150 50 0001 C CNN 249 | F 3 "" H 1925 2150 50 0001 C CNN 250 | 1 1925 2150 251 | 1 0 0 -1 252 | $EndComp 253 | Text GLabel 2700 2675 2 60 Input ~ 0 254 | A_IN_1 255 | $Comp 256 | L GND #PWR05 257 | U 1 1 5BC64EF5 258 | P 1475 3275 259 | F 0 "#PWR05" H 1475 3025 50 0001 C CNN 260 | F 1 "GND" H 1475 3125 50 0000 C CNN 261 | F 2 "" H 1475 3275 50 0001 C CNN 262 | F 3 "" H 1475 3275 50 0001 C CNN 263 | 1 1475 3275 264 | 1 0 0 -1 265 | $EndComp 266 | $Comp 267 | L R R3 268 | U 1 1 5BC654BC 269 | P 2300 4175 270 | F 0 "R3" V 2380 4175 50 0000 C CNN 271 | F 1 "1K" V 2300 4175 50 0000 C CNN 272 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 2230 4175 50 0001 C CNN 273 | F 3 "" H 2300 4175 50 0001 C CNN 274 | 1 2300 4175 275 | 0 1 1 0 276 | $EndComp 277 | $Comp 278 | L D D5 279 | U 1 1 5BC654C2 280 | P 1925 3950 281 | F 0 "D5" H 1925 4050 50 0000 C CNN 282 | F 1 "BAT85" H 1925 3850 50 0000 C CNN 283 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1925 3950 50 0001 C CNN 284 | F 3 "" H 1925 3950 50 0001 C CNN 285 | 1 1925 3950 286 | 0 1 1 0 287 | $EndComp 288 | $Comp 289 | L D D6 290 | U 1 1 5BC654C8 291 | P 1925 4400 292 | F 0 "D6" H 1925 4500 50 0000 C CNN 293 | F 1 "BAT85" H 1925 4300 50 0000 C CNN 294 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1925 4400 50 0001 C CNN 295 | F 3 "" H 1925 4400 50 0001 C CNN 296 | 1 1925 4400 297 | 0 1 1 0 298 | $EndComp 299 | $Comp 300 | L +5V #PWR06 301 | U 1 1 5BC654CE 302 | P 1925 3650 303 | F 0 "#PWR06" H 1925 3500 50 0001 C CNN 304 | F 1 "+5V" H 1925 3790 50 0000 C CNN 305 | F 2 "" H 1925 3650 50 0001 C CNN 306 | F 3 "" H 1925 3650 50 0001 C CNN 307 | 1 1925 3650 308 | 1 0 0 -1 309 | $EndComp 310 | Text GLabel 2700 4175 2 60 Input ~ 0 311 | A_IN_2 312 | $Comp 313 | L GND #PWR07 314 | U 1 1 5BC654D5 315 | P 1475 4775 316 | F 0 "#PWR07" H 1475 4525 50 0001 C CNN 317 | F 1 "GND" H 1475 4625 50 0000 C CNN 318 | F 2 "" H 1475 4775 50 0001 C CNN 319 | F 3 "" H 1475 4775 50 0001 C CNN 320 | 1 1475 4775 321 | 1 0 0 -1 322 | $EndComp 323 | $Comp 324 | L R R4 325 | U 1 1 5BC654EA 326 | P 2325 5650 327 | F 0 "R4" V 2405 5650 50 0000 C CNN 328 | F 1 "1K" V 2325 5650 50 0000 C CNN 329 | F 2 "Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" V 2255 5650 50 0001 C CNN 330 | F 3 "" H 2325 5650 50 0001 C CNN 331 | 1 2325 5650 332 | 0 1 1 0 333 | $EndComp 334 | $Comp 335 | L D D7 336 | U 1 1 5BC654F0 337 | P 1950 5425 338 | F 0 "D7" H 1950 5525 50 0000 C CNN 339 | F 1 "BAT85" H 1950 5325 50 0000 C CNN 340 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1950 5425 50 0001 C CNN 341 | F 3 "" H 1950 5425 50 0001 C CNN 342 | 1 1950 5425 343 | 0 1 1 0 344 | $EndComp 345 | $Comp 346 | L D D8 347 | U 1 1 5BC654F6 348 | P 1950 5875 349 | F 0 "D8" H 1950 5975 50 0000 C CNN 350 | F 1 "BAT85" H 1950 5775 50 0000 C CNN 351 | F 2 "Diodes_THT:D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp" H 1950 5875 50 0001 C CNN 352 | F 3 "" H 1950 5875 50 0001 C CNN 353 | 1 1950 5875 354 | 0 1 1 0 355 | $EndComp 356 | $Comp 357 | L +5V #PWR08 358 | U 1 1 5BC654FC 359 | P 1950 5125 360 | F 0 "#PWR08" H 1950 4975 50 0001 C CNN 361 | F 1 "+5V" H 1950 5265 50 0000 C CNN 362 | F 2 "" H 1950 5125 50 0001 C CNN 363 | F 3 "" H 1950 5125 50 0001 C CNN 364 | 1 1950 5125 365 | 1 0 0 -1 366 | $EndComp 367 | Text GLabel 2725 5650 2 60 Input ~ 0 368 | A_IN_3 369 | $Comp 370 | L GND #PWR09 371 | U 1 1 5BC65503 372 | P 1500 6250 373 | F 0 "#PWR09" H 1500 6000 50 0001 C CNN 374 | F 1 "GND" H 1500 6100 50 0000 C CNN 375 | F 2 "" H 1500 6250 50 0001 C CNN 376 | F 3 "" H 1500 6250 50 0001 C CNN 377 | 1 1500 6250 378 | 1 0 0 -1 379 | $EndComp 380 | $Comp 381 | L POT RV2 382 | U 1 1 5BC66915 383 | P 3950 4150 384 | F 0 "RV2" V 3775 4150 50 0000 C CNN 385 | F 1 "POT_IN_1" V 3850 4150 50 0000 C CNN 386 | F 2 "Potentiometers:Potentiometer_Alps_RK09K_Horizontal" H 3950 4150 50 0001 C CNN 387 | F 3 "" H 3950 4150 50 0001 C CNN 388 | 1 3950 4150 389 | 1 0 0 -1 390 | $EndComp 391 | $Comp 392 | L +5V #PWR010 393 | U 1 1 5BC6691B 394 | P 3950 3750 395 | F 0 "#PWR010" H 3950 3600 50 0001 C CNN 396 | F 1 "+5V" H 3950 3890 50 0000 C CNN 397 | F 2 "" H 3950 3750 50 0001 C CNN 398 | F 3 "" H 3950 3750 50 0001 C CNN 399 | 1 3950 3750 400 | 1 0 0 -1 401 | $EndComp 402 | $Comp 403 | L GND #PWR011 404 | U 1 1 5BC66921 405 | P 3950 4550 406 | F 0 "#PWR011" H 3950 4300 50 0001 C CNN 407 | F 1 "GND" H 3950 4400 50 0000 C CNN 408 | F 2 "" H 3950 4550 50 0001 C CNN 409 | F 3 "" H 3950 4550 50 0001 C CNN 410 | 1 3950 4550 411 | 1 0 0 -1 412 | $EndComp 413 | Text GLabel 4475 4150 2 60 Input ~ 0 414 | A_IN_5 415 | $Comp 416 | L POT RV3 417 | U 1 1 5BC669D1 418 | P 3950 5425 419 | F 0 "RV3" V 3775 5425 50 0000 C CNN 420 | F 1 "POT_IN_2" V 3850 5425 50 0000 C CNN 421 | F 2 "Potentiometers:Potentiometer_Alps_RK09K_Horizontal" H 3950 5425 50 0001 C CNN 422 | F 3 "" H 3950 5425 50 0001 C CNN 423 | 1 3950 5425 424 | 1 0 0 -1 425 | $EndComp 426 | $Comp 427 | L +5V #PWR012 428 | U 1 1 5BC669D7 429 | P 3950 5025 430 | F 0 "#PWR012" H 3950 4875 50 0001 C CNN 431 | F 1 "+5V" H 3950 5165 50 0000 C CNN 432 | F 2 "" H 3950 5025 50 0001 C CNN 433 | F 3 "" H 3950 5025 50 0001 C CNN 434 | 1 3950 5025 435 | 1 0 0 -1 436 | $EndComp 437 | $Comp 438 | L GND #PWR013 439 | U 1 1 5BC669DD 440 | P 3950 5825 441 | F 0 "#PWR013" H 3950 5575 50 0001 C CNN 442 | F 1 "GND" H 3950 5675 50 0000 C CNN 443 | F 2 "" H 3950 5825 50 0001 C CNN 444 | F 3 "" H 3950 5825 50 0001 C CNN 445 | 1 3950 5825 446 | 1 0 0 -1 447 | $EndComp 448 | Text GLabel 4475 5425 2 60 Input ~ 0 449 | A_IN_6 450 | $Comp 451 | L POT RV4 452 | U 1 1 5BC669E7 453 | P 3950 6700 454 | F 0 "RV4" V 3775 6700 50 0000 C CNN 455 | F 1 "POT_IN_3" V 3850 6700 50 0000 C CNN 456 | F 2 "Potentiometers:Potentiometer_Alps_RK09K_Horizontal" H 3950 6700 50 0001 C CNN 457 | F 3 "" H 3950 6700 50 0001 C CNN 458 | 1 3950 6700 459 | 1 0 0 -1 460 | $EndComp 461 | $Comp 462 | L +5V #PWR014 463 | U 1 1 5BC669ED 464 | P 3950 6300 465 | F 0 "#PWR014" H 3950 6150 50 0001 C CNN 466 | F 1 "+5V" H 3950 6440 50 0000 C CNN 467 | F 2 "" H 3950 6300 50 0001 C CNN 468 | F 3 "" H 3950 6300 50 0001 C CNN 469 | 1 3950 6300 470 | 1 0 0 -1 471 | $EndComp 472 | $Comp 473 | L GND #PWR015 474 | U 1 1 5BC669F3 475 | P 3950 7100 476 | F 0 "#PWR015" H 3950 6850 50 0001 C CNN 477 | F 1 "GND" H 3950 6950 50 0000 C CNN 478 | F 2 "" H 3950 7100 50 0001 C CNN 479 | F 3 "" H 3950 7100 50 0001 C CNN 480 | 1 3950 7100 481 | 1 0 0 -1 482 | $EndComp 483 | Text GLabel 4475 6700 2 60 Input ~ 0 484 | A_IN_7 485 | Text GLabel 5575 3425 0 39 Input ~ 0 486 | A_IN_0 487 | Text GLabel 5575 3525 0 39 Input ~ 0 488 | A_IN_1 489 | Text GLabel 5575 3625 0 39 Input ~ 0 490 | A_IN_2 491 | Text GLabel 5575 3725 0 39 Input ~ 0 492 | A_IN_3 493 | Text GLabel 5575 3825 0 39 Input ~ 0 494 | A_IN_4 495 | Text GLabel 5575 3925 0 39 Input ~ 0 496 | A_IN_5 497 | Text GLabel 5575 4025 0 39 Input ~ 0 498 | A_IN_6 499 | Text GLabel 5575 4125 0 39 Input ~ 0 500 | A_IN_7 501 | $Comp 502 | L GND #PWR016 503 | U 1 1 5BC6B971 504 | P 6675 4600 505 | F 0 "#PWR016" H 6675 4350 50 0001 C CNN 506 | F 1 "GND" H 6675 4450 50 0000 C CNN 507 | F 2 "" H 6675 4600 50 0001 C CNN 508 | F 3 "" H 6675 4600 50 0001 C CNN 509 | 1 6675 4600 510 | 1 0 0 -1 511 | $EndComp 512 | $Comp 513 | L +5V #PWR017 514 | U 1 1 5BC6BECB 515 | P 6650 2925 516 | F 0 "#PWR017" H 6650 2775 50 0001 C CNN 517 | F 1 "+5V" H 6650 3065 50 0000 C CNN 518 | F 2 "" H 6650 2925 50 0001 C CNN 519 | F 3 "" H 6650 2925 50 0001 C CNN 520 | 1 6650 2925 521 | 1 0 0 -1 522 | $EndComp 523 | $Comp 524 | L +3V3 #PWR018 525 | U 1 1 5BC6DADF 526 | P 7850 1275 527 | F 0 "#PWR018" H 7850 1125 50 0001 C CNN 528 | F 1 "+3V3" H 7850 1415 50 0000 C CNN 529 | F 2 "" H 7850 1275 50 0001 C CNN 530 | F 3 "" H 7850 1275 50 0001 C CNN 531 | 1 7850 1275 532 | 1 0 0 -1 533 | $EndComp 534 | Text GLabel 8900 1900 2 60 Input ~ 0 535 | RX 536 | $Comp 537 | L GND #PWR019 538 | U 1 1 5BC6E144 539 | P 7850 2500 540 | F 0 "#PWR019" H 7850 2250 50 0001 C CNN 541 | F 1 "GND" H 7850 2350 50 0000 C CNN 542 | F 2 "" H 7850 2500 50 0001 C CNN 543 | F 3 "" H 7850 2500 50 0001 C CNN 544 | 1 7850 2500 545 | 1 0 0 -1 546 | $EndComp 547 | Text GLabel 7325 3625 2 39 Input ~ 0 548 | CLK 549 | Text GLabel 7325 3725 2 39 Input ~ 0 550 | D_OUT 551 | Text GLabel 7325 3825 2 39 Input ~ 0 552 | D_IN 553 | Text GLabel 7325 3925 2 39 Input ~ 0 554 | CS 555 | $Comp 556 | L GND #PWR020 557 | U 1 1 5BC72ABB 558 | P 9300 5700 559 | F 0 "#PWR020" H 9300 5450 50 0001 C CNN 560 | F 1 "GND" H 9300 5550 50 0000 C CNN 561 | F 2 "" H 9300 5700 50 0001 C CNN 562 | F 3 "" H 9300 5700 50 0001 C CNN 563 | 1 9300 5700 564 | 1 0 0 -1 565 | $EndComp 566 | Text GLabel 8675 4075 0 39 Input ~ 0 567 | CLK 568 | Text GLabel 8675 3875 0 39 Input ~ 0 569 | D_OUT 570 | Text GLabel 8675 3975 0 39 Input ~ 0 571 | D_IN 572 | Text GLabel 8675 3575 0 39 Input ~ 0 573 | CS 574 | Text GLabel 10700 5075 2 39 Input ~ 0 575 | RX 576 | $Comp 577 | L +3V3 #PWR021 578 | U 1 1 5BC730AE 579 | P 9800 2850 580 | F 0 "#PWR021" H 9800 2700 50 0001 C CNN 581 | F 1 "+3V3" H 9800 2990 50 0000 C CNN 582 | F 2 "" H 9800 2850 50 0001 C CNN 583 | F 3 "" H 9800 2850 50 0001 C CNN 584 | 1 9800 2850 585 | 1 0 0 -1 586 | $EndComp 587 | $Comp 588 | L +5V #PWR022 589 | U 1 1 5BC815CC 590 | P 9500 2850 591 | F 0 "#PWR022" H 9500 2700 50 0001 C CNN 592 | F 1 "+5V" H 9500 2990 50 0000 C CNN 593 | F 2 "" H 9500 2850 50 0001 C CNN 594 | F 3 "" H 9500 2850 50 0001 C CNN 595 | 1 9500 2850 596 | 1 0 0 -1 597 | $EndComp 598 | NoConn ~ 6250 825 599 | $Comp 600 | L Raspberry_Pi_2_3 J8 601 | U 1 1 5C52F362 602 | P 9700 4275 603 | F 0 "J8" H 10400 3025 50 0000 C CNN 604 | F 1 "Raspberry_Pi_2_3" H 9300 5175 50 0000 C CNN 605 | F 2 "Pin_Headers:Pin_Header_Straight_2x20_Pitch2.54mm" H 10700 5525 50 0001 C CNN 606 | F 3 "" H 9750 4125 50 0001 C CNN 607 | 1 9700 4275 608 | 1 0 0 -1 609 | $EndComp 610 | $Comp 611 | L GND #PWR023 612 | U 1 1 5C531C10 613 | P 7600 5825 614 | F 0 "#PWR023" H 7600 5575 50 0001 C CNN 615 | F 1 "GND" H 7600 5675 50 0000 C CNN 616 | F 2 "" H 7600 5825 50 0001 C CNN 617 | F 3 "" H 7600 5825 50 0001 C CNN 618 | 1 7600 5825 619 | 1 0 0 -1 620 | $EndComp 621 | $Comp 622 | L Conn_01x01 J6 623 | U 1 1 5C531CE6 624 | P 6900 5425 625 | F 0 "J6" H 6900 5525 50 0000 C CNN 626 | F 1 "Conn_01x01" H 6900 5325 50 0000 C CNN 627 | F 2 "Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm" H 6900 5425 50 0001 C CNN 628 | F 3 "" H 6900 5425 50 0001 C CNN 629 | 1 6900 5425 630 | -1 0 0 1 631 | $EndComp 632 | NoConn ~ 8800 3675 633 | NoConn ~ 8800 3775 634 | NoConn ~ 8800 4175 635 | NoConn ~ 8800 4275 636 | NoConn ~ 8800 4375 637 | NoConn ~ 8800 4475 638 | NoConn ~ 8800 4575 639 | NoConn ~ 8800 4675 640 | NoConn ~ 8800 4975 641 | NoConn ~ 8800 5075 642 | NoConn ~ 9400 5575 643 | NoConn ~ 9500 5575 644 | NoConn ~ 9600 5575 645 | NoConn ~ 9700 5575 646 | NoConn ~ 9900 5575 647 | NoConn ~ 10000 5575 648 | NoConn ~ 9800 5575 649 | NoConn ~ 10600 4975 650 | NoConn ~ 10600 4775 651 | NoConn ~ 10600 4675 652 | NoConn ~ 10600 4475 653 | NoConn ~ 10600 4375 654 | NoConn ~ 10600 4275 655 | NoConn ~ 10600 4175 656 | NoConn ~ 10600 4075 657 | NoConn ~ 10600 3875 658 | NoConn ~ 10600 3775 659 | NoConn ~ 10600 3575 660 | NoConn ~ 10600 3475 661 | NoConn ~ 10600 3375 662 | NoConn ~ 9900 2975 663 | $Comp 664 | L PWR_FLAG #FLG024 665 | U 1 1 5C015DC5 666 | P 9300 5600 667 | F 0 "#FLG024" H 9300 5675 50 0001 C CNN 668 | F 1 "PWR_FLAG" V 9300 5750 50 0000 L CNN 669 | F 2 "" H 9300 5600 50 0001 C CNN 670 | F 3 "" H 9300 5600 50 0001 C CNN 671 | 1 9300 5600 672 | 0 -1 -1 0 673 | $EndComp 674 | $Comp 675 | L PWR_FLAG #FLG025 676 | U 1 1 5C015C23 677 | P 9425 2975 678 | F 0 "#FLG025" H 9425 3050 50 0001 C CNN 679 | F 1 "PWR_FLAG" V 9425 3125 50 0000 L CNN 680 | F 2 "" H 9425 2975 50 0001 C CNN 681 | F 3 "" H 9425 2975 50 0001 C CNN 682 | 1 9425 2975 683 | 0 -1 -1 0 684 | $EndComp 685 | Connection ~ 6675 1875 686 | Wire Wire Line 687 | 5650 1875 7000 1875 688 | Connection ~ 7850 2350 689 | Wire Wire Line 690 | 8025 2350 7850 2350 691 | Wire Wire Line 692 | 8025 2275 8025 2350 693 | Wire Wire Line 694 | 8025 1675 7600 1675 695 | Wire Wire Line 696 | 8025 1975 8025 1675 697 | Wire Wire Line 698 | 7850 1975 7600 1975 699 | Wire Wire Line 700 | 7850 1975 7850 2500 701 | Connection ~ 8600 1900 702 | Wire Wire Line 703 | 8600 1575 8600 1900 704 | Wire Wire Line 705 | 8475 1575 8600 1575 706 | Wire Wire Line 707 | 7600 1900 7600 1875 708 | Wire Wire Line 709 | 7600 1900 8900 1900 710 | Connection ~ 7850 1575 711 | Wire Wire Line 712 | 7850 1275 7850 1575 713 | Wire Wire Line 714 | 7600 1575 8175 1575 715 | Connection ~ 6675 3075 716 | Wire Wire Line 717 | 6375 3075 6675 3075 718 | Wire Wire Line 719 | 6375 3225 6375 3075 720 | Wire Wire Line 721 | 6675 2925 6650 2925 722 | Wire Wire Line 723 | 6675 2925 6675 3225 724 | Connection ~ 6675 4450 725 | Wire Wire Line 726 | 6375 4450 6675 4450 727 | Wire Wire Line 728 | 6375 4325 6375 4450 729 | Wire Wire Line 730 | 6675 4325 6675 4600 731 | Wire Wire Line 732 | 5875 4125 5575 4125 733 | Wire Wire Line 734 | 5575 4025 5875 4025 735 | Wire Wire Line 736 | 5875 3925 5575 3925 737 | Wire Wire Line 738 | 5575 3825 5875 3825 739 | Wire Wire Line 740 | 5875 3725 5575 3725 741 | Wire Wire Line 742 | 5575 3625 5875 3625 743 | Wire Wire Line 744 | 5875 3525 5575 3525 745 | Wire Wire Line 746 | 5575 3425 5875 3425 747 | Wire Wire Line 748 | 4475 6700 4100 6700 749 | Wire Wire Line 750 | 3950 7100 3950 6850 751 | Wire Wire Line 752 | 3950 6300 3950 6550 753 | Wire Wire Line 754 | 4475 5425 4100 5425 755 | Wire Wire Line 756 | 3950 5825 3950 5575 757 | Wire Wire Line 758 | 3950 5025 3950 5275 759 | Wire Wire Line 760 | 4475 4150 4100 4150 761 | Wire Wire Line 762 | 3950 4550 3950 4300 763 | Wire Wire Line 764 | 3950 3750 3950 4000 765 | Wire Wire Line 766 | 2475 5650 2725 5650 767 | Connection ~ 1500 6025 768 | Wire Wire Line 769 | 1100 5850 1100 6025 770 | Wire Wire Line 771 | 1500 5750 1500 6250 772 | Wire Wire Line 773 | 1100 6025 1950 6025 774 | Connection ~ 1950 5650 775 | Wire Wire Line 776 | 1950 5575 1950 5725 777 | Wire Wire Line 778 | 1950 5125 1950 5275 779 | Wire Wire Line 780 | 1500 5650 2175 5650 781 | Wire Wire Line 782 | 2450 4175 2700 4175 783 | Connection ~ 1475 4550 784 | Wire Wire Line 785 | 1075 4375 1075 4550 786 | Wire Wire Line 787 | 1475 4275 1475 4775 788 | Wire Wire Line 789 | 1075 4550 1925 4550 790 | Connection ~ 1925 4175 791 | Wire Wire Line 792 | 1925 4100 1925 4250 793 | Wire Wire Line 794 | 1925 3650 1925 3800 795 | Wire Wire Line 796 | 1475 4175 2150 4175 797 | Wire Wire Line 798 | 2450 2675 2700 2675 799 | Connection ~ 1475 3050 800 | Wire Wire Line 801 | 1075 2875 1075 3050 802 | Wire Wire Line 803 | 1475 2775 1475 3275 804 | Wire Wire Line 805 | 1075 3050 1925 3050 806 | Connection ~ 1925 2675 807 | Wire Wire Line 808 | 1925 2600 1925 2750 809 | Wire Wire Line 810 | 1925 2150 1925 2300 811 | Wire Wire Line 812 | 1475 2675 2150 2675 813 | Wire Wire Line 814 | 4475 2875 4100 2875 815 | Wire Wire Line 816 | 3950 3275 3950 3025 817 | Wire Wire Line 818 | 3950 2475 3950 2725 819 | Wire Wire Line 820 | 2425 1200 2675 1200 821 | Connection ~ 1450 1575 822 | Wire Wire Line 823 | 1050 1400 1050 1575 824 | Wire Wire Line 825 | 1450 1300 1450 1800 826 | Wire Wire Line 827 | 1050 1575 1900 1575 828 | Connection ~ 1900 1200 829 | Wire Wire Line 830 | 1900 1125 1900 1275 831 | Wire Wire Line 832 | 1450 1200 2125 1200 833 | Wire Wire Line 834 | 7325 3625 7075 3625 835 | Wire Wire Line 836 | 7325 3725 7075 3725 837 | Wire Wire Line 838 | 7325 3825 7075 3825 839 | Wire Wire Line 840 | 7325 3925 7075 3925 841 | Wire Wire Line 842 | 6425 1525 7000 1525 843 | Wire Wire Line 844 | 7000 1525 7000 1675 845 | Wire Wire Line 846 | 9300 5575 9300 5700 847 | Wire Wire Line 848 | 8675 3575 8800 3575 849 | Wire Wire Line 850 | 8675 3875 8800 3875 851 | Wire Wire Line 852 | 8675 3975 8800 3975 853 | Wire Wire Line 854 | 8675 4075 8800 4075 855 | Wire Wire Line 856 | 10600 5075 10700 5075 857 | Wire Wire Line 858 | 7600 5625 7600 5825 859 | Wire Wire Line 860 | 7100 5425 7625 5425 861 | Connection ~ 9300 5600 862 | Wire Wire Line 863 | 9800 2975 9800 2850 864 | $Comp 865 | L +5V #PWR026 866 | U 1 1 5BC5E6F9 867 | P 1900 675 868 | F 0 "#PWR026" H 1900 525 50 0001 C CNN 869 | F 1 "+5V" H 1900 815 50 0000 C CNN 870 | F 2 "" H 1900 675 50 0001 C CNN 871 | F 3 "" H 1900 675 50 0001 C CNN 872 | 1 1900 675 873 | 1 0 0 -1 874 | $EndComp 875 | Wire Wire Line 876 | 1900 675 1900 825 877 | NoConn ~ 9600 2975 878 | Wire Wire Line 879 | 9500 2975 9425 2975 880 | Wire Wire Line 881 | 9500 2975 9500 2850 882 | Connection ~ 9500 2975 883 | $Comp 884 | L RCJ-024 J7 885 | U 1 1 5C53771A 886 | P 7925 5525 887 | F 0 "J7" H 7825 5675 50 0000 L BNN 888 | F 1 "VIDEO_OUT" H 7825 5275 50 0000 L BNN 889 | F 2 "RCJ-024:CUI_RCJ-024" H 7925 5525 50 0001 L BNN 890 | F 3 "CUI Inc" H 7925 5525 50 0001 L BNN 891 | F 4 "Manufacturer recommendations" H 7925 5525 50 0001 L BNN "Field4" 892 | F 5 "B" H 7925 5525 50 0001 L BNN "Field5" 893 | 1 7925 5525 894 | -1 0 0 1 895 | $EndComp 896 | Wire Wire Line 897 | 7600 5625 7625 5625 898 | $Comp 899 | L Audio-Jack-2_Switch J1 900 | U 1 1 5C85719A 901 | P 1250 1300 902 | F 0 "J1" H 1200 1475 50 0000 C CNN 903 | F 1 "CV_IN_0" H 1475 1225 50 0000 C CNN 904 | F 2 "Connections_Thonkiconn:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" H 1500 1400 50 0001 C CNN 905 | F 3 "" H 1500 1400 50 0001 C CNN 906 | 1 1250 1300 907 | 1 0 0 -1 908 | $EndComp 909 | $Comp 910 | L Audio-Jack-2_Switch J2 911 | U 1 1 5C8572E2 912 | P 1275 2775 913 | F 0 "J2" H 1225 2950 50 0000 C CNN 914 | F 1 "CV_IN_1" H 1500 2700 50 0000 C CNN 915 | F 2 "Connections_Thonkiconn:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" H 1525 2875 50 0001 C CNN 916 | F 3 "" H 1525 2875 50 0001 C CNN 917 | 1 1275 2775 918 | 1 0 0 -1 919 | $EndComp 920 | $Comp 921 | L Audio-Jack-2_Switch J3 922 | U 1 1 5C85775E 923 | P 1275 4275 924 | F 0 "J3" H 1225 4450 50 0000 C CNN 925 | F 1 "CV_IN_2" H 1500 4200 50 0000 C CNN 926 | F 2 "Connections_Thonkiconn:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" H 1525 4375 50 0001 C CNN 927 | F 3 "" H 1525 4375 50 0001 C CNN 928 | 1 1275 4275 929 | 1 0 0 -1 930 | $EndComp 931 | $Comp 932 | L Audio-Jack-2_Switch J4 933 | U 1 1 5C857A0C 934 | P 1300 5750 935 | F 0 "J4" H 1250 5925 50 0000 C CNN 936 | F 1 "CV_IN_3" H 1525 5675 50 0000 C CNN 937 | F 2 "Connections_Thonkiconn:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" H 1550 5850 50 0001 C CNN 938 | F 3 "" H 1550 5850 50 0001 C CNN 939 | 1 1300 5750 940 | 1 0 0 -1 941 | $EndComp 942 | NoConn ~ 6550 1125 943 | NoConn ~ 5950 1125 944 | Wire Wire Line 945 | 6675 1575 6675 1525 946 | Connection ~ 6675 1525 947 | Wire Wire Line 948 | 5950 1025 5850 1025 949 | Wire Wire Line 950 | 5850 1025 5850 1525 951 | Wire Wire Line 952 | 5850 1525 6125 1525 953 | Wire Wire Line 954 | 5650 1875 5650 775 955 | Wire Wire Line 956 | 5650 775 6550 775 957 | Wire Wire Line 958 | 6550 775 6550 1025 959 | $EndSCHEMATC 960 | -------------------------------------------------------------------------------- /hardware/rescue-backup/incur_board-cache-2021-03-27-12-47-42.lib: -------------------------------------------------------------------------------- 1 | EESchema-LIBRARY Version 2.3 2 | #encoding utf-8 3 | # 4 | # +3V3 5 | # 6 | DEF +3V3 #PWR 0 0 Y Y 1 F P 7 | F0 "#PWR" 0 -150 50 H I C CNN 8 | F1 "+3V3" 0 140 50 H V C CNN 9 | F2 "" 0 0 50 H I C CNN 10 | F3 "" 0 0 50 H I C CNN 11 | ALIAS +3.3V 12 | DRAW 13 | P 2 0 1 0 -30 50 0 100 N 14 | P 2 0 1 0 0 0 0 100 N 15 | P 2 0 1 0 0 100 30 50 N 16 | X +3V3 1 0 0 0 U 50 50 1 1 W N 17 | ENDDRAW 18 | ENDDEF 19 | # 20 | # +5V 21 | # 22 | DEF +5V #PWR 0 0 Y Y 1 F P 23 | F0 "#PWR" 0 -150 50 H I C CNN 24 | F1 "+5V" 0 140 50 H V C CNN 25 | F2 "" 0 0 50 H I C CNN 26 | F3 "" 0 0 50 H I C CNN 27 | DRAW 28 | P 2 0 1 0 -30 50 0 100 N 29 | P 2 0 1 0 0 0 0 100 N 30 | P 2 0 1 0 0 100 30 50 N 31 | X +5V 1 0 0 0 U 50 50 1 1 W N 32 | ENDDRAW 33 | ENDDEF 34 | # 35 | # 6N138 36 | # 37 | DEF 6N138 U 0 40 Y N 1 F N 38 | F0 "U" -160 350 50 H V C CNN 39 | F1 "6N138" 90 350 50 H V C CNN 40 | F2 "" 290 -300 50 H I C CNN 41 | F3 "" 290 -300 50 H I C CNN 42 | ALIAS 6N139 43 | $FPLIST 44 | DIP*W7.62mm* 45 | SMDIP*W9.53mm* 46 | $ENDFPLIST 47 | DRAW 48 | S -200 300 200 -300 0 1 10 f 49 | P 2 0 1 10 -180 -25 -130 -25 N 50 | P 2 0 1 10 35 -25 -15 -25 N 51 | P 2 0 1 0 55 -105 100 -150 N 52 | P 2 0 1 0 55 -95 100 -50 N 53 | P 2 0 1 0 100 -150 125 -150 N 54 | P 2 0 1 0 135 -155 180 -200 N 55 | P 2 0 1 0 135 -145 180 -100 N 56 | P 2 0 1 0 180 -200 200 -200 N 57 | P 2 0 1 0 180 -100 200 -100 N 58 | P 3 0 1 14 55 -60 55 -140 55 -140 N 59 | P 3 0 1 0 100 -50 100 200 200 200 N 60 | P 3 0 1 14 135 -110 135 -190 135 -190 N 61 | P 3 0 1 0 200 100 120 100 120 -150 N 62 | P 4 0 1 0 -200 -100 -155 -100 -155 100 -200 100 N 63 | P 4 0 1 10 -155 -25 -180 25 -130 25 -155 -25 N 64 | P 4 0 1 10 10 -25 35 -75 -15 -75 10 -25 N 65 | P 4 0 1 0 50 -100 10 -100 10 200 100 200 N 66 | P 4 0 1 0 95 -145 85 -125 75 -135 95 -145 N 67 | P 4 0 1 0 175 -195 165 -175 155 -185 175 -195 N 68 | P 5 0 1 0 -110 -20 -60 -20 -75 -25 -75 -15 -60 -20 N 69 | P 5 0 1 0 -110 20 -60 20 -75 15 -75 25 -60 20 N 70 | X NC 1 -200 200 100 R 50 50 1 1 N N 71 | X C1 2 -300 100 100 R 50 50 1 1 P 72 | X C2 3 -300 -100 100 R 50 50 1 1 P 73 | X NC 4 -200 -200 100 R 50 50 1 1 N N 74 | X GND 5 300 -200 100 L 50 50 1 1 P 75 | X VO2 6 300 -100 100 L 50 50 1 1 P 76 | X VO1 7 300 100 100 L 50 50 1 1 P 77 | X VCC 8 300 200 100 L 50 50 1 1 P 78 | ENDDRAW 79 | ENDDEF 80 | # 81 | # Audio-Jack-2_Switch 82 | # 83 | DEF Audio-Jack-2_Switch J 0 40 Y Y 1 F N 84 | F0 "J" -50 175 50 H V C CNN 85 | F1 "Audio-Jack-2_Switch" 225 -75 50 H V C CNN 86 | F2 "" 250 100 50 H I C CNN 87 | F3 "" 250 100 50 H I C CNN 88 | DRAW 89 | T 0 -100 50 30 0 0 0 1 Normal 0 C C 90 | S -185 125 100 -25 0 1 10 f 91 | S -175 0 -205 100 0 1 0 F 92 | P 2 0 1 0 -25 95 -10 65 N 93 | P 4 0 1 0 100 0 -25 0 -25 95 -40 65 N 94 | P 4 0 1 10 100 100 -75 100 -100 75 -125 100 N 95 | X ~ 1 200 100 100 L 50 50 1 1 P 96 | X ~ 2 -200 -100 100 U 50 50 1 1 P 97 | X ~ 3 200 0 100 L 50 50 1 1 P 98 | ENDDRAW 99 | ENDDEF 100 | # 101 | # Conn_01x01 102 | # 103 | DEF Conn_01x01 J 0 40 Y N 1 F N 104 | F0 "J" 0 100 50 H V C CNN 105 | F1 "Conn_01x01" 0 -100 50 H V C CNN 106 | F2 "" 0 0 50 H I C CNN 107 | F3 "" 0 0 50 H I C CNN 108 | $FPLIST 109 | Connector*:*_??x*mm* 110 | Connector*:*1x??x*mm* 111 | Pin?Header?Straight?1X* 112 | Pin?Header?Angled?1X* 113 | Socket?Strip?Straight?1X* 114 | Socket?Strip?Angled?1X* 115 | $ENDFPLIST 116 | DRAW 117 | S -50 5 0 -5 1 1 6 N 118 | S -50 50 50 -50 1 1 10 f 119 | X Pin_1 1 -200 0 150 R 50 50 1 1 P 120 | ENDDRAW 121 | ENDDEF 122 | # 123 | # D 124 | # 125 | DEF D D 0 40 N N 1 F N 126 | F0 "D" 0 100 50 H V C CNN 127 | F1 "D" 0 -100 50 H V C CNN 128 | F2 "" 0 0 50 H I C CNN 129 | F3 "" 0 0 50 H I C CNN 130 | $FPLIST 131 | TO-???* 132 | *SingleDiode 133 | *_Diode_* 134 | *SingleDiode* 135 | D_* 136 | $ENDFPLIST 137 | DRAW 138 | P 2 0 1 8 -50 50 -50 -50 N 139 | P 2 0 1 0 50 0 -50 0 N 140 | P 4 0 1 8 50 50 50 -50 -50 0 50 50 N 141 | X K 1 -150 0 100 R 50 50 1 1 P 142 | X A 2 150 0 100 L 50 50 1 1 P 143 | ENDDRAW 144 | ENDDEF 145 | # 146 | # DIN-5_180degree 147 | # 148 | DEF DIN-5_180degree J 0 40 Y Y 1 F N 149 | F0 "J" 125 225 50 H V C CNN 150 | F1 "DIN-5_180degree" 0 -250 50 H V C CNN 151 | F2 "" 0 0 50 H I C CNN 152 | F3 "" 0 0 50 H I C CNN 153 | $FPLIST 154 | DIN* 155 | $ENDFPLIST 156 | DRAW 157 | A -1 -1 201 -811 3 0 1 10 N 30 -200 200 0 158 | A 0 0 200 1 1799 0 1 10 N 200 0 -200 0 159 | A 1 -1 201 1797 -989 0 1 10 N -200 0 -30 -200 160 | C -120 0 20 0 1 0 N 161 | C -90 90 20 0 1 0 N 162 | C 0 130 20 0 1 0 N 163 | C 90 90 20 0 1 0 N 164 | C 120 0 20 0 1 0 N 165 | P 2 0 1 0 -200 0 -140 0 N 166 | P 2 0 1 0 0 200 0 150 N 167 | P 2 0 1 0 200 0 140 0 N 168 | P 3 0 1 0 -200 100 -170 100 -110 90 N 169 | P 3 0 1 0 200 100 170 100 110 90 N 170 | P 4 0 1 10 -30 -195 -30 -165 30 -165 30 -195 N 171 | X ~ 1 -300 0 100 R 50 50 1 1 P 172 | X ~ 2 0 300 100 D 50 50 1 1 P 173 | X ~ 3 300 0 100 L 50 50 1 1 P 174 | X ~ 4 -300 100 100 R 50 50 1 1 P 175 | X ~ 5 300 100 100 L 50 50 1 1 P 176 | ENDDRAW 177 | ENDDEF 178 | # 179 | # GND 180 | # 181 | DEF GND #PWR 0 0 Y Y 1 F P 182 | F0 "#PWR" 0 -250 50 H I C CNN 183 | F1 "GND" 0 -150 50 H V C CNN 184 | F2 "" 0 0 50 H I C CNN 185 | F3 "" 0 0 50 H I C CNN 186 | DRAW 187 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N 188 | X GND 1 0 0 0 D 50 50 1 1 W N 189 | ENDDRAW 190 | ENDDEF 191 | # 192 | # MCP3208 193 | # 194 | DEF MCP3208 U 0 40 Y Y 1 F N 195 | F0 "U" -200 525 50 H V R CNN 196 | F1 "MCP3208" -200 450 50 H V R CNN 197 | F2 "" 100 100 50 H I C CNN 198 | F3 "" 100 100 50 H I C CNN 199 | ALIAS MCP3008 200 | $FPLIST 201 | DIP*W7.62mm* 202 | SOIC*3.9x9.9mm*Pitch1.27mm* 203 | $ENDFPLIST 204 | DRAW 205 | T 0 -25 50 50 0 0 0 ADC Normal 0 C C 206 | T 900 235 -115 50 0 0 0 CNTRL Normal 0 L B 207 | T 900 -250 -50 50 0 0 0 MUX Normal 0 C C 208 | S 150 -150 275 150 0 1 0 N 209 | S 500 -500 -500 400 0 1 10 f 210 | P 2 0 1 0 -150 50 -200 50 N 211 | P 2 0 1 0 75 50 150 50 N 212 | P 5 0 1 0 -300 350 -300 -450 -200 -400 -200 300 -300 350 N 213 | P 5 0 1 0 150 -125 -150 -125 -150 -450 -250 -450 -250 -425 N 214 | P 6 0 1 0 75 125 75 -25 -100 -25 -150 50 -100 125 75 125 N 215 | X CH0 1 -600 300 100 R 50 50 1 1 I 216 | X CH1 2 -600 200 100 R 50 50 1 1 I 217 | X CH2 3 -600 100 100 R 50 50 1 1 I 218 | X CH3 4 -600 0 100 R 50 50 1 1 I 219 | X CH4 5 -600 -100 100 R 50 50 1 1 I 220 | X CH5 6 -600 -200 100 R 50 50 1 1 I 221 | X CH6 7 -600 -300 100 R 50 50 1 1 I 222 | X CH7 8 -600 -400 100 R 50 50 1 1 I 223 | X DGND 9 200 -600 100 U 50 50 1 1 W 224 | X ~CS~/SHDN 10 600 -200 100 L 50 50 1 1 I 225 | X Din 11 600 -100 100 L 50 50 1 1 I 226 | X Dout 12 600 0 100 L 50 50 1 1 O 227 | X CLK 13 600 100 100 L 50 50 1 1 I C 228 | X AGND 14 -100 -600 100 U 50 50 1 1 W 229 | X Vref 15 -100 500 100 D 50 50 1 1 W 230 | X Vdd 16 200 500 100 D 50 50 1 1 W 231 | ENDDRAW 232 | ENDDEF 233 | # 234 | # POT 235 | # 236 | DEF POT RV 0 40 N N 1 F N 237 | F0 "RV" -175 0 50 V V C CNN 238 | F1 "POT" -100 0 50 V V C CNN 239 | F2 "" 0 0 50 H I C CNN 240 | F3 "" 0 0 50 H I C CNN 241 | $FPLIST 242 | Potentiometer* 243 | $ENDFPLIST 244 | DRAW 245 | S 40 100 -40 -100 0 1 10 N 246 | P 2 0 1 0 100 0 60 0 N 247 | P 3 0 1 0 45 0 90 20 90 -20 F 248 | X 1 1 0 150 50 D 50 50 1 1 P 249 | X 2 2 150 0 50 L 50 50 1 1 P 250 | X 3 3 0 -150 50 U 50 50 1 1 P 251 | ENDDRAW 252 | ENDDEF 253 | # 254 | # PWR_FLAG 255 | # 256 | DEF PWR_FLAG #FLG 0 0 N N 1 F P 257 | F0 "#FLG" 0 75 50 H I C CNN 258 | F1 "PWR_FLAG" 0 150 50 H V C CNN 259 | F2 "" 0 0 50 H I C CNN 260 | F3 "" 0 0 50 H I C CNN 261 | DRAW 262 | X pwr 1 0 0 0 U 50 50 0 0 w 263 | P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N 264 | ENDDRAW 265 | ENDDEF 266 | # 267 | # R 268 | # 269 | DEF R R 0 0 N Y 1 F N 270 | F0 "R" 80 0 50 V V C CNN 271 | F1 "R" 0 0 50 V V C CNN 272 | F2 "" -70 0 50 V I C CNN 273 | F3 "" 0 0 50 H I C CNN 274 | $FPLIST 275 | R_* 276 | R_* 277 | $ENDFPLIST 278 | DRAW 279 | S -40 -100 40 100 0 1 10 N 280 | X ~ 1 0 150 50 D 50 50 1 1 P 281 | X ~ 2 0 -150 50 U 50 50 1 1 P 282 | ENDDRAW 283 | ENDDEF 284 | # 285 | # RCJ-024 286 | # 287 | DEF RCJ-024 J 0 40 Y Y 1 L N 288 | F0 "J" -100 150 50 H V L BNN 289 | F1 "RCJ-024" -100 -250 50 H V L BNN 290 | F2 "CUI_RCJ-024" 0 0 50 H I L BNN 291 | F3 "CUI Inc" 0 0 50 H I L BNN 292 | F4 "Manufacturer recommendations" 0 0 50 H I L BNN 293 | F5 "B" 0 0 50 H I L BNN 294 | DRAW 295 | S -130 -100 -70 50 0 0 0 F 296 | P 2 0 0 6 -100 100 -100 50 N 297 | P 2 0 0 6 0 -40 -30 -100 N 298 | P 2 0 0 6 30 -100 0 -40 N 299 | P 2 0 0 6 100 -100 30 -100 N 300 | P 2 0 0 6 200 -100 100 -100 N 301 | P 2 0 0 6 200 100 -100 100 N 302 | X 2 2 300 -100 100 L 40 40 0 0 P 303 | X 1 1A 300 100 100 L 40 40 0 0 P 304 | X 1 1B 300 100 100 L 40 40 0 0 P 305 | ENDDRAW 306 | ENDDEF 307 | # 308 | # Raspberry_Pi_2_3 309 | # 310 | DEF Raspberry_Pi_2_3 J 0 40 Y Y 1 F N 311 | F0 "J" 700 -1250 50 H V C CNN 312 | F1 "Raspberry_Pi_2_3" -400 900 50 H V C CNN 313 | F2 "Pin_Headers:Pin_Header_Straight_2x20" 1000 1250 50 H I C CNN 314 | F3 "" 50 -150 50 H I C CNN 315 | DRAW 316 | S -800 1200 800 -1200 0 1 10 f 317 | X 3V3 1 100 1300 100 D 50 50 1 1 w 318 | X 5V 2 -200 1300 100 D 50 50 1 1 P 319 | X (SDA1)_GPIO2 3 900 900 100 L 50 50 1 1 B 320 | X 5V 4 -100 1300 100 D 50 50 1 1 P 321 | X (SCL1)_GPIO3 5 900 800 100 L 50 50 1 1 B 322 | X GND 6 -400 -1300 100 U 50 50 1 1 P 323 | X (GCLK)_GPIO4 7 900 700 100 L 50 50 1 1 B 324 | X (TXD0)_GPIO14 8 900 -700 100 L 50 50 1 1 B 325 | X GND 9 -300 -1300 100 U 50 50 1 1 P 326 | X (RXD0)_GPIO15 10 900 -800 100 L 50 50 1 1 B 327 | X GND 20 -100 -1300 100 U 50 50 1 1 P 328 | X GND 30 100 -1300 100 U 50 50 1 1 P 329 | X GPIO21 40 -900 200 100 R 50 50 1 1 B 330 | X GPIO17_(GEN0) 11 -900 600 100 R 50 50 1 1 B 331 | X (SPI_MISO)_GPIO9 21 900 0 100 L 50 50 1 1 B 332 | X GPIO6 31 900 400 100 L 50 50 1 1 B 333 | X GPIO18_(GEN1) 12 -900 500 100 R 50 50 1 1 B 334 | X GPIO25_(GEN6) 22 -900 -200 100 R 50 50 1 1 B 335 | X GPIO12 32 900 -400 100 L 50 50 1 1 B 336 | X GPIO27_(GEN2) 13 -900 -400 100 R 50 50 1 1 B 337 | X (SPI_SCLK)_GPIO11 23 900 -200 100 L 50 50 1 1 B 338 | X GPIO13 33 900 -500 100 L 50 50 1 1 B 339 | X GND 14 -200 -1300 100 U 50 50 1 1 P 340 | X (~SPI_CE0~)_GPIO8 24 900 100 100 L 50 50 1 1 B 341 | X GND 34 200 -1300 100 U 50 50 1 1 P 342 | X GPIO22_(GEN3) 15 -900 100 100 R 50 50 1 1 B 343 | X GND 25 0 -1300 100 U 50 50 1 1 P 344 | X GPIO19 35 -900 400 100 R 50 50 1 1 B 345 | X GPIO23_(GEN4) 16 -900 0 100 R 50 50 1 1 B 346 | X (~SPI_CE1~)_GPIO7 26 900 200 100 L 50 50 1 1 B 347 | X GPIO16 36 -900 700 100 R 50 50 1 1 B 348 | X 3V3 17 200 1300 100 D 50 50 1 1 w 349 | X ID_SD 27 -900 -700 100 R 50 50 1 1 B 350 | X GPIO26 37 -900 -300 100 R 50 50 1 1 B 351 | X GPIO24_(GEN5) 18 -900 -100 100 R 50 50 1 1 B 352 | X ID_SC 28 -900 -800 100 R 50 50 1 1 B 353 | X GPIO20 38 -900 300 100 R 50 50 1 1 B 354 | X (SPI_MOSI)_GPIO10 19 900 -100 100 L 50 50 1 1 B 355 | X GPIO5 29 900 500 100 L 50 50 1 1 B 356 | X GND 39 300 -1300 100 U 50 50 1 1 P 357 | ENDDRAW 358 | ENDDEF 359 | # 360 | #End Library 361 | -------------------------------------------------------------------------------- /hardware/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/hardware/schematic.pdf -------------------------------------------------------------------------------- /hardware/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name incur_board-rescue)(type Legacy)(uri ${KIPRJMOD}/incur_board-rescue.lib)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /i_n_c_u_r_booklet.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/i_n_c_u_r_booklet.odg -------------------------------------------------------------------------------- /i_n_c_u_r_booklet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/i_n_c_u_r_booklet.pdf -------------------------------------------------------------------------------- /incur_board_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/incur_board_3d.png -------------------------------------------------------------------------------- /panel/back_panel/back_panel-Edge_Cuts.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | HEADER 5 | 9 6 | $ACADVER 7 | 1 8 | AC1014 9 | 9 10 | $HANDSEED 11 | 5 12 | FFFF 13 | 9 14 | $INSUNITS 15 | 70 16 | 5 17 | 9 18 | $MEASUREMENT 19 | 70 20 | 1 21 | 0 22 | ENDSEC 23 | 0 24 | SECTION 25 | 2 26 | TABLES 27 | 0 28 | TABLE 29 | 2 30 | VPORT 31 | 5 32 | 8 33 | 330 34 | 0 35 | 100 36 | AcDbSymbolTable 37 | 70 38 | 4 39 | 0 40 | VPORT 41 | 5 42 | 2E 43 | 330 44 | 8 45 | 100 46 | AcDbSymbolTableRecord 47 | 100 48 | AcDbViewportTableRecord 49 | 2 50 | *ACTIVE 51 | 70 52 | 0 53 | 10 54 | 0.0 55 | 20 56 | 0.0 57 | 11 58 | 1.0 59 | 21 60 | 1.0 61 | 12 62 | 210.0 63 | 22 64 | 148.5 65 | 13 66 | 0.0 67 | 23 68 | 0.0 69 | 14 70 | 10.0 71 | 24 72 | 10.0 73 | 15 74 | 10.0 75 | 25 76 | 10.0 77 | 16 78 | 0.0 79 | 26 80 | 0.0 81 | 36 82 | 1.0 83 | 17 84 | 0.0 85 | 27 86 | 0.0 87 | 37 88 | 0.0 89 | 40 90 | 341.0 91 | 41 92 | 1.24 93 | 42 94 | 50.0 95 | 43 96 | 0.0 97 | 44 98 | 0.0 99 | 50 100 | 0.0 101 | 51 102 | 0.0 103 | 71 104 | 0 105 | 72 106 | 100 107 | 73 108 | 1 109 | 74 110 | 3 111 | 75 112 | 0 113 | 76 114 | 0 115 | 77 116 | 0 117 | 78 118 | 0 119 | 0 120 | ENDTAB 121 | 0 122 | TABLE 123 | 2 124 | LTYPE 125 | 5 126 | 5 127 | 330 128 | 0 129 | 100 130 | AcDbSymbolTable 131 | 70 132 | 1 133 | 0 134 | LTYPE 135 | 5 136 | 14 137 | 330 138 | 5 139 | 100 140 | AcDbSymbolTableRecord 141 | 100 142 | AcDbLinetypeTableRecord 143 | 2 144 | BYBLOCK 145 | 70 146 | 0 147 | 3 148 | 149 | 72 150 | 65 151 | 73 152 | 0 153 | 40 154 | 0.0 155 | 0 156 | LTYPE 157 | 5 158 | 15 159 | 330 160 | 5 161 | 100 162 | AcDbSymbolTableRecord 163 | 100 164 | AcDbLinetypeTableRecord 165 | 2 166 | BYLAYER 167 | 70 168 | 0 169 | 3 170 | 171 | 72 172 | 65 173 | 73 174 | 0 175 | 40 176 | 0.0 177 | 0 178 | LTYPE 179 | 5 180 | 16 181 | 330 182 | 5 183 | 100 184 | AcDbSymbolTableRecord 185 | 100 186 | AcDbLinetypeTableRecord 187 | 2 188 | CONTINUOUS 189 | 70 190 | 0 191 | 3 192 | Solid line 193 | 72 194 | 65 195 | 73 196 | 0 197 | 40 198 | 0.0 199 | 0 200 | ENDTAB 201 | 0 202 | TABLE 203 | 2 204 | LAYER 205 | 5 206 | 2 207 | 100 208 | AcDbSymbolTable 209 | 70 210 | 1 211 | 0 212 | LAYER 213 | 5 214 | 50 215 | 100 216 | AcDbSymbolTableRecord 217 | 100 218 | AcDbLayerTableRecord 219 | 2 220 | 0 221 | 70 222 | 0 223 | 6 224 | CONTINUOUS 225 | 0 226 | ENDTAB 227 | 0 228 | TABLE 229 | 2 230 | STYLE 231 | 5 232 | 3 233 | 330 234 | 0 235 | 100 236 | AcDbSymbolTable 237 | 70 238 | 1 239 | 0 240 | STYLE 241 | 5 242 | 11 243 | 330 244 | 3 245 | 100 246 | AcDbSymbolTableRecord 247 | 100 248 | AcDbTextStyleTableRecord 249 | 2 250 | STANDARD 251 | 70 252 | 0 253 | 40 254 | 0.0 255 | 41 256 | 1.0 257 | 50 258 | 0.0 259 | 71 260 | 0 261 | 42 262 | 2.5 263 | 3 264 | txt 265 | 4 266 | 267 | 0 268 | ENDTAB 269 | 0 270 | TABLE 271 | 2 272 | VIEW 273 | 5 274 | 6 275 | 330 276 | 0 277 | 100 278 | AcDbSymbolTable 279 | 70 280 | 0 281 | 0 282 | ENDTAB 283 | 0 284 | TABLE 285 | 2 286 | UCS 287 | 5 288 | 7 289 | 330 290 | 0 291 | 100 292 | AcDbSymbolTable 293 | 70 294 | 0 295 | 0 296 | ENDTAB 297 | 0 298 | TABLE 299 | 2 300 | APPID 301 | 5 302 | 9 303 | 330 304 | 0 305 | 100 306 | AcDbSymbolTable 307 | 70 308 | 2 309 | 0 310 | APPID 311 | 5 312 | 12 313 | 330 314 | 9 315 | 100 316 | AcDbSymbolTableRecord 317 | 100 318 | AcDbRegAppTableRecord 319 | 2 320 | ACAD 321 | 70 322 | 0 323 | 0 324 | ENDTAB 325 | 0 326 | TABLE 327 | 2 328 | DIMSTYLE 329 | 5 330 | A 331 | 330 332 | 0 333 | 100 334 | AcDbSymbolTable 335 | 70 336 | 1 337 | 0 338 | DIMSTYLE 339 | 105 340 | 27 341 | 330 342 | A 343 | 100 344 | AcDbSymbolTableRecord 345 | 100 346 | AcDbDimStyleTableRecord 347 | 2 348 | ISO-25 349 | 70 350 | 0 351 | 3 352 | 353 | 4 354 | 355 | 5 356 | 357 | 6 358 | 359 | 7 360 | 361 | 40 362 | 1.0 363 | 41 364 | 2.5 365 | 42 366 | 0.625 367 | 43 368 | 3.75 369 | 44 370 | 1.25 371 | 45 372 | 0.0 373 | 46 374 | 0.0 375 | 47 376 | 0.0 377 | 48 378 | 0.0 379 | 140 380 | 2.5 381 | 141 382 | 2.5 383 | 142 384 | 0.0 385 | 143 386 | 0.03937007874016 387 | 144 388 | 1.0 389 | 145 390 | 0.0 391 | 146 392 | 1.0 393 | 147 394 | 0.625 395 | 71 396 | 0 397 | 72 398 | 0 399 | 73 400 | 0 401 | 74 402 | 0 403 | 75 404 | 0 405 | 76 406 | 0 407 | 77 408 | 1 409 | 78 410 | 8 411 | 170 412 | 0 413 | 171 414 | 3 415 | 172 416 | 1 417 | 173 418 | 0 419 | 174 420 | 0 421 | 175 422 | 0 423 | 176 424 | 0 425 | 177 426 | 0 427 | 178 428 | 0 429 | 270 430 | 2 431 | 271 432 | 2 433 | 272 434 | 2 435 | 273 436 | 2 437 | 274 438 | 3 439 | 340 440 | 11 441 | 275 442 | 0 443 | 280 444 | 0 445 | 281 446 | 0 447 | 282 448 | 0 449 | 283 450 | 0 451 | 284 452 | 8 453 | 285 454 | 0 455 | 286 456 | 0 457 | 287 458 | 3 459 | 288 460 | 0 461 | 0 462 | ENDTAB 463 | 0 464 | TABLE 465 | 2 466 | BLOCK_RECORD 467 | 5 468 | 1 469 | 330 470 | 0 471 | 100 472 | AcDbSymbolTable 473 | 70 474 | 1 475 | 0 476 | BLOCK_RECORD 477 | 5 478 | 1F 479 | 330 480 | 1 481 | 100 482 | AcDbSymbolTableRecord 483 | 100 484 | AcDbBlockTableRecord 485 | 2 486 | *MODEL_SPACE 487 | 0 488 | BLOCK_RECORD 489 | 5 490 | 1B 491 | 330 492 | 1 493 | 100 494 | AcDbSymbolTableRecord 495 | 100 496 | AcDbBlockTableRecord 497 | 2 498 | *PAPER_SPACE 499 | 0 500 | ENDTAB 501 | 0 502 | ENDSEC 503 | 0 504 | SECTION 505 | 2 506 | BLOCKS 507 | 0 508 | BLOCK 509 | 5 510 | 20 511 | 330 512 | 1F 513 | 100 514 | AcDbEntity 515 | 8 516 | 0 517 | 100 518 | AcDbBlockBegin 519 | 2 520 | *MODEL_SPACE 521 | 70 522 | 0 523 | 10 524 | 0.0 525 | 20 526 | 0.0 527 | 30 528 | 0.0 529 | 3 530 | *MODEL_SPACE 531 | 1 532 | 533 | 0 534 | ENDBLK 535 | 5 536 | 21 537 | 330 538 | 1F 539 | 100 540 | AcDbEntity 541 | 8 542 | 0 543 | 100 544 | AcDbBlockEnd 545 | 0 546 | BLOCK 547 | 5 548 | 1C 549 | 330 550 | 1B 551 | 100 552 | AcDbEntity 553 | 67 554 | 1 555 | 8 556 | 0 557 | 100 558 | AcDbBlockBegin 559 | 2 560 | *PAPER_SPACE 561 | 1 562 | 563 | 0 564 | ENDBLK 565 | 5 566 | 1D 567 | 330 568 | 1B 569 | 100 570 | AcDbEntity 571 | 67 572 | 1 573 | 8 574 | 0 575 | 100 576 | AcDbBlockEnd 577 | 0 578 | ENDSEC 579 | 0 580 | SECTION 581 | 2 582 | ENTITIES 583 | 0 584 | SPLINE 585 | 5 586 | 100 587 | 100 588 | AcDbEntity 589 | 8 590 | 0 591 | 62 592 | 7 593 | 100 594 | AcDbSpline 595 | 70 596 | 8 597 | 71 598 | 3 599 | 72 600 | 8 601 | 73 602 | 4 603 | 74 604 | 0 605 | 40 606 | 0 607 | 40 608 | 0 609 | 40 610 | 0 611 | 40 612 | 0 613 | 40 614 | 1 615 | 40 616 | 1 617 | 40 618 | 1 619 | 40 620 | 1 621 | 10 622 | 9.657500 623 | 20 624 | 9.826352 625 | 30 626 | 0.0 627 | 10 628 | 9.588267 629 | 20 630 | 9.826352 631 | 30 632 | 0.0 633 | 10 634 | 9.525852 635 | 20 636 | 9.784648 637 | 30 638 | 0.0 639 | 10 640 | 9.499357 641 | 20 642 | 9.720685 643 | 30 644 | 0.0 645 | 0 646 | SPLINE 647 | 5 648 | 101 649 | 100 650 | AcDbEntity 651 | 8 652 | 0 653 | 62 654 | 7 655 | 100 656 | AcDbSpline 657 | 70 658 | 8 659 | 71 660 | 3 661 | 72 662 | 8 663 | 73 664 | 4 665 | 74 666 | 0 667 | 40 668 | 0 669 | 40 670 | 0 671 | 40 672 | 0 673 | 40 674 | 0 675 | 40 676 | 1 677 | 40 678 | 1 679 | 40 680 | 1 681 | 40 682 | 1 683 | 10 684 | 9.499357 685 | 20 686 | 9.720685 687 | 30 688 | 0.0 689 | 10 690 | 9.472863 691 | 20 692 | 9.656722 693 | 30 694 | 0.0 695 | 10 696 | 9.487508 697 | 20 698 | 9.583098 699 | 30 700 | 0.0 701 | 10 702 | 9.536463 703 | 20 704 | 9.534143 705 | 30 706 | 0.0 707 | 0 708 | SPLINE 709 | 5 710 | 102 711 | 100 712 | AcDbEntity 713 | 8 714 | 0 715 | 62 716 | 7 717 | 100 718 | AcDbSpline 719 | 70 720 | 8 721 | 71 722 | 3 723 | 72 724 | 8 725 | 73 726 | 4 727 | 74 728 | 0 729 | 40 730 | 0 731 | 40 732 | 0 733 | 40 734 | 0 735 | 40 736 | 0 737 | 40 738 | 1 739 | 40 740 | 1 741 | 40 742 | 1 743 | 40 744 | 1 745 | 10 746 | 9.536463 747 | 20 748 | 9.534143 749 | 30 750 | 0.0 751 | 10 752 | 9.585418 753 | 20 754 | 9.485188 755 | 30 756 | 0.0 757 | 10 758 | 9.659042 759 | 20 760 | 9.470543 761 | 30 762 | 0.0 763 | 10 764 | 9.723005 765 | 20 766 | 9.497037 767 | 30 768 | 0.0 769 | 0 770 | SPLINE 771 | 5 772 | 103 773 | 100 774 | AcDbEntity 775 | 8 776 | 0 777 | 62 778 | 7 779 | 100 780 | AcDbSpline 781 | 70 782 | 8 783 | 71 784 | 3 785 | 72 786 | 8 787 | 73 788 | 4 789 | 74 790 | 0 791 | 40 792 | 0 793 | 40 794 | 0 795 | 40 796 | 0 797 | 40 798 | 0 799 | 40 800 | 1 801 | 40 802 | 1 803 | 40 804 | 1 805 | 40 806 | 1 807 | 10 808 | 9.723005 809 | 20 810 | 9.497037 811 | 30 812 | 0.0 813 | 10 814 | 9.786968 815 | 20 816 | 9.523532 817 | 30 818 | 0.0 819 | 10 820 | 9.828672 821 | 20 822 | 9.585947 823 | 30 824 | 0.0 825 | 10 826 | 9.828672 827 | 20 828 | 9.655180 829 | 30 830 | 0.0 831 | 0 832 | SPLINE 833 | 5 834 | 104 835 | 100 836 | AcDbEntity 837 | 8 838 | 0 839 | 62 840 | 7 841 | 100 842 | AcDbSpline 843 | 70 844 | 8 845 | 71 846 | 3 847 | 72 848 | 8 849 | 73 850 | 4 851 | 74 852 | 0 853 | 40 854 | 0 855 | 40 856 | 0 857 | 40 858 | 0 859 | 40 860 | 0 861 | 40 862 | 1 863 | 40 864 | 1 865 | 40 866 | 1 867 | 40 868 | 1 869 | 10 870 | 9.828672 871 | 20 872 | 9.655180 873 | 30 874 | 0.0 875 | 10 876 | 9.828672 877 | 20 878 | 9.700578 879 | 30 880 | 0.0 881 | 10 882 | 9.810638 883 | 20 884 | 9.744116 885 | 30 886 | 0.0 887 | 10 888 | 9.778537 889 | 20 890 | 9.776217 891 | 30 892 | 0.0 893 | 0 894 | SPLINE 895 | 5 896 | 105 897 | 100 898 | AcDbEntity 899 | 8 900 | 0 901 | 62 902 | 7 903 | 100 904 | AcDbSpline 905 | 70 906 | 8 907 | 71 908 | 3 909 | 72 910 | 8 911 | 73 912 | 4 913 | 74 914 | 0 915 | 40 916 | 0 917 | 40 918 | 0 919 | 40 920 | 0 921 | 40 922 | 0 923 | 40 924 | 1 925 | 40 926 | 1 927 | 40 928 | 1 929 | 40 930 | 1 931 | 10 932 | 9.778537 933 | 20 934 | 9.776217 935 | 30 936 | 0.0 937 | 10 938 | 9.746436 939 | 20 940 | 9.808318 941 | 30 942 | 0.0 943 | 10 944 | 9.702898 945 | 20 946 | 9.826352 947 | 30 948 | 0.0 949 | 10 950 | 9.657500 951 | 20 952 | 9.826352 953 | 30 954 | 0.0 955 | 0 956 | LWPOLYLINE 957 | 5 958 | 106 959 | 100 960 | AcDbEntity 961 | 8 962 | 0 963 | 62 964 | 7 965 | 100 966 | AcDbPolyline 967 | 90 968 | 2 969 | 70 970 | 0 971 | 10 972 | 10.007500 973 | 20 974 | 0.005180 975 | 30 976 | 0.0 977 | 10 978 | 0.007500 979 | 20 980 | 0.005180 981 | 30 982 | 0.0 983 | 0 984 | SPLINE 985 | 5 986 | 107 987 | 100 988 | AcDbEntity 989 | 8 990 | 0 991 | 62 992 | 7 993 | 100 994 | AcDbSpline 995 | 70 996 | 8 997 | 71 998 | 3 999 | 72 1000 | 8 1001 | 73 1002 | 4 1003 | 74 1004 | 0 1005 | 40 1006 | 0 1007 | 40 1008 | 0 1009 | 40 1010 | 0 1011 | 40 1012 | 0 1013 | 40 1014 | 1 1015 | 40 1016 | 1 1017 | 40 1018 | 1 1019 | 40 1020 | 1 1021 | 10 1022 | 0.357500 1023 | 20 1024 | 0.526352 1025 | 30 1026 | 0.0 1027 | 10 1028 | 0.288267 1029 | 20 1030 | 0.526352 1031 | 30 1032 | 0.0 1033 | 10 1034 | 0.225852 1035 | 20 1036 | 0.484648 1037 | 30 1038 | 0.0 1039 | 10 1040 | 0.199357 1041 | 20 1042 | 0.420685 1043 | 30 1044 | 0.0 1045 | 0 1046 | SPLINE 1047 | 5 1048 | 108 1049 | 100 1050 | AcDbEntity 1051 | 8 1052 | 0 1053 | 62 1054 | 7 1055 | 100 1056 | AcDbSpline 1057 | 70 1058 | 8 1059 | 71 1060 | 3 1061 | 72 1062 | 8 1063 | 73 1064 | 4 1065 | 74 1066 | 0 1067 | 40 1068 | 0 1069 | 40 1070 | 0 1071 | 40 1072 | 0 1073 | 40 1074 | 0 1075 | 40 1076 | 1 1077 | 40 1078 | 1 1079 | 40 1080 | 1 1081 | 40 1082 | 1 1083 | 10 1084 | 0.199357 1085 | 20 1086 | 0.420685 1087 | 30 1088 | 0.0 1089 | 10 1090 | 0.172863 1091 | 20 1092 | 0.356722 1093 | 30 1094 | 0.0 1095 | 10 1096 | 0.187508 1097 | 20 1098 | 0.283098 1099 | 30 1100 | 0.0 1101 | 10 1102 | 0.236463 1103 | 20 1104 | 0.234143 1105 | 30 1106 | 0.0 1107 | 0 1108 | SPLINE 1109 | 5 1110 | 109 1111 | 100 1112 | AcDbEntity 1113 | 8 1114 | 0 1115 | 62 1116 | 7 1117 | 100 1118 | AcDbSpline 1119 | 70 1120 | 8 1121 | 71 1122 | 3 1123 | 72 1124 | 8 1125 | 73 1126 | 4 1127 | 74 1128 | 0 1129 | 40 1130 | 0 1131 | 40 1132 | 0 1133 | 40 1134 | 0 1135 | 40 1136 | 0 1137 | 40 1138 | 1 1139 | 40 1140 | 1 1141 | 40 1142 | 1 1143 | 40 1144 | 1 1145 | 10 1146 | 0.236463 1147 | 20 1148 | 0.234143 1149 | 30 1150 | 0.0 1151 | 10 1152 | 0.285418 1153 | 20 1154 | 0.185188 1155 | 30 1156 | 0.0 1157 | 10 1158 | 0.359042 1159 | 20 1160 | 0.170543 1161 | 30 1162 | 0.0 1163 | 10 1164 | 0.423005 1165 | 20 1166 | 0.197037 1167 | 30 1168 | 0.0 1169 | 0 1170 | SPLINE 1171 | 5 1172 | 10a 1173 | 100 1174 | AcDbEntity 1175 | 8 1176 | 0 1177 | 62 1178 | 7 1179 | 100 1180 | AcDbSpline 1181 | 70 1182 | 8 1183 | 71 1184 | 3 1185 | 72 1186 | 8 1187 | 73 1188 | 4 1189 | 74 1190 | 0 1191 | 40 1192 | 0 1193 | 40 1194 | 0 1195 | 40 1196 | 0 1197 | 40 1198 | 0 1199 | 40 1200 | 1 1201 | 40 1202 | 1 1203 | 40 1204 | 1 1205 | 40 1206 | 1 1207 | 10 1208 | 0.423005 1209 | 20 1210 | 0.197037 1211 | 30 1212 | 0.0 1213 | 10 1214 | 0.486968 1215 | 20 1216 | 0.223532 1217 | 30 1218 | 0.0 1219 | 10 1220 | 0.528672 1221 | 20 1222 | 0.285947 1223 | 30 1224 | 0.0 1225 | 10 1226 | 0.528672 1227 | 20 1228 | 0.355180 1229 | 30 1230 | 0.0 1231 | 0 1232 | SPLINE 1233 | 5 1234 | 10b 1235 | 100 1236 | AcDbEntity 1237 | 8 1238 | 0 1239 | 62 1240 | 7 1241 | 100 1242 | AcDbSpline 1243 | 70 1244 | 8 1245 | 71 1246 | 3 1247 | 72 1248 | 8 1249 | 73 1250 | 4 1251 | 74 1252 | 0 1253 | 40 1254 | 0 1255 | 40 1256 | 0 1257 | 40 1258 | 0 1259 | 40 1260 | 0 1261 | 40 1262 | 1 1263 | 40 1264 | 1 1265 | 40 1266 | 1 1267 | 40 1268 | 1 1269 | 10 1270 | 0.528672 1271 | 20 1272 | 0.355180 1273 | 30 1274 | 0.0 1275 | 10 1276 | 0.528672 1277 | 20 1278 | 0.449716 1279 | 30 1280 | 0.0 1281 | 10 1282 | 0.452036 1283 | 20 1284 | 0.526352 1285 | 30 1286 | 0.0 1287 | 10 1288 | 0.357500 1289 | 20 1290 | 0.526352 1291 | 30 1292 | 0.0 1293 | 0 1294 | LWPOLYLINE 1295 | 5 1296 | 10c 1297 | 100 1298 | AcDbEntity 1299 | 8 1300 | 0 1301 | 62 1302 | 7 1303 | 100 1304 | AcDbPolyline 1305 | 90 1306 | 1 1307 | 70 1308 | 1 1309 | 10 1310 | 9.657500 1311 | 20 1312 | 9.826352 1313 | 30 1314 | 0.0 1315 | 0 1316 | LWPOLYLINE 1317 | 5 1318 | 10d 1319 | 100 1320 | AcDbEntity 1321 | 8 1322 | 0 1323 | 62 1324 | 7 1325 | 100 1326 | AcDbPolyline 1327 | 90 1328 | 1 1329 | 70 1330 | 1 1331 | 10 1332 | 0.357500 1333 | 20 1334 | 0.526352 1335 | 30 1336 | 0.0 1337 | 0 1338 | SPLINE 1339 | 5 1340 | 10e 1341 | 100 1342 | AcDbEntity 1343 | 8 1344 | 0 1345 | 62 1346 | 7 1347 | 100 1348 | AcDbSpline 1349 | 70 1350 | 8 1351 | 71 1352 | 3 1353 | 72 1354 | 8 1355 | 73 1356 | 4 1357 | 74 1358 | 0 1359 | 40 1360 | 0 1361 | 40 1362 | 0 1363 | 40 1364 | 0 1365 | 40 1366 | 0 1367 | 40 1368 | 1 1369 | 40 1370 | 1 1371 | 40 1372 | 1 1373 | 40 1374 | 1 1375 | 10 1376 | 0.357500 1377 | 20 1378 | 9.826352 1379 | 30 1380 | 0.0 1381 | 10 1382 | 0.288267 1383 | 20 1384 | 9.826352 1385 | 30 1386 | 0.0 1387 | 10 1388 | 0.225852 1389 | 20 1390 | 9.784648 1391 | 30 1392 | 0.0 1393 | 10 1394 | 0.199357 1395 | 20 1396 | 9.720685 1397 | 30 1398 | 0.0 1399 | 0 1400 | SPLINE 1401 | 5 1402 | 10f 1403 | 100 1404 | AcDbEntity 1405 | 8 1406 | 0 1407 | 62 1408 | 7 1409 | 100 1410 | AcDbSpline 1411 | 70 1412 | 8 1413 | 71 1414 | 3 1415 | 72 1416 | 8 1417 | 73 1418 | 4 1419 | 74 1420 | 0 1421 | 40 1422 | 0 1423 | 40 1424 | 0 1425 | 40 1426 | 0 1427 | 40 1428 | 0 1429 | 40 1430 | 1 1431 | 40 1432 | 1 1433 | 40 1434 | 1 1435 | 40 1436 | 1 1437 | 10 1438 | 0.199357 1439 | 20 1440 | 9.720685 1441 | 30 1442 | 0.0 1443 | 10 1444 | 0.172863 1445 | 20 1446 | 9.656722 1447 | 30 1448 | 0.0 1449 | 10 1450 | 0.187508 1451 | 20 1452 | 9.583098 1453 | 30 1454 | 0.0 1455 | 10 1456 | 0.236463 1457 | 20 1458 | 9.534143 1459 | 30 1460 | 0.0 1461 | 0 1462 | SPLINE 1463 | 5 1464 | 110 1465 | 100 1466 | AcDbEntity 1467 | 8 1468 | 0 1469 | 62 1470 | 7 1471 | 100 1472 | AcDbSpline 1473 | 70 1474 | 8 1475 | 71 1476 | 3 1477 | 72 1478 | 8 1479 | 73 1480 | 4 1481 | 74 1482 | 0 1483 | 40 1484 | 0 1485 | 40 1486 | 0 1487 | 40 1488 | 0 1489 | 40 1490 | 0 1491 | 40 1492 | 1 1493 | 40 1494 | 1 1495 | 40 1496 | 1 1497 | 40 1498 | 1 1499 | 10 1500 | 0.236463 1501 | 20 1502 | 9.534143 1503 | 30 1504 | 0.0 1505 | 10 1506 | 0.285418 1507 | 20 1508 | 9.485188 1509 | 30 1510 | 0.0 1511 | 10 1512 | 0.359042 1513 | 20 1514 | 9.470543 1515 | 30 1516 | 0.0 1517 | 10 1518 | 0.423005 1519 | 20 1520 | 9.497037 1521 | 30 1522 | 0.0 1523 | 0 1524 | SPLINE 1525 | 5 1526 | 111 1527 | 100 1528 | AcDbEntity 1529 | 8 1530 | 0 1531 | 62 1532 | 7 1533 | 100 1534 | AcDbSpline 1535 | 70 1536 | 8 1537 | 71 1538 | 3 1539 | 72 1540 | 8 1541 | 73 1542 | 4 1543 | 74 1544 | 0 1545 | 40 1546 | 0 1547 | 40 1548 | 0 1549 | 40 1550 | 0 1551 | 40 1552 | 0 1553 | 40 1554 | 1 1555 | 40 1556 | 1 1557 | 40 1558 | 1 1559 | 40 1560 | 1 1561 | 10 1562 | 0.423005 1563 | 20 1564 | 9.497037 1565 | 30 1566 | 0.0 1567 | 10 1568 | 0.486968 1569 | 20 1570 | 9.523532 1571 | 30 1572 | 0.0 1573 | 10 1574 | 0.528672 1575 | 20 1576 | 9.585947 1577 | 30 1578 | 0.0 1579 | 10 1580 | 0.528672 1581 | 20 1582 | 9.655180 1583 | 30 1584 | 0.0 1585 | 0 1586 | SPLINE 1587 | 5 1588 | 112 1589 | 100 1590 | AcDbEntity 1591 | 8 1592 | 0 1593 | 62 1594 | 7 1595 | 100 1596 | AcDbSpline 1597 | 70 1598 | 8 1599 | 71 1600 | 3 1601 | 72 1602 | 8 1603 | 73 1604 | 4 1605 | 74 1606 | 0 1607 | 40 1608 | 0 1609 | 40 1610 | 0 1611 | 40 1612 | 0 1613 | 40 1614 | 0 1615 | 40 1616 | 1 1617 | 40 1618 | 1 1619 | 40 1620 | 1 1621 | 40 1622 | 1 1623 | 10 1624 | 0.528672 1625 | 20 1626 | 9.655180 1627 | 30 1628 | 0.0 1629 | 10 1630 | 0.528672 1631 | 20 1632 | 9.749716 1633 | 30 1634 | 0.0 1635 | 10 1636 | 0.452036 1637 | 20 1638 | 9.826352 1639 | 30 1640 | 0.0 1641 | 10 1642 | 0.357500 1643 | 20 1644 | 9.826352 1645 | 30 1646 | 0.0 1647 | 0 1648 | LWPOLYLINE 1649 | 5 1650 | 113 1651 | 100 1652 | AcDbEntity 1653 | 8 1654 | 0 1655 | 62 1656 | 7 1657 | 100 1658 | AcDbPolyline 1659 | 90 1660 | 2 1661 | 70 1662 | 0 1663 | 10 1664 | 0.007500 1665 | 20 1666 | 10.005180 1667 | 30 1668 | 0.0 1669 | 10 1670 | 10.007500 1671 | 20 1672 | 10.005180 1673 | 30 1674 | 0.0 1675 | 0 1676 | LWPOLYLINE 1677 | 5 1678 | 114 1679 | 100 1680 | AcDbEntity 1681 | 8 1682 | 0 1683 | 62 1684 | 7 1685 | 100 1686 | AcDbPolyline 1687 | 90 1688 | 1 1689 | 70 1690 | 1 1691 | 10 1692 | 0.357500 1693 | 20 1694 | 9.826352 1695 | 30 1696 | 0.0 1697 | 0 1698 | SPLINE 1699 | 5 1700 | 115 1701 | 100 1702 | AcDbEntity 1703 | 8 1704 | 0 1705 | 62 1706 | 7 1707 | 100 1708 | AcDbSpline 1709 | 70 1710 | 8 1711 | 71 1712 | 3 1713 | 72 1714 | 8 1715 | 73 1716 | 4 1717 | 74 1718 | 0 1719 | 40 1720 | 0 1721 | 40 1722 | 0 1723 | 40 1724 | 0 1725 | 40 1726 | 0 1727 | 40 1728 | 1 1729 | 40 1730 | 1 1731 | 40 1732 | 1 1733 | 40 1734 | 1 1735 | 10 1736 | 9.657500 1737 | 20 1738 | 0.531352 1739 | 30 1740 | 0.0 1741 | 10 1742 | 9.588267 1743 | 20 1744 | 0.531352 1745 | 30 1746 | 0.0 1747 | 10 1748 | 9.525852 1749 | 20 1750 | 0.489648 1751 | 30 1752 | 0.0 1753 | 10 1754 | 9.499357 1755 | 20 1756 | 0.425685 1757 | 30 1758 | 0.0 1759 | 0 1760 | SPLINE 1761 | 5 1762 | 116 1763 | 100 1764 | AcDbEntity 1765 | 8 1766 | 0 1767 | 62 1768 | 7 1769 | 100 1770 | AcDbSpline 1771 | 70 1772 | 8 1773 | 71 1774 | 3 1775 | 72 1776 | 8 1777 | 73 1778 | 4 1779 | 74 1780 | 0 1781 | 40 1782 | 0 1783 | 40 1784 | 0 1785 | 40 1786 | 0 1787 | 40 1788 | 0 1789 | 40 1790 | 1 1791 | 40 1792 | 1 1793 | 40 1794 | 1 1795 | 40 1796 | 1 1797 | 10 1798 | 9.499357 1799 | 20 1800 | 0.425685 1801 | 30 1802 | 0.0 1803 | 10 1804 | 9.472863 1805 | 20 1806 | 0.361722 1807 | 30 1808 | 0.0 1809 | 10 1810 | 9.487508 1811 | 20 1812 | 0.288098 1813 | 30 1814 | 0.0 1815 | 10 1816 | 9.536463 1817 | 20 1818 | 0.239143 1819 | 30 1820 | 0.0 1821 | 0 1822 | SPLINE 1823 | 5 1824 | 117 1825 | 100 1826 | AcDbEntity 1827 | 8 1828 | 0 1829 | 62 1830 | 7 1831 | 100 1832 | AcDbSpline 1833 | 70 1834 | 8 1835 | 71 1836 | 3 1837 | 72 1838 | 8 1839 | 73 1840 | 4 1841 | 74 1842 | 0 1843 | 40 1844 | 0 1845 | 40 1846 | 0 1847 | 40 1848 | 0 1849 | 40 1850 | 0 1851 | 40 1852 | 1 1853 | 40 1854 | 1 1855 | 40 1856 | 1 1857 | 40 1858 | 1 1859 | 10 1860 | 9.536463 1861 | 20 1862 | 0.239143 1863 | 30 1864 | 0.0 1865 | 10 1866 | 9.585418 1867 | 20 1868 | 0.190188 1869 | 30 1870 | 0.0 1871 | 10 1872 | 9.659042 1873 | 20 1874 | 0.175543 1875 | 30 1876 | 0.0 1877 | 10 1878 | 9.723005 1879 | 20 1880 | 0.202037 1881 | 30 1882 | 0.0 1883 | 0 1884 | SPLINE 1885 | 5 1886 | 118 1887 | 100 1888 | AcDbEntity 1889 | 8 1890 | 0 1891 | 62 1892 | 7 1893 | 100 1894 | AcDbSpline 1895 | 70 1896 | 8 1897 | 71 1898 | 3 1899 | 72 1900 | 8 1901 | 73 1902 | 4 1903 | 74 1904 | 0 1905 | 40 1906 | 0 1907 | 40 1908 | 0 1909 | 40 1910 | 0 1911 | 40 1912 | 0 1913 | 40 1914 | 1 1915 | 40 1916 | 1 1917 | 40 1918 | 1 1919 | 40 1920 | 1 1921 | 10 1922 | 9.723005 1923 | 20 1924 | 0.202037 1925 | 30 1926 | 0.0 1927 | 10 1928 | 9.786968 1929 | 20 1930 | 0.228532 1931 | 30 1932 | 0.0 1933 | 10 1934 | 9.828672 1935 | 20 1936 | 0.290947 1937 | 30 1938 | 0.0 1939 | 10 1940 | 9.828672 1941 | 20 1942 | 0.360180 1943 | 30 1944 | 0.0 1945 | 0 1946 | SPLINE 1947 | 5 1948 | 119 1949 | 100 1950 | AcDbEntity 1951 | 8 1952 | 0 1953 | 62 1954 | 7 1955 | 100 1956 | AcDbSpline 1957 | 70 1958 | 8 1959 | 71 1960 | 3 1961 | 72 1962 | 8 1963 | 73 1964 | 4 1965 | 74 1966 | 0 1967 | 40 1968 | 0 1969 | 40 1970 | 0 1971 | 40 1972 | 0 1973 | 40 1974 | 0 1975 | 40 1976 | 1 1977 | 40 1978 | 1 1979 | 40 1980 | 1 1981 | 40 1982 | 1 1983 | 10 1984 | 9.828672 1985 | 20 1986 | 0.360180 1987 | 30 1988 | 0.0 1989 | 10 1990 | 9.828672 1991 | 20 1992 | 0.405578 1993 | 30 1994 | 0.0 1995 | 10 1996 | 9.810638 1997 | 20 1998 | 0.449116 1999 | 30 2000 | 0.0 2001 | 10 2002 | 9.778537 2003 | 20 2004 | 0.481217 2005 | 30 2006 | 0.0 2007 | 0 2008 | SPLINE 2009 | 5 2010 | 11a 2011 | 100 2012 | AcDbEntity 2013 | 8 2014 | 0 2015 | 62 2016 | 7 2017 | 100 2018 | AcDbSpline 2019 | 70 2020 | 8 2021 | 71 2022 | 3 2023 | 72 2024 | 8 2025 | 73 2026 | 4 2027 | 74 2028 | 0 2029 | 40 2030 | 0 2031 | 40 2032 | 0 2033 | 40 2034 | 0 2035 | 40 2036 | 0 2037 | 40 2038 | 1 2039 | 40 2040 | 1 2041 | 40 2042 | 1 2043 | 40 2044 | 1 2045 | 10 2046 | 9.778537 2047 | 20 2048 | 0.481217 2049 | 30 2050 | 0.0 2051 | 10 2052 | 9.746436 2053 | 20 2054 | 0.513318 2055 | 30 2056 | 0.0 2057 | 10 2058 | 9.702898 2059 | 20 2060 | 0.531352 2061 | 30 2062 | 0.0 2063 | 10 2064 | 9.657500 2065 | 20 2066 | 0.531352 2067 | 30 2068 | 0.0 2069 | 0 2070 | LWPOLYLINE 2071 | 5 2072 | 11b 2073 | 100 2074 | AcDbEntity 2075 | 8 2076 | 0 2077 | 62 2078 | 7 2079 | 100 2080 | AcDbPolyline 2081 | 90 2082 | 2 2083 | 70 2084 | 0 2085 | 10 2086 | 10.007500 2087 | 20 2088 | 10.005180 2089 | 30 2090 | 0.0 2091 | 10 2092 | 10.007500 2093 | 20 2094 | 0.005180 2095 | 30 2096 | 0.0 2097 | 0 2098 | LWPOLYLINE 2099 | 5 2100 | 11c 2101 | 100 2102 | AcDbEntity 2103 | 8 2104 | 0 2105 | 62 2106 | 7 2107 | 100 2108 | AcDbPolyline 2109 | 90 2110 | 1 2111 | 70 2112 | 1 2113 | 10 2114 | 9.657500 2115 | 20 2116 | 0.531352 2117 | 30 2118 | 0.0 2119 | 0 2120 | LWPOLYLINE 2121 | 5 2122 | 11d 2123 | 100 2124 | AcDbEntity 2125 | 8 2126 | 0 2127 | 62 2128 | 7 2129 | 100 2130 | AcDbPolyline 2131 | 90 2132 | 2 2133 | 70 2134 | 0 2135 | 10 2136 | 0.007500 2137 | 20 2138 | 0.005180 2139 | 30 2140 | 0.0 2141 | 10 2142 | 0.007500 2143 | 20 2144 | 10.005180 2145 | 30 2146 | 0.0 2147 | 0 2148 | ENDSEC 2149 | 0 2150 | SECTION 2151 | 2 2152 | OBJECTS 2153 | 0 2154 | DICTIONARY 2155 | 5 2156 | C 2157 | 330 2158 | 0 2159 | 100 2160 | AcDbDictionary 2161 | 3 2162 | ACAD_GROUP 2163 | 350 2164 | D 2165 | 3 2166 | ACAD_MLINESTYLE 2167 | 350 2168 | 17 2169 | 0 2170 | DICTIONARY 2171 | 5 2172 | D 2173 | 330 2174 | C 2175 | 100 2176 | AcDbDictionary 2177 | 0 2178 | DICTIONARY 2179 | 5 2180 | 1A 2181 | 330 2182 | C 2183 | 100 2184 | AcDbDictionary 2185 | 0 2186 | DICTIONARY 2187 | 5 2188 | 17 2189 | 330 2190 | C 2191 | 100 2192 | AcDbDictionary 2193 | 3 2194 | STANDARD 2195 | 350 2196 | 18 2197 | 0 2198 | DICTIONARY 2199 | 5 2200 | 19 2201 | 330 2202 | C 2203 | 100 2204 | AcDbDictionary 2205 | 0 2206 | ENDSEC 2207 | 0 2208 | EOF 2209 | -------------------------------------------------------------------------------- /panel/back_panel/back_panel-Edge_Cuts.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | SVG Picture created as back_panel-Edge_Cuts.svg date 2023/07/12 19:29:54 11 | Picture generated by PCBNEW 12 | 15 | 16 | 19 | 20 | 23 | 26 | 27 | 30 | 31 | 32 | 33 | 36 | 39 | 40 | 43 | 44 | 45 | 48 | 51 | 52 | 55 | 56 | 57 | 60 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /panel/back_panel/back_panel.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | 3 | (general 4 | (thickness 1.6) 5 | ) 6 | 7 | (paper "A4") 8 | (layers 9 | (0 "F.Cu" signal) 10 | (31 "B.Cu" signal) 11 | (32 "B.Adhes" user "B.Adhesive") 12 | (33 "F.Adhes" user "F.Adhesive") 13 | (34 "B.Paste" user) 14 | (35 "F.Paste" user) 15 | (36 "B.SilkS" user "B.Silkscreen") 16 | (37 "F.SilkS" user "F.Silkscreen") 17 | (38 "B.Mask" user) 18 | (39 "F.Mask" user) 19 | (40 "Dwgs.User" user "User.Drawings") 20 | (41 "Cmts.User" user "User.Comments") 21 | (42 "Eco1.User" user "User.Eco1") 22 | (43 "Eco2.User" user "User.Eco2") 23 | (44 "Edge.Cuts" user) 24 | (45 "Margin" user) 25 | (46 "B.CrtYd" user "B.Courtyard") 26 | (47 "F.CrtYd" user "F.Courtyard") 27 | (48 "B.Fab" user) 28 | (49 "F.Fab" user) 29 | (50 "User.1" user) 30 | (51 "User.2" user) 31 | (52 "User.3" user) 32 | (53 "User.4" user) 33 | (54 "User.5" user) 34 | (55 "User.6" user) 35 | (56 "User.7" user) 36 | (57 "User.8" user) 37 | (58 "User.9" user) 38 | ) 39 | 40 | (setup 41 | (pad_to_mask_clearance 0) 42 | (pcbplotparams 43 | (layerselection 0x00010fc_ffffffff) 44 | (disableapertmacros false) 45 | (usegerberextensions false) 46 | (usegerberattributes true) 47 | (usegerberadvancedattributes true) 48 | (creategerberjobfile true) 49 | (svguseinch false) 50 | (svgprecision 6) 51 | (excludeedgelayer true) 52 | (plotframeref false) 53 | (viasonmask false) 54 | (mode 1) 55 | (useauxorigin false) 56 | (hpglpennumber 1) 57 | (hpglpenspeed 20) 58 | (hpglpendiameter 15.000000) 59 | (dxfpolygonmode true) 60 | (dxfimperialunits true) 61 | (dxfusepcbnewfont true) 62 | (psnegative false) 63 | (psa4output false) 64 | (plotreference true) 65 | (plotvalue true) 66 | (plotinvisibletext false) 67 | (sketchpadsonfab false) 68 | (subtractmaskfromsilk false) 69 | (outputformat 1) 70 | (mirror false) 71 | (drillshape 0) 72 | (scaleselection 1) 73 | (outputdirectory "back_panel") 74 | ) 75 | ) 76 | 77 | (net 0 "") 78 | 79 | (gr_line (start 181.65 144.75) (end 81.65 144.75) (layer "Edge.Cuts") (width 0.15) (tstamp 4741c70c-a80d-492c-8ef1-ae8f707df09b)) 80 | (gr_circle (center 178.15 48.25) (end 179.85 48.05) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 5ba42875-9d00-47b4-afd8-fcd05636c058)) 81 | (gr_circle (center 85.15 141.25) (end 86.85 141.05) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 87c5a91a-6d6d-4436-941f-f902f73712a3)) 82 | (gr_line (start 81.65 44.75) (end 181.65 44.75) (layer "Edge.Cuts") (width 0.15) (tstamp a0d946db-70cd-4f06-bac9-a39d386c4979)) 83 | (gr_circle (center 85.15 48.25) (end 86.85 48.05) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp da4aaf10-19ff-4553-871a-f9efd75f1742)) 84 | (gr_line (start 181.65 44.75) (end 181.65 144.75) (layer "Edge.Cuts") (width 0.15) (tstamp df1bfd07-f345-4276-a29f-75b983bb810b)) 85 | (gr_circle (center 178.15 141.2) (end 179.85 141) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp f4799c6a-5da3-45f3-ac87-85b7c0183f2d)) 86 | (gr_line (start 81.65 144.75) (end 81.65 44.75) (layer "Edge.Cuts") (width 0.15) (tstamp fe5c8ed3-6d2c-4b27-8757-fad194a56eb8)) 87 | (gr_text "JLCJLCJLCJLC" (at 171.95 143.55) (layer "B.SilkS") (tstamp 08ed9e49-b01b-4150-a48e-076f20ce2c5f) 88 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 89 | ) 90 | 91 | ) 92 | -------------------------------------------------------------------------------- /panel/back_panel/back_panel.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 13, 41 | 14, 42 | 15, 43 | 16, 44 | 17, 45 | 18, 46 | 19, 47 | 20, 48 | 21, 49 | 22, 50 | 23, 51 | 24, 52 | 25, 53 | 26, 54 | 27, 55 | 28, 56 | 29, 57 | 30, 58 | 32, 59 | 33, 60 | 34, 61 | 35, 62 | 36 63 | ], 64 | "visible_layers": "fffffff_ffffffff", 65 | "zone_display_mode": 0 66 | }, 67 | "meta": { 68 | "filename": "back_panel.kicad_prl", 69 | "version": 3 70 | }, 71 | "project": { 72 | "files": [] 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /panel/back_panel/back_panel.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.09999999999999999, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.15, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.15, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "warning", 83 | "silk_overlap": "warning", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.0, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "solder_mask_clearance": 0.0, 112 | "solder_mask_min_width": 0.0, 113 | "use_height_for_length_calcs": true 114 | }, 115 | "track_widths": [], 116 | "via_dimensions": [], 117 | "zones_allow_external_fillets": false, 118 | "zones_use_no_outline": true 119 | }, 120 | "layer_presets": [] 121 | }, 122 | "boards": [], 123 | "cvpcb": { 124 | "equivalence_files": [] 125 | }, 126 | "libraries": { 127 | "pinned_footprint_libs": [], 128 | "pinned_symbol_libs": [] 129 | }, 130 | "meta": { 131 | "filename": "default_panel.kicad_pro", 132 | "version": 1 133 | }, 134 | "net_settings": { 135 | "classes": [ 136 | { 137 | "bus_width": 12.0, 138 | "clearance": 0.2, 139 | "diff_pair_gap": 0.25, 140 | "diff_pair_via_gap": 0.25, 141 | "diff_pair_width": 0.2, 142 | "line_style": 0, 143 | "microvia_diameter": 0.3, 144 | "microvia_drill": 0.1, 145 | "name": "Default", 146 | "pcb_color": "rgba(0, 0, 0, 0.000)", 147 | "schematic_color": "rgba(0, 0, 0, 0.000)", 148 | "track_width": 0.25, 149 | "via_diameter": 0.8, 150 | "via_drill": 0.4, 151 | "wire_width": 6.0 152 | } 153 | ], 154 | "meta": { 155 | "version": 2 156 | }, 157 | "net_colors": null 158 | }, 159 | "pcbnew": { 160 | "last_paths": { 161 | "gencad": "", 162 | "idf": "", 163 | "netlist": "", 164 | "specctra_dsn": "", 165 | "step": "", 166 | "vrml": "" 167 | }, 168 | "page_layout_descr_file": "" 169 | }, 170 | "schematic": { 171 | "legacy_lib_dir": "", 172 | "legacy_lib_list": [] 173 | }, 174 | "sheets": [], 175 | "text_variables": {} 176 | } 177 | -------------------------------------------------------------------------------- /panel/back_panel/back_panel.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | (paper "A4") 3 | (lib_symbols) 4 | (symbol_instances) 5 | ) 6 | -------------------------------------------------------------------------------- /panel/back_panel/back_panel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/panel/back_panel/back_panel.zip -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r-Edge_Cuts.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | SVG Picture created as i_n_c_u_r-Edge_Cuts.svg date 2023/07/12 16:38:07 11 | Picture generated by PCBNEW 12 | 15 | 16 | 19 | 20 | 23 | 24 | 25 | 28 | 29 | 32 | 35 | 36 | 39 | 40 | 41 | 44 | 47 | 48 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 63 | 64 | 67 | 70 | 71 | 74 | 77 | 78 | 81 | 84 | 85 | 88 | 89 | 90 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r-F_Silkscreen.dxf: -------------------------------------------------------------------------------- 1 | 0 2 | SECTION 3 | 2 4 | HEADER 5 | 9 6 | $ACADVER 7 | 1 8 | AC1014 9 | 9 10 | $HANDSEED 11 | 5 12 | FFFF 13 | 9 14 | $INSUNITS 15 | 70 16 | 5 17 | 9 18 | $MEASUREMENT 19 | 70 20 | 1 21 | 0 22 | ENDSEC 23 | 0 24 | SECTION 25 | 2 26 | TABLES 27 | 0 28 | TABLE 29 | 2 30 | VPORT 31 | 5 32 | 8 33 | 330 34 | 0 35 | 100 36 | AcDbSymbolTable 37 | 70 38 | 4 39 | 0 40 | VPORT 41 | 5 42 | 2E 43 | 330 44 | 8 45 | 100 46 | AcDbSymbolTableRecord 47 | 100 48 | AcDbViewportTableRecord 49 | 2 50 | *ACTIVE 51 | 70 52 | 0 53 | 10 54 | 0.0 55 | 20 56 | 0.0 57 | 11 58 | 1.0 59 | 21 60 | 1.0 61 | 12 62 | 210.0 63 | 22 64 | 148.5 65 | 13 66 | 0.0 67 | 23 68 | 0.0 69 | 14 70 | 10.0 71 | 24 72 | 10.0 73 | 15 74 | 10.0 75 | 25 76 | 10.0 77 | 16 78 | 0.0 79 | 26 80 | 0.0 81 | 36 82 | 1.0 83 | 17 84 | 0.0 85 | 27 86 | 0.0 87 | 37 88 | 0.0 89 | 40 90 | 341.0 91 | 41 92 | 1.24 93 | 42 94 | 50.0 95 | 43 96 | 0.0 97 | 44 98 | 0.0 99 | 50 100 | 0.0 101 | 51 102 | 0.0 103 | 71 104 | 0 105 | 72 106 | 100 107 | 73 108 | 1 109 | 74 110 | 3 111 | 75 112 | 0 113 | 76 114 | 0 115 | 77 116 | 0 117 | 78 118 | 0 119 | 0 120 | ENDTAB 121 | 0 122 | TABLE 123 | 2 124 | LTYPE 125 | 5 126 | 5 127 | 330 128 | 0 129 | 100 130 | AcDbSymbolTable 131 | 70 132 | 1 133 | 0 134 | LTYPE 135 | 5 136 | 14 137 | 330 138 | 5 139 | 100 140 | AcDbSymbolTableRecord 141 | 100 142 | AcDbLinetypeTableRecord 143 | 2 144 | BYBLOCK 145 | 70 146 | 0 147 | 3 148 | 149 | 72 150 | 65 151 | 73 152 | 0 153 | 40 154 | 0.0 155 | 0 156 | LTYPE 157 | 5 158 | 15 159 | 330 160 | 5 161 | 100 162 | AcDbSymbolTableRecord 163 | 100 164 | AcDbLinetypeTableRecord 165 | 2 166 | BYLAYER 167 | 70 168 | 0 169 | 3 170 | 171 | 72 172 | 65 173 | 73 174 | 0 175 | 40 176 | 0.0 177 | 0 178 | LTYPE 179 | 5 180 | 16 181 | 330 182 | 5 183 | 100 184 | AcDbSymbolTableRecord 185 | 100 186 | AcDbLinetypeTableRecord 187 | 2 188 | CONTINUOUS 189 | 70 190 | 0 191 | 3 192 | Solid line 193 | 72 194 | 65 195 | 73 196 | 0 197 | 40 198 | 0.0 199 | 0 200 | ENDTAB 201 | 0 202 | TABLE 203 | 2 204 | LAYER 205 | 5 206 | 2 207 | 100 208 | AcDbSymbolTable 209 | 70 210 | 1 211 | 0 212 | LAYER 213 | 5 214 | 50 215 | 100 216 | AcDbSymbolTableRecord 217 | 100 218 | AcDbLayerTableRecord 219 | 2 220 | 0 221 | 70 222 | 0 223 | 6 224 | CONTINUOUS 225 | 0 226 | ENDTAB 227 | 0 228 | TABLE 229 | 2 230 | STYLE 231 | 5 232 | 3 233 | 330 234 | 0 235 | 100 236 | AcDbSymbolTable 237 | 70 238 | 1 239 | 0 240 | STYLE 241 | 5 242 | 11 243 | 330 244 | 3 245 | 100 246 | AcDbSymbolTableRecord 247 | 100 248 | AcDbTextStyleTableRecord 249 | 2 250 | STANDARD 251 | 70 252 | 0 253 | 40 254 | 0.0 255 | 41 256 | 1.0 257 | 50 258 | 0.0 259 | 71 260 | 0 261 | 42 262 | 2.5 263 | 3 264 | txt 265 | 4 266 | 267 | 0 268 | ENDTAB 269 | 0 270 | TABLE 271 | 2 272 | VIEW 273 | 5 274 | 6 275 | 330 276 | 0 277 | 100 278 | AcDbSymbolTable 279 | 70 280 | 0 281 | 0 282 | ENDTAB 283 | 0 284 | TABLE 285 | 2 286 | UCS 287 | 5 288 | 7 289 | 330 290 | 0 291 | 100 292 | AcDbSymbolTable 293 | 70 294 | 0 295 | 0 296 | ENDTAB 297 | 0 298 | TABLE 299 | 2 300 | APPID 301 | 5 302 | 9 303 | 330 304 | 0 305 | 100 306 | AcDbSymbolTable 307 | 70 308 | 2 309 | 0 310 | APPID 311 | 5 312 | 12 313 | 330 314 | 9 315 | 100 316 | AcDbSymbolTableRecord 317 | 100 318 | AcDbRegAppTableRecord 319 | 2 320 | ACAD 321 | 70 322 | 0 323 | 0 324 | ENDTAB 325 | 0 326 | TABLE 327 | 2 328 | DIMSTYLE 329 | 5 330 | A 331 | 330 332 | 0 333 | 100 334 | AcDbSymbolTable 335 | 70 336 | 1 337 | 0 338 | DIMSTYLE 339 | 105 340 | 27 341 | 330 342 | A 343 | 100 344 | AcDbSymbolTableRecord 345 | 100 346 | AcDbDimStyleTableRecord 347 | 2 348 | ISO-25 349 | 70 350 | 0 351 | 3 352 | 353 | 4 354 | 355 | 5 356 | 357 | 6 358 | 359 | 7 360 | 361 | 40 362 | 1.0 363 | 41 364 | 2.5 365 | 42 366 | 0.625 367 | 43 368 | 3.75 369 | 44 370 | 1.25 371 | 45 372 | 0.0 373 | 46 374 | 0.0 375 | 47 376 | 0.0 377 | 48 378 | 0.0 379 | 140 380 | 2.5 381 | 141 382 | 2.5 383 | 142 384 | 0.0 385 | 143 386 | 0.03937007874016 387 | 144 388 | 1.0 389 | 145 390 | 0.0 391 | 146 392 | 1.0 393 | 147 394 | 0.625 395 | 71 396 | 0 397 | 72 398 | 0 399 | 73 400 | 0 401 | 74 402 | 0 403 | 75 404 | 0 405 | 76 406 | 0 407 | 77 408 | 1 409 | 78 410 | 8 411 | 170 412 | 0 413 | 171 414 | 3 415 | 172 416 | 1 417 | 173 418 | 0 419 | 174 420 | 0 421 | 175 422 | 0 423 | 176 424 | 0 425 | 177 426 | 0 427 | 178 428 | 0 429 | 270 430 | 2 431 | 271 432 | 2 433 | 272 434 | 2 435 | 273 436 | 2 437 | 274 438 | 3 439 | 340 440 | 11 441 | 275 442 | 0 443 | 280 444 | 0 445 | 281 446 | 0 447 | 282 448 | 0 449 | 283 450 | 0 451 | 284 452 | 8 453 | 285 454 | 0 455 | 286 456 | 0 457 | 287 458 | 3 459 | 288 460 | 0 461 | 0 462 | ENDTAB 463 | 0 464 | TABLE 465 | 2 466 | BLOCK_RECORD 467 | 5 468 | 1 469 | 330 470 | 0 471 | 100 472 | AcDbSymbolTable 473 | 70 474 | 1 475 | 0 476 | BLOCK_RECORD 477 | 5 478 | 1F 479 | 330 480 | 1 481 | 100 482 | AcDbSymbolTableRecord 483 | 100 484 | AcDbBlockTableRecord 485 | 2 486 | *MODEL_SPACE 487 | 0 488 | BLOCK_RECORD 489 | 5 490 | 1B 491 | 330 492 | 1 493 | 100 494 | AcDbSymbolTableRecord 495 | 100 496 | AcDbBlockTableRecord 497 | 2 498 | *PAPER_SPACE 499 | 0 500 | ENDTAB 501 | 0 502 | ENDSEC 503 | 0 504 | SECTION 505 | 2 506 | BLOCKS 507 | 0 508 | BLOCK 509 | 5 510 | 20 511 | 330 512 | 1F 513 | 100 514 | AcDbEntity 515 | 8 516 | 0 517 | 100 518 | AcDbBlockBegin 519 | 2 520 | *MODEL_SPACE 521 | 70 522 | 0 523 | 10 524 | 0.0 525 | 20 526 | 0.0 527 | 30 528 | 0.0 529 | 3 530 | *MODEL_SPACE 531 | 1 532 | 533 | 0 534 | ENDBLK 535 | 5 536 | 21 537 | 330 538 | 1F 539 | 100 540 | AcDbEntity 541 | 8 542 | 0 543 | 100 544 | AcDbBlockEnd 545 | 0 546 | BLOCK 547 | 5 548 | 1C 549 | 330 550 | 1B 551 | 100 552 | AcDbEntity 553 | 67 554 | 1 555 | 8 556 | 0 557 | 100 558 | AcDbBlockBegin 559 | 2 560 | *PAPER_SPACE 561 | 1 562 | 563 | 0 564 | ENDBLK 565 | 5 566 | 1D 567 | 330 568 | 1B 569 | 100 570 | AcDbEntity 571 | 67 572 | 1 573 | 8 574 | 0 575 | 100 576 | AcDbBlockEnd 577 | 0 578 | ENDSEC 579 | 0 580 | SECTION 581 | 2 582 | ENTITIES 583 | 0 584 | LWPOLYLINE 585 | 5 586 | 100 587 | 100 588 | AcDbEntity 589 | 8 590 | 0 591 | 62 592 | 7 593 | 100 594 | AcDbPolyline 595 | 90 596 | 2 597 | 70 598 | 0 599 | 10 600 | 3.391309 601 | 20 602 | 9.604704 603 | 30 604 | 0.0 605 | 10 606 | 3.324643 607 | 20 608 | 9.699942 609 | 30 610 | 0.0 611 | 0 612 | LWPOLYLINE 613 | 5 614 | 101 615 | 100 616 | AcDbEntity 617 | 8 618 | 0 619 | 62 620 | 7 621 | 100 622 | AcDbPolyline 623 | 90 624 | 11 625 | 70 626 | 0 627 | 10 628 | 3.277024 629 | 20 630 | 9.604704 631 | 30 632 | 0.0 633 | 10 634 | 3.277024 635 | 20 636 | 9.804704 637 | 30 638 | 0.0 639 | 10 640 | 3.353214 641 | 20 642 | 9.804704 643 | 30 644 | 0.0 645 | 10 646 | 3.372262 647 | 20 648 | 9.795180 649 | 30 650 | 0.0 651 | 10 652 | 3.381786 653 | 20 654 | 9.785656 655 | 30 656 | 0.0 657 | 10 658 | 3.391309 659 | 20 660 | 9.766609 661 | 30 662 | 0.0 663 | 10 664 | 3.391309 665 | 20 666 | 9.738037 667 | 30 668 | 0.0 669 | 10 670 | 3.381786 671 | 20 672 | 9.718990 673 | 30 674 | 0.0 675 | 10 676 | 3.372262 677 | 20 678 | 9.709466 679 | 30 680 | 0.0 681 | 10 682 | 3.353214 683 | 20 684 | 9.699942 685 | 30 686 | 0.0 687 | 10 688 | 3.277024 689 | 20 690 | 9.699942 691 | 30 692 | 0.0 693 | 0 694 | LWPOLYLINE 695 | 5 696 | 102 697 | 100 698 | AcDbEntity 699 | 8 700 | 0 701 | 62 702 | 7 703 | 100 704 | AcDbPolyline 705 | 90 706 | 2 707 | 70 708 | 0 709 | 10 710 | 3.429405 711 | 20 712 | 9.585656 713 | 30 714 | 0.0 715 | 10 716 | 3.581786 717 | 20 718 | 9.585656 719 | 30 720 | 0.0 721 | 0 722 | LWPOLYLINE 723 | 5 724 | 103 725 | 100 726 | AcDbEntity 727 | 8 728 | 0 729 | 62 730 | 7 731 | 100 732 | AcDbPolyline 733 | 90 734 | 2 735 | 70 736 | 0 737 | 10 738 | 3.629405 739 | 20 740 | 9.709466 741 | 30 742 | 0.0 743 | 10 744 | 3.696071 745 | 20 746 | 9.709466 747 | 30 748 | 0.0 749 | 0 750 | LWPOLYLINE 751 | 5 752 | 104 753 | 100 754 | AcDbEntity 755 | 8 756 | 0 757 | 62 758 | 7 759 | 100 760 | AcDbPolyline 761 | 90 762 | 4 763 | 70 764 | 0 765 | 10 766 | 3.724643 767 | 20 768 | 9.604704 769 | 30 770 | 0.0 771 | 10 772 | 3.629405 773 | 20 774 | 9.604704 775 | 30 776 | 0.0 777 | 10 778 | 3.629405 779 | 20 780 | 9.804704 781 | 30 782 | 0.0 783 | 10 784 | 3.724643 785 | 20 786 | 9.804704 787 | 30 788 | 0.0 789 | 0 790 | LWPOLYLINE 791 | 5 792 | 105 793 | 100 794 | AcDbEntity 795 | 8 796 | 0 797 | 62 798 | 7 799 | 100 800 | AcDbPolyline 801 | 90 802 | 2 803 | 70 804 | 0 805 | 10 806 | 3.762738 807 | 20 808 | 9.585656 809 | 30 810 | 0.0 811 | 10 812 | 3.915119 813 | 20 814 | 9.585656 815 | 30 816 | 0.0 817 | 0 818 | LWPOLYLINE 819 | 5 820 | 106 821 | 100 822 | AcDbEntity 823 | 8 824 | 0 825 | 62 826 | 7 827 | 100 828 | AcDbPolyline 829 | 90 830 | 16 831 | 70 832 | 0 833 | 10 834 | 4.077024 835 | 20 836 | 9.623751 837 | 30 838 | 0.0 839 | 10 840 | 4.067500 841 | 20 842 | 9.614228 843 | 30 844 | 0.0 845 | 10 846 | 4.038928 847 | 20 848 | 9.604704 849 | 30 850 | 0.0 851 | 10 852 | 4.019881 853 | 20 854 | 9.604704 855 | 30 856 | 0.0 857 | 10 858 | 3.991309 859 | 20 860 | 9.614228 861 | 30 862 | 0.0 863 | 10 864 | 3.972262 865 | 20 866 | 9.633275 867 | 30 868 | 0.0 869 | 10 870 | 3.962738 871 | 20 872 | 9.652323 873 | 30 874 | 0.0 875 | 10 876 | 3.953214 877 | 20 878 | 9.690418 879 | 30 880 | 0.0 881 | 10 882 | 3.953214 883 | 20 884 | 9.718990 885 | 30 886 | 0.0 887 | 10 888 | 3.962738 889 | 20 890 | 9.757085 891 | 30 892 | 0.0 893 | 10 894 | 3.972262 895 | 20 896 | 9.776132 897 | 30 898 | 0.0 899 | 10 900 | 3.991309 901 | 20 902 | 9.795180 903 | 30 904 | 0.0 905 | 10 906 | 4.019881 907 | 20 908 | 9.804704 909 | 30 910 | 0.0 911 | 10 912 | 4.038928 913 | 20 914 | 9.804704 915 | 30 916 | 0.0 917 | 10 918 | 4.067500 919 | 20 920 | 9.795180 921 | 30 922 | 0.0 923 | 10 924 | 4.077024 925 | 20 926 | 9.785656 927 | 30 928 | 0.0 929 | 0 930 | LWPOLYLINE 931 | 5 932 | 107 933 | 100 934 | AcDbEntity 935 | 8 936 | 0 937 | 62 938 | 7 939 | 100 940 | AcDbPolyline 941 | 90 942 | 2 943 | 70 944 | 0 945 | 10 946 | 4.115119 947 | 20 948 | 9.585656 949 | 30 950 | 0.0 951 | 10 952 | 4.267500 953 | 20 954 | 9.585656 955 | 30 956 | 0.0 957 | 0 958 | LWPOLYLINE 959 | 5 960 | 108 961 | 100 962 | AcDbEntity 963 | 8 964 | 0 965 | 62 966 | 7 967 | 100 968 | AcDbPolyline 969 | 90 970 | 10 971 | 70 972 | 0 973 | 10 974 | 4.315119 975 | 20 976 | 9.804704 977 | 30 978 | 0.0 979 | 10 980 | 4.315119 981 | 20 982 | 9.642799 983 | 30 984 | 0.0 985 | 10 986 | 4.324643 987 | 20 988 | 9.623751 989 | 30 990 | 0.0 991 | 10 992 | 4.334167 993 | 20 994 | 9.614228 995 | 30 996 | 0.0 997 | 10 998 | 4.353214 999 | 20 1000 | 9.604704 1001 | 30 1002 | 0.0 1003 | 10 1004 | 4.391310 1005 | 20 1006 | 9.604704 1007 | 30 1008 | 0.0 1009 | 10 1010 | 4.410357 1011 | 20 1012 | 9.614228 1013 | 30 1014 | 0.0 1015 | 10 1016 | 4.419881 1017 | 20 1018 | 9.623751 1019 | 30 1020 | 0.0 1021 | 10 1022 | 4.429405 1023 | 20 1024 | 9.642799 1025 | 30 1026 | 0.0 1027 | 10 1028 | 4.429405 1029 | 20 1030 | 9.804704 1031 | 30 1032 | 0.0 1033 | 0 1034 | LWPOLYLINE 1035 | 5 1036 | 109 1037 | 100 1038 | AcDbEntity 1039 | 8 1040 | 0 1041 | 62 1042 | 7 1043 | 100 1044 | AcDbPolyline 1045 | 90 1046 | 2 1047 | 70 1048 | 0 1049 | 10 1050 | 4.477024 1051 | 20 1052 | 9.585656 1053 | 30 1054 | 0.0 1055 | 10 1056 | 4.629405 1057 | 20 1058 | 9.585656 1059 | 30 1060 | 0.0 1061 | 0 1062 | LWPOLYLINE 1063 | 5 1064 | 10a 1065 | 100 1066 | AcDbEntity 1067 | 8 1068 | 0 1069 | 62 1070 | 7 1071 | 100 1072 | AcDbPolyline 1073 | 90 1074 | 2 1075 | 70 1076 | 0 1077 | 10 1078 | 4.791309 1079 | 20 1080 | 9.604704 1081 | 30 1082 | 0.0 1083 | 10 1084 | 4.724643 1085 | 20 1086 | 9.699942 1087 | 30 1088 | 0.0 1089 | 0 1090 | LWPOLYLINE 1091 | 5 1092 | 10b 1093 | 100 1094 | AcDbEntity 1095 | 8 1096 | 0 1097 | 62 1098 | 7 1099 | 100 1100 | AcDbPolyline 1101 | 90 1102 | 11 1103 | 70 1104 | 0 1105 | 10 1106 | 4.677024 1107 | 20 1108 | 9.604704 1109 | 30 1110 | 0.0 1111 | 10 1112 | 4.677024 1113 | 20 1114 | 9.804704 1115 | 30 1116 | 0.0 1117 | 10 1118 | 4.753214 1119 | 20 1120 | 9.804704 1121 | 30 1122 | 0.0 1123 | 10 1124 | 4.772262 1125 | 20 1126 | 9.795180 1127 | 30 1128 | 0.0 1129 | 10 1130 | 4.781786 1131 | 20 1132 | 9.785656 1133 | 30 1134 | 0.0 1135 | 10 1136 | 4.791309 1137 | 20 1138 | 9.766609 1139 | 30 1140 | 0.0 1141 | 10 1142 | 4.791309 1143 | 20 1144 | 9.738037 1145 | 30 1146 | 0.0 1147 | 10 1148 | 4.781786 1149 | 20 1150 | 9.718990 1151 | 30 1152 | 0.0 1153 | 10 1154 | 4.772262 1155 | 20 1156 | 9.709466 1157 | 30 1158 | 0.0 1159 | 10 1160 | 4.753214 1161 | 20 1162 | 9.699942 1163 | 30 1164 | 0.0 1165 | 10 1166 | 4.677024 1167 | 20 1168 | 9.699942 1169 | 30 1170 | 0.0 1171 | 0 1172 | LWPOLYLINE 1173 | 5 1174 | 10c 1175 | 100 1176 | AcDbEntity 1177 | 8 1178 | 0 1179 | 62 1180 | 7 1181 | 100 1182 | AcDbPolyline 1183 | 90 1184 | 2 1185 | 70 1186 | 0 1187 | 10 1188 | 5.029405 1189 | 20 1190 | 9.680894 1191 | 30 1192 | 0.0 1193 | 10 1194 | 5.181786 1195 | 20 1196 | 9.680894 1197 | 30 1198 | 0.0 1199 | 0 1200 | LWPOLYLINE 1201 | 5 1202 | 10d 1203 | 100 1204 | AcDbEntity 1205 | 8 1206 | 0 1207 | 62 1208 | 7 1209 | 100 1210 | AcDbPolyline 1211 | 90 1212 | 2 1213 | 70 1214 | 0 1215 | 10 1216 | 5.105595 1217 | 20 1218 | 9.604704 1219 | 30 1220 | 0.0 1221 | 10 1222 | 5.105595 1223 | 20 1224 | 9.757085 1225 | 30 1226 | 0.0 1227 | 0 1228 | LWPOLYLINE 1229 | 5 1230 | 10e 1231 | 100 1232 | AcDbEntity 1233 | 8 1234 | 0 1235 | 62 1236 | 7 1237 | 100 1238 | AcDbPolyline 1239 | 90 1240 | 2 1241 | 70 1242 | 0 1243 | 10 1244 | 5.429405 1245 | 20 1246 | 9.604704 1247 | 30 1248 | 0.0 1249 | 10 1250 | 5.429405 1251 | 20 1252 | 9.804704 1253 | 30 1254 | 0.0 1255 | 0 1256 | LWPOLYLINE 1257 | 5 1258 | 10f 1259 | 100 1260 | AcDbEntity 1261 | 8 1262 | 0 1263 | 62 1264 | 7 1265 | 100 1266 | AcDbPolyline 1267 | 90 1268 | 2 1269 | 70 1270 | 0 1271 | 10 1272 | 5.477024 1273 | 20 1274 | 9.585656 1275 | 30 1276 | 0.0 1277 | 10 1278 | 5.629405 1279 | 20 1280 | 9.585656 1281 | 30 1282 | 0.0 1283 | 0 1284 | LWPOLYLINE 1285 | 5 1286 | 110 1287 | 100 1288 | AcDbEntity 1289 | 8 1290 | 0 1291 | 62 1292 | 7 1293 | 100 1294 | AcDbPolyline 1295 | 90 1296 | 4 1297 | 70 1298 | 0 1299 | 10 1300 | 5.677024 1301 | 20 1302 | 9.604704 1303 | 30 1304 | 0.0 1305 | 10 1306 | 5.677024 1307 | 20 1308 | 9.804704 1309 | 30 1310 | 0.0 1311 | 10 1312 | 5.791309 1313 | 20 1314 | 9.604704 1315 | 30 1316 | 0.0 1317 | 10 1318 | 5.791309 1319 | 20 1320 | 9.804704 1321 | 30 1322 | 0.0 1323 | 0 1324 | LWPOLYLINE 1325 | 5 1326 | 111 1327 | 100 1328 | AcDbEntity 1329 | 8 1330 | 0 1331 | 62 1332 | 7 1333 | 100 1334 | AcDbPolyline 1335 | 90 1336 | 2 1337 | 70 1338 | 0 1339 | 10 1340 | 5.838928 1341 | 20 1342 | 9.585656 1343 | 30 1344 | 0.0 1345 | 10 1346 | 5.991309 1347 | 20 1348 | 9.585656 1349 | 30 1350 | 0.0 1351 | 0 1352 | LWPOLYLINE 1353 | 5 1354 | 112 1355 | 100 1356 | AcDbEntity 1357 | 8 1358 | 0 1359 | 62 1360 | 7 1361 | 100 1362 | AcDbPolyline 1363 | 90 1364 | 16 1365 | 70 1366 | 0 1367 | 10 1368 | 6.153214 1369 | 20 1370 | 9.623751 1371 | 30 1372 | 0.0 1373 | 10 1374 | 6.143690 1375 | 20 1376 | 9.614228 1377 | 30 1378 | 0.0 1379 | 10 1380 | 6.115119 1381 | 20 1382 | 9.604704 1383 | 30 1384 | 0.0 1385 | 10 1386 | 6.096071 1387 | 20 1388 | 9.604704 1389 | 30 1390 | 0.0 1391 | 10 1392 | 6.067500 1393 | 20 1394 | 9.614228 1395 | 30 1396 | 0.0 1397 | 10 1398 | 6.048452 1399 | 20 1400 | 9.633275 1401 | 30 1402 | 0.0 1403 | 10 1404 | 6.038928 1405 | 20 1406 | 9.652323 1407 | 30 1408 | 0.0 1409 | 10 1410 | 6.029405 1411 | 20 1412 | 9.690418 1413 | 30 1414 | 0.0 1415 | 10 1416 | 6.029405 1417 | 20 1418 | 9.718990 1419 | 30 1420 | 0.0 1421 | 10 1422 | 6.038928 1423 | 20 1424 | 9.757085 1425 | 30 1426 | 0.0 1427 | 10 1428 | 6.048452 1429 | 20 1430 | 9.776132 1431 | 30 1432 | 0.0 1433 | 10 1434 | 6.067500 1435 | 20 1436 | 9.795180 1437 | 30 1438 | 0.0 1439 | 10 1440 | 6.096071 1441 | 20 1442 | 9.804704 1443 | 30 1444 | 0.0 1445 | 10 1446 | 6.115119 1447 | 20 1448 | 9.804704 1449 | 30 1450 | 0.0 1451 | 10 1452 | 6.143690 1453 | 20 1454 | 9.795180 1455 | 30 1456 | 0.0 1457 | 10 1458 | 6.153214 1459 | 20 1460 | 9.785656 1461 | 30 1462 | 0.0 1463 | 0 1464 | LWPOLYLINE 1465 | 5 1466 | 113 1467 | 100 1468 | AcDbEntity 1469 | 8 1470 | 0 1471 | 62 1472 | 7 1473 | 100 1474 | AcDbPolyline 1475 | 90 1476 | 2 1477 | 70 1478 | 0 1479 | 10 1480 | 6.191310 1481 | 20 1482 | 9.585656 1483 | 30 1484 | 0.0 1485 | 10 1486 | 6.343690 1487 | 20 1488 | 9.585656 1489 | 30 1490 | 0.0 1491 | 0 1492 | LWPOLYLINE 1493 | 5 1494 | 114 1495 | 100 1496 | AcDbEntity 1497 | 8 1498 | 0 1499 | 62 1500 | 7 1501 | 100 1502 | AcDbPolyline 1503 | 90 1504 | 10 1505 | 70 1506 | 0 1507 | 10 1508 | 6.391309 1509 | 20 1510 | 9.804704 1511 | 30 1512 | 0.0 1513 | 10 1514 | 6.391309 1515 | 20 1516 | 9.642799 1517 | 30 1518 | 0.0 1519 | 10 1520 | 6.400833 1521 | 20 1522 | 9.623751 1523 | 30 1524 | 0.0 1525 | 10 1526 | 6.410357 1527 | 20 1528 | 9.614228 1529 | 30 1530 | 0.0 1531 | 10 1532 | 6.429405 1533 | 20 1534 | 9.604704 1535 | 30 1536 | 0.0 1537 | 10 1538 | 6.467500 1539 | 20 1540 | 9.604704 1541 | 30 1542 | 0.0 1543 | 10 1544 | 6.486548 1545 | 20 1546 | 9.614228 1547 | 30 1548 | 0.0 1549 | 10 1550 | 6.496071 1551 | 20 1552 | 9.623751 1553 | 30 1554 | 0.0 1555 | 10 1556 | 6.505595 1557 | 20 1558 | 9.642799 1559 | 30 1560 | 0.0 1561 | 10 1562 | 6.505595 1563 | 20 1564 | 9.804704 1565 | 30 1566 | 0.0 1567 | 0 1568 | LWPOLYLINE 1569 | 5 1570 | 115 1571 | 100 1572 | AcDbEntity 1573 | 8 1574 | 0 1575 | 62 1576 | 7 1577 | 100 1578 | AcDbPolyline 1579 | 90 1580 | 2 1581 | 70 1582 | 0 1583 | 10 1584 | 6.553214 1585 | 20 1586 | 9.585656 1587 | 30 1588 | 0.0 1589 | 10 1590 | 6.705595 1591 | 20 1592 | 9.585656 1593 | 30 1594 | 0.0 1595 | 0 1596 | LWPOLYLINE 1597 | 5 1598 | 116 1599 | 100 1600 | AcDbEntity 1601 | 8 1602 | 0 1603 | 62 1604 | 7 1605 | 100 1606 | AcDbPolyline 1607 | 90 1608 | 2 1609 | 70 1610 | 0 1611 | 10 1612 | 6.867500 1613 | 20 1614 | 9.604704 1615 | 30 1616 | 0.0 1617 | 10 1618 | 6.800833 1619 | 20 1620 | 9.699942 1621 | 30 1622 | 0.0 1623 | 0 1624 | LWPOLYLINE 1625 | 5 1626 | 117 1627 | 100 1628 | AcDbEntity 1629 | 8 1630 | 0 1631 | 62 1632 | 7 1633 | 100 1634 | AcDbPolyline 1635 | 90 1636 | 11 1637 | 70 1638 | 0 1639 | 10 1640 | 6.753214 1641 | 20 1642 | 9.604704 1643 | 30 1644 | 0.0 1645 | 10 1646 | 6.753214 1647 | 20 1648 | 9.804704 1649 | 30 1650 | 0.0 1651 | 10 1652 | 6.829405 1653 | 20 1654 | 9.804704 1655 | 30 1656 | 0.0 1657 | 10 1658 | 6.848452 1659 | 20 1660 | 9.795180 1661 | 30 1662 | 0.0 1663 | 10 1664 | 6.857976 1665 | 20 1666 | 9.785656 1667 | 30 1668 | 0.0 1669 | 10 1670 | 6.867500 1671 | 20 1672 | 9.766609 1673 | 30 1674 | 0.0 1675 | 10 1676 | 6.867500 1677 | 20 1678 | 9.738037 1679 | 30 1680 | 0.0 1681 | 10 1682 | 6.857976 1683 | 20 1684 | 9.718990 1685 | 30 1686 | 0.0 1687 | 10 1688 | 6.848452 1689 | 20 1690 | 9.709466 1691 | 30 1692 | 0.0 1693 | 10 1694 | 6.829405 1695 | 20 1696 | 9.699942 1697 | 30 1698 | 0.0 1699 | 10 1700 | 6.753214 1701 | 20 1702 | 9.699942 1703 | 30 1704 | 0.0 1705 | 0 1706 | ENDSEC 1707 | 0 1708 | SECTION 1709 | 2 1710 | OBJECTS 1711 | 0 1712 | DICTIONARY 1713 | 5 1714 | C 1715 | 330 1716 | 0 1717 | 100 1718 | AcDbDictionary 1719 | 3 1720 | ACAD_GROUP 1721 | 350 1722 | D 1723 | 3 1724 | ACAD_MLINESTYLE 1725 | 350 1726 | 17 1727 | 0 1728 | DICTIONARY 1729 | 5 1730 | D 1731 | 330 1732 | C 1733 | 100 1734 | AcDbDictionary 1735 | 0 1736 | DICTIONARY 1737 | 5 1738 | 1A 1739 | 330 1740 | C 1741 | 100 1742 | AcDbDictionary 1743 | 0 1744 | DICTIONARY 1745 | 5 1746 | 17 1747 | 330 1748 | C 1749 | 100 1750 | AcDbDictionary 1751 | 3 1752 | STANDARD 1753 | 350 1754 | 18 1755 | 0 1756 | DICTIONARY 1757 | 5 1758 | 19 1759 | 330 1760 | C 1761 | 100 1762 | AcDbDictionary 1763 | 0 1764 | ENDSEC 1765 | 0 1766 | EOF 1767 | -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r-F_Silkscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | SVG Picture created as i_n_c_u_r-F_Silkscreen.svg date 2023/07/12 16:38:07 11 | Picture generated by PCBNEW 12 | 15 | 16 | 19 | 20 | 23 | R_E_C_U_R + I_N_C_U_R 26 | R_E_C_U_R + I_N_C_U_R 27 | 30 | 42 | 45 | 48 | 53 | 56 | 73 | 76 | 87 | 90 | 93 | 105 | 108 | 111 | 114 | 117 | 122 | 125 | 142 | 145 | 156 | 159 | 162 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | 3 | (general 4 | (thickness 1.6) 5 | ) 6 | 7 | (paper "A4") 8 | (title_block 9 | (title "i_n_c_u_r v5") 10 | (date "2019-06-01") 11 | (company "cyberboy666 & user43368831") 12 | ) 13 | 14 | (layers 15 | (0 "F.Cu" signal) 16 | (31 "B.Cu" signal) 17 | (33 "F.Adhes" user "F.Adhesive") 18 | (35 "F.Paste" user) 19 | (36 "B.SilkS" user "B.Silkscreen") 20 | (37 "F.SilkS" user "F.Silkscreen") 21 | (38 "B.Mask" user) 22 | (39 "F.Mask" user) 23 | (40 "Dwgs.User" user "User.Drawings") 24 | (41 "Cmts.User" user "User.Comments") 25 | (42 "Eco1.User" user "User.Eco1") 26 | (43 "Eco2.User" user "User.Eco2") 27 | (44 "Edge.Cuts" user) 28 | (45 "Margin" user) 29 | (47 "F.CrtYd" user "F.Courtyard") 30 | (49 "F.Fab" user) 31 | ) 32 | 33 | (setup 34 | (pad_to_mask_clearance 0.2) 35 | (pcbplotparams 36 | (layerselection 0x00010f0_ffffffff) 37 | (disableapertmacros false) 38 | (usegerberextensions false) 39 | (usegerberattributes false) 40 | (usegerberadvancedattributes false) 41 | (creategerberjobfile false) 42 | (svguseinch false) 43 | (svgprecision 6) 44 | (excludeedgelayer true) 45 | (plotframeref false) 46 | (viasonmask false) 47 | (mode 1) 48 | (useauxorigin false) 49 | (hpglpennumber 1) 50 | (hpglpenspeed 20) 51 | (hpglpendiameter 15.000000) 52 | (dxfpolygonmode true) 53 | (dxfimperialunits true) 54 | (dxfusepcbnewfont true) 55 | (psnegative false) 56 | (psa4output false) 57 | (plotreference true) 58 | (plotvalue false) 59 | (plotinvisibletext false) 60 | (sketchpadsonfab false) 61 | (subtractmaskfromsilk false) 62 | (outputformat 1) 63 | (mirror false) 64 | (drillshape 0) 65 | (scaleselection 1) 66 | (outputdirectory "i_n_c_u_r_default_panel_for_v5_mk_ii/") 67 | ) 68 | ) 69 | 70 | (net 0 "") 71 | 72 | (gr_circle (center 120 114.95) (end 129 114.95) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 0240fd8b-e80b-469f-b980-049a76eaf3d4)) 73 | (gr_line (start 76 46) (end 164 46) (layer "Edge.Cuts") (width 0.05) (tstamp 0fe9dc93-d36f-4509-8851-1812f7407778)) 74 | (gr_circle (center 73.5 136.5) (end 75.5 136.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 24556521-114d-479e-9870-8a8f812bc942)) 75 | (gr_line (start 70 40) (end 170 40) (layer "Edge.Cuts") (width 0.15) (tstamp 35ce346a-58fd-42a9-92e2-6c6ea6988fc1)) 76 | (gr_circle (center 136.95 112.15) (end 142.45 112.15) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 4483906e-f778-42c4-bc34-ce3a6da215f6)) 77 | (gr_line (start 170 140) (end 70 140) (layer "Edge.Cuts") (width 0.15) (tstamp 4a846bd3-f3a6-40e0-93d4-eae948e413e3)) 78 | (gr_circle (center 136.9 132.1) (end 140.9 132.1) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 4d669bc9-8b88-4a58-a208-0b79258879da)) 79 | (gr_circle (center 155.7 132.2) (end 159.7 132.2) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 65836827-c670-442d-883e-f13d82099cc8)) 80 | (gr_circle (center 83.95 132.45) (end 87.95 132.45) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 6a276fe8-bbb2-412f-8208-7d6bab1a613f)) 81 | (gr_circle (center 103 132.2) (end 107 132.2) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 6b122fb6-cded-4081-b237-5ccb90c0b6ec)) 82 | (gr_circle (center 166.5 136.5) (end 168.5 136.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 737bca71-e7c9-440d-9da8-8b39b656a47d)) 83 | (gr_circle (center 84 111.9) (end 89.5 111.9) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 75477c34-54a4-40ce-b717-04a25af61602)) 84 | (gr_circle (center 73.5 43.5) (end 75.5 43.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 920a09dd-11fe-4836-8eb3-c04ccfae3aeb)) 85 | (gr_circle (center 102.95 112.25) (end 108.45 112.25) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp a06f9f05-1a2a-40a4-bab7-b92223ce34a2)) 86 | (gr_circle (center 120 132.95) (end 126.5 132.95) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp a4e71c5b-45d5-4519-b5b9-421ab3a45c16)) 87 | (gr_line (start 164 46) (end 164 104) (layer "Edge.Cuts") (width 0.05) (tstamp aa4ee382-1f87-45ee-a935-a7d9b8352856)) 88 | (gr_line (start 170 40) (end 170 140) (layer "Edge.Cuts") (width 0.15) (tstamp b21923fd-e00a-4587-b38e-896182a64983)) 89 | (gr_line (start 76 46) (end 76 104) (layer "Edge.Cuts") (width 0.05) (tstamp cc07f979-5118-443f-8eaf-8fa94ed1f0e9)) 90 | (gr_line (start 70 140) (end 70 40) (layer "Edge.Cuts") (width 0.15) (tstamp cc7c5ed0-cff3-4e15-acb2-ffda602a94a1)) 91 | (gr_circle (center 166.5 43.5) (end 168.5 43.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp db7367f4-555f-489f-834b-1a264c96a3e1)) 92 | (gr_circle (center 156.5 111.95) (end 162 111.95) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp dfcb5617-a903-4877-b2f0-da870163f78a)) 93 | (gr_line (start 76 104) (end 164 104) (layer "Edge.Cuts") (width 0.05) (tstamp f6d76128-fa33-4f15-a8e7-dd919cbcba0e)) 94 | (gr_text "JLCJLCJLCJLC" (at 158.425 139.05) (layer "B.SilkS") (tstamp 1bbefa1a-5090-4b1d-be96-5dea9aeb3588) 95 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 96 | ) 97 | (gr_text "default panel mk ii\nfor i_n_c_u_r v5\ncyberboy666" (at 168.8 120.9) (layer "B.SilkS") (tstamp 463a716b-ae54-4d65-abd4-f6a879492036) 98 | (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left mirror)) 99 | ) 100 | (gr_text "_^ 02" (at 80.85 121.35) (layer "B.SilkS") (tstamp 81b61f44-a684-414e-8c7c-00f74e01d3b9) 101 | (effects (font (size 5 5) (thickness 0.5)) (justify mirror)) 102 | ) 103 | (gr_text "underscores.shop" (at 81 126.35) (layer "B.SilkS") (tstamp bc760e11-f9f0-4358-a50c-dc33b9ff14a4) 104 | (effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror)) 105 | ) 106 | (gr_text "R_E_C_U_R + I_N_C_U_R" (at 120.6 43.1) (layer "F.SilkS") (tstamp 4cc7994a-010a-48b1-89e1-8676595669d3) 107 | (effects (font (size 2 2) (thickness 0.35))) 108 | ) 109 | 110 | ) 111 | -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 44, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 12, 41 | 13, 42 | 14, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36 64 | ], 65 | "visible_layers": "fffffff_ffffffff", 66 | "zone_display_mode": 0 67 | }, 68 | "meta": { 69 | "filename": "i_n_c_u_r.kicad_prl", 70 | "version": 3 71 | }, 72 | "project": { 73 | "files": [] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "warning", 83 | "silk_overlap": "warning", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.01, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "use_height_for_length_calcs": true 112 | }, 113 | "track_widths": [], 114 | "via_dimensions": [], 115 | "zones_allow_external_fillets": false, 116 | "zones_use_no_outline": true 117 | }, 118 | "layer_presets": [] 119 | }, 120 | "boards": [], 121 | "cvpcb": { 122 | "equivalence_files": [] 123 | }, 124 | "libraries": { 125 | "pinned_footprint_libs": [], 126 | "pinned_symbol_libs": [] 127 | }, 128 | "meta": { 129 | "filename": "i_n_c_u_r.kicad_pro", 130 | "version": 1 131 | }, 132 | "net_settings": { 133 | "classes": [ 134 | { 135 | "bus_width": 12.0, 136 | "clearance": 0.2, 137 | "diff_pair_gap": 0.25, 138 | "diff_pair_via_gap": 0.25, 139 | "diff_pair_width": 0.2, 140 | "line_style": 0, 141 | "microvia_diameter": 0.3, 142 | "microvia_drill": 0.1, 143 | "name": "Default", 144 | "pcb_color": "rgba(0, 0, 0, 0.000)", 145 | "schematic_color": "rgba(0, 0, 0, 0.000)", 146 | "track_width": 0.25, 147 | "via_diameter": 0.8, 148 | "via_drill": 0.4, 149 | "wire_width": 6.0 150 | } 151 | ], 152 | "meta": { 153 | "version": 2 154 | }, 155 | "net_colors": null 156 | }, 157 | "pcbnew": { 158 | "last_paths": { 159 | "gencad": "", 160 | "idf": "", 161 | "netlist": "", 162 | "specctra_dsn": "", 163 | "step": "", 164 | "vrml": "" 165 | }, 166 | "page_layout_descr_file": "" 167 | }, 168 | "schematic": { 169 | "legacy_lib_dir": "", 170 | "legacy_lib_list": [] 171 | }, 172 | "sheets": [], 173 | "text_variables": {} 174 | } 175 | -------------------------------------------------------------------------------- /panel/default_panel/i_n_c_u_r_default_panel_for_v5_mk_ii.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboy666/i_n_c_u_r/dcd31d0cc541c2ce6f9210280b415c8fc178dc3d/panel/default_panel/i_n_c_u_r_default_panel_for_v5_mk_ii.zip -------------------------------------------------------------------------------- /panel/default_panel/readme.md: -------------------------------------------------------------------------------- 1 | # i_n_c_u_r default_panel notes 2 | 3 | - the mounting holes fit m3 screws 4 | - the front_panel mounts to pcb with 15mm standoffs 5 | - 45mm screws will fit front_panel, pcb, raspberry_pi_3 and back_plate 6 | - power is provided via 5v 1.5A micro_usb directly to raspberry pi 7 | - the default potentiometers in underscores BOMs have 12mm shaft lengths - due to 15mm standoff you will need to replace these with >17mm shaft length alternatives if you plan to use it with a panel -------------------------------------------------------------------------------- /panel/eurorack_panel/i_n_c_u_r.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | 3 | (general 4 | (thickness 1.6) 5 | ) 6 | 7 | (paper "A4") 8 | (title_block 9 | (title "i_n_c_u_r v5") 10 | (date "2019-06-01") 11 | (company "cyberboy666 & user43368831") 12 | ) 13 | 14 | (layers 15 | (0 "F.Cu" signal) 16 | (31 "B.Cu" signal) 17 | (33 "F.Adhes" user "F.Adhesive") 18 | (35 "F.Paste" user) 19 | (36 "B.SilkS" user "B.Silkscreen") 20 | (37 "F.SilkS" user "F.Silkscreen") 21 | (38 "B.Mask" user) 22 | (39 "F.Mask" user) 23 | (40 "Dwgs.User" user "User.Drawings") 24 | (41 "Cmts.User" user "User.Comments") 25 | (42 "Eco1.User" user "User.Eco1") 26 | (43 "Eco2.User" user "User.Eco2") 27 | (44 "Edge.Cuts" user) 28 | (45 "Margin" user) 29 | (47 "F.CrtYd" user "F.Courtyard") 30 | (49 "F.Fab" user) 31 | ) 32 | 33 | (setup 34 | (pad_to_mask_clearance 0.2) 35 | (pcbplotparams 36 | (layerselection 0x00010f0_ffffffff) 37 | (disableapertmacros false) 38 | (usegerberextensions false) 39 | (usegerberattributes false) 40 | (usegerberadvancedattributes false) 41 | (creategerberjobfile false) 42 | (svguseinch false) 43 | (svgprecision 6) 44 | (excludeedgelayer true) 45 | (plotframeref false) 46 | (viasonmask false) 47 | (mode 1) 48 | (useauxorigin false) 49 | (hpglpennumber 1) 50 | (hpglpenspeed 20) 51 | (hpglpendiameter 15.000000) 52 | (dxfpolygonmode true) 53 | (dxfimperialunits true) 54 | (dxfusepcbnewfont true) 55 | (psnegative false) 56 | (psa4output false) 57 | (plotreference true) 58 | (plotvalue false) 59 | (plotinvisibletext false) 60 | (sketchpadsonfab false) 61 | (subtractmaskfromsilk false) 62 | (outputformat 1) 63 | (mirror false) 64 | (drillshape 0) 65 | (scaleselection 1) 66 | (outputdirectory "default_panel_for_v5_mk_i/") 67 | ) 68 | ) 69 | 70 | (net 0 "") 71 | 72 | (gr_circle (center 76.15 24.275) (end 77.75 24.275) (layer "F.SilkS") (width 0.05) (fill none) (tstamp 35ea47cc-a336-4dca-b0b2-79ba8e2d7932)) 73 | (gr_circle (center 76.15 145.825) (end 77.75 145.825) (layer "F.SilkS") (width 0.05) (fill none) (tstamp 43281759-10cd-42eb-be2f-d067ecfc3ace)) 74 | (gr_circle (center 163.8 145.875) (end 165.4 145.875) (layer "F.SilkS") (width 0.05) (fill none) (tstamp 64fedb70-4616-4cfb-8cc6-a51f1ed3542f)) 75 | (gr_circle (center 163.8 24.325) (end 165.4 24.325) (layer "F.SilkS") (width 0.05) (fill none) (tstamp f1e5784e-ed21-4058-b0e4-ef30b6e795b4)) 76 | (gr_circle (center 120 114.95) (end 129 114.95) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 0240fd8b-e80b-469f-b980-049a76eaf3d4)) 77 | (gr_line (start 164.95 22.725) (end 162.65 22.725) (layer "Edge.Cuts") (width 0.05) (tstamp 070eab51-062e-4628-9665-21a784cb4173)) 78 | (gr_line (start 76 46) (end 164 46) (layer "Edge.Cuts") (width 0.05) (tstamp 0fe9dc93-d36f-4509-8851-1812f7407778)) 79 | (gr_circle (center 106.9 35.488276) (end 108.6 35.288276) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 16177abe-ce2a-4c2a-b6a9-99683dc275e2)) 80 | (gr_circle (center 133.9 35.488276) (end 135.6 35.288276) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 2ebcb3d0-786f-4d3a-b1de-8d98e6e79ef9)) 81 | (gr_line (start 170.8 149.375) (end 69.15 149.375) (layer "Edge.Cuts") (width 0.05) (tstamp 35caa27b-8bf8-4941-a363-2ee0d1bfc49c)) 82 | (gr_arc (start 162.65 25.925) (mid 161.05 24.325) (end 162.65 22.725) (layer "Edge.Cuts") (width 0.05) (tstamp 372a35c6-4dfd-4499-ae41-217ad5b835c9)) 83 | (gr_rect (start 139.8 31.888276) (end 156.2 39.188276) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 3f022267-3193-431e-b644-05ca60509b1e)) 84 | (gr_circle (center 76.8 35.488276) (end 78.5 35.288276) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 401b50b8-e5b6-4916-b4f5-6082c5af9be0)) 85 | (gr_circle (center 136.95 112.15) (end 142.45 112.15) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 4483906e-f778-42c4-bc34-ce3a6da215f6)) 86 | (gr_arc (start 75 25.875) (mid 73.4 24.275) (end 75 22.675) (layer "Edge.Cuts") (width 0.05) (tstamp 4bec306a-4ae8-41a0-b056-bde8b278f744)) 87 | (gr_circle (center 136.9 132.1) (end 140.9 132.1) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 4d669bc9-8b88-4a58-a208-0b79258879da)) 88 | (gr_line (start 77.3 25.875) (end 75 25.875) (layer "Edge.Cuts") (width 0.05) (tstamp 59a519ba-4a57-4de3-86a0-16e9dfe2d568)) 89 | (gr_circle (center 155.7 132.2) (end 159.7 132.2) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 65836827-c670-442d-883e-f13d82099cc8)) 90 | (gr_circle (center 83.95 132.45) (end 87.95 132.45) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 6a276fe8-bbb2-412f-8208-7d6bab1a613f)) 91 | (gr_arc (start 77.3 22.675) (mid 78.9 24.275) (end 77.3 25.875) (layer "Edge.Cuts") (width 0.05) (tstamp 6a4345e0-c0e4-4f55-bfbb-8ca56b298fb7)) 92 | (gr_circle (center 103 132.2) (end 107 132.2) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 6b122fb6-cded-4081-b237-5ccb90c0b6ec)) 93 | (gr_circle (center 166.5 136.5) (end 168.5 136.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 737bca71-e7c9-440d-9da8-8b39b656a47d)) 94 | (gr_line (start 77.3 22.675) (end 75 22.675) (layer "Edge.Cuts") (width 0.05) (tstamp 748496fa-e907-4e15-b768-fc24d97aa587)) 95 | (gr_circle (center 84 111.9) (end 89.5 111.9) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 75477c34-54a4-40ce-b717-04a25af61602)) 96 | (gr_arc (start 164.95 144.275) (mid 166.55 145.875) (end 164.95 147.475) (layer "Edge.Cuts") (width 0.05) (tstamp 77dac818-10e7-4eea-b1b2-72291fa8cff6)) 97 | (gr_line (start 164.95 147.475) (end 162.65 147.475) (layer "Edge.Cuts") (width 0.05) (tstamp 854bf4a8-6464-485b-b3c3-8d34f542616c)) 98 | (gr_circle (center 73.5 43.5) (end 75.5 43.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 920a09dd-11fe-4836-8eb3-c04ccfae3aeb)) 99 | (gr_arc (start 164.95 22.725) (mid 166.55 24.325) (end 164.95 25.925) (layer "Edge.Cuts") (width 0.05) (tstamp 922a406a-d8b7-4ad6-9c91-757a77afc4d3)) 100 | (gr_circle (center 162 35.488276) (end 163.7 35.288276) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 953219be-d8a4-4d60-98cc-2308cbdeef9c)) 101 | (gr_line (start 77.3 147.425) (end 75 147.425) (layer "Edge.Cuts") (width 0.05) (tstamp 9692cac3-500c-45cd-b4d1-e3c7fb57a2f3)) 102 | (gr_circle (center 102.95 112.25) (end 108.45 112.25) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp a06f9f05-1a2a-40a4-bab7-b92223ce34a2)) 103 | (gr_line (start 69.15 20.8) (end 170.8 20.807234) (layer "Edge.Cuts") (width 0.05) (tstamp a38d2756-fc95-4ee5-bb73-722085c99256)) 104 | (gr_circle (center 120 132.95) (end 127 132.95) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp a4e71c5b-45d5-4519-b5b9-421ab3a45c16)) 105 | (gr_rect (start 84.5 31.888276) (end 99.2 39.188276) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp a51eed98-4d2c-4980-8c08-36ef5d22a0ae)) 106 | (gr_line (start 164 46) (end 164 104) (layer "Edge.Cuts") (width 0.05) (tstamp aa4ee382-1f87-45ee-a935-a7d9b8352856)) 107 | (gr_arc (start 162.65 147.475) (mid 161.05 145.875) (end 162.65 144.275) (layer "Edge.Cuts") (width 0.05) (tstamp aaa2fe50-5a78-4aab-ae5d-beca2455241f)) 108 | (gr_line (start 164.95 25.925) (end 162.65 25.925) (layer "Edge.Cuts") (width 0.05) (tstamp ae030540-7714-499b-a594-a048bfaf4a44)) 109 | (gr_line (start 77.3 144.225) (end 75 144.225) (layer "Edge.Cuts") (width 0.05) (tstamp c57cc64b-d4ba-4ccc-bd4a-110bcaf568d5)) 110 | (gr_line (start 76 46) (end 76 104) (layer "Edge.Cuts") (width 0.05) (tstamp cc07f979-5118-443f-8eaf-8fa94ed1f0e9)) 111 | (gr_line (start 170.8 149.375) (end 170.8 20.807234) (layer "Edge.Cuts") (width 0.05) (tstamp cd00c96d-195b-4658-be7e-0da3f3c8367c)) 112 | (gr_line (start 164.95 144.275) (end 162.65 144.275) (layer "Edge.Cuts") (width 0.05) (tstamp d8611a41-da52-4c48-969f-c19bec4e4b84)) 113 | (gr_circle (center 166.5 43.5) (end 168.5 43.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp db7367f4-555f-489f-834b-1a264c96a3e1)) 114 | (gr_circle (center 156.5 111.95) (end 162 111.95) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp dfcb5617-a903-4877-b2f0-da870163f78a)) 115 | (gr_arc (start 77.3 144.225) (mid 78.9 145.825) (end 77.3 147.425) (layer "Edge.Cuts") (width 0.05) (tstamp e14da4c4-6ff8-428c-8cc3-4596c93167c0)) 116 | (gr_line (start 69.15 149.375) (end 69.15 20.8) (layer "Edge.Cuts") (width 0.05) (tstamp e2d4654a-f860-4270-a18e-7f0e870a5100)) 117 | (gr_arc (start 75 147.425) (mid 73.4 145.825) (end 75 144.225) (layer "Edge.Cuts") (width 0.05) (tstamp e63eb070-2141-4a9d-9560-80a72318cd89)) 118 | (gr_circle (center 84.325 50.75) (end 84.325 50.75) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp ec515742-43da-47fe-9d31-cea31564843e)) 119 | (gr_line (start 76 104) (end 164 104) (layer "Edge.Cuts") (width 0.05) (tstamp f6d76128-fa33-4f15-a8e7-dd919cbcba0e)) 120 | (gr_circle (center 73.5 136.5) (end 75.5 136.5) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp fab61a80-c77c-4fd8-833d-8bb41e7e9054)) 121 | (gr_text "JLCJLCJLCJLC" (at 165.1 148.5) (layer "B.SilkS") (tstamp 0ef0df2b-5071-44e3-8010-48f4d19591bd) 122 | (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) 123 | ) 124 | (gr_text "eurorack panel mk_ii\nfor i_n_c_u_r v5\ncyberboy666" (at 169.7 122.1) (layer "B.SilkS") (tstamp 463a716b-ae54-4d65-abd4-f6a879492036) 125 | (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left mirror)) 126 | ) 127 | (gr_text "R_E_C_U_R + I_N_C_U_R" (at 120 25.6) (layer "F.SilkS") (tstamp 4cc7994a-010a-48b1-89e1-8676595669d3) 128 | (effects (font (size 3 3) (thickness 0.4))) 129 | ) 130 | (gr_text "_^ 02" (at 119.9 143.4) (layer "F.SilkS") (tstamp 81b61f44-a684-414e-8c7c-00f74e01d3b9) 131 | (effects (font (size 4.5 4.5) (thickness 0.45))) 132 | ) 133 | (gr_text "underscores.shop" (at 119.35 148) (layer "F.SilkS") (tstamp bc760e11-f9f0-4358-a50c-dc33b9ff14a4) 134 | (effects (font (size 1.3 1.3) (thickness 0.3))) 135 | ) 136 | 137 | ) 138 | -------------------------------------------------------------------------------- /panel/eurorack_panel/i_n_c_u_r.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 44, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 11, 40 | 12, 41 | 13, 42 | 14, 43 | 15, 44 | 16, 45 | 17, 46 | 18, 47 | 19, 48 | 20, 49 | 21, 50 | 22, 51 | 23, 52 | 24, 53 | 25, 54 | 26, 55 | 27, 56 | 28, 57 | 29, 58 | 30, 59 | 32, 60 | 33, 61 | 34, 62 | 35, 63 | 36 64 | ], 65 | "visible_layers": "fffffff_ffffffff", 66 | "zone_display_mode": 0 67 | }, 68 | "meta": { 69 | "filename": "i_n_c_u_r.kicad_prl", 70 | "version": 3 71 | }, 72 | "project": { 73 | "files": [] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /panel/eurorack_panel/i_n_c_u_r.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "version": 2 55 | }, 56 | "rule_severities": { 57 | "annular_width": "error", 58 | "clearance": "error", 59 | "copper_edge_clearance": "error", 60 | "courtyards_overlap": "error", 61 | "diff_pair_gap_out_of_range": "error", 62 | "diff_pair_uncoupled_length_too_long": "error", 63 | "drill_out_of_range": "error", 64 | "duplicate_footprints": "warning", 65 | "extra_footprint": "warning", 66 | "footprint_type_mismatch": "error", 67 | "hole_clearance": "error", 68 | "hole_near_hole": "error", 69 | "invalid_outline": "error", 70 | "item_on_disabled_layer": "error", 71 | "items_not_allowed": "error", 72 | "length_out_of_range": "error", 73 | "malformed_courtyard": "error", 74 | "microvia_drill_out_of_range": "error", 75 | "missing_courtyard": "ignore", 76 | "missing_footprint": "warning", 77 | "net_conflict": "warning", 78 | "npth_inside_courtyard": "ignore", 79 | "padstack": "error", 80 | "pth_inside_courtyard": "ignore", 81 | "shorting_items": "error", 82 | "silk_over_copper": "warning", 83 | "silk_overlap": "warning", 84 | "skew_out_of_range": "error", 85 | "through_hole_pad_without_hole": "error", 86 | "too_many_vias": "error", 87 | "track_dangling": "warning", 88 | "track_width": "error", 89 | "tracks_crossing": "error", 90 | "unconnected_items": "error", 91 | "unresolved_variable": "error", 92 | "via_dangling": "warning", 93 | "zone_has_empty_net": "error", 94 | "zones_intersect": "error" 95 | }, 96 | "rules": { 97 | "allow_blind_buried_vias": false, 98 | "allow_microvias": false, 99 | "max_error": 0.005, 100 | "min_clearance": 0.0, 101 | "min_copper_edge_clearance": 0.01, 102 | "min_hole_clearance": 0.25, 103 | "min_hole_to_hole": 0.25, 104 | "min_microvia_diameter": 0.19999999999999998, 105 | "min_microvia_drill": 0.09999999999999999, 106 | "min_silk_clearance": 0.0, 107 | "min_through_hole_diameter": 0.3, 108 | "min_track_width": 0.19999999999999998, 109 | "min_via_annular_width": 0.049999999999999996, 110 | "min_via_diameter": 0.39999999999999997, 111 | "use_height_for_length_calcs": true 112 | }, 113 | "track_widths": [], 114 | "via_dimensions": [], 115 | "zones_allow_external_fillets": false, 116 | "zones_use_no_outline": true 117 | }, 118 | "layer_presets": [] 119 | }, 120 | "boards": [], 121 | "cvpcb": { 122 | "equivalence_files": [] 123 | }, 124 | "libraries": { 125 | "pinned_footprint_libs": [], 126 | "pinned_symbol_libs": [] 127 | }, 128 | "meta": { 129 | "filename": "i_n_c_u_r.kicad_pro", 130 | "version": 1 131 | }, 132 | "net_settings": { 133 | "classes": [ 134 | { 135 | "bus_width": 12.0, 136 | "clearance": 0.2, 137 | "diff_pair_gap": 0.25, 138 | "diff_pair_via_gap": 0.25, 139 | "diff_pair_width": 0.2, 140 | "line_style": 0, 141 | "microvia_diameter": 0.3, 142 | "microvia_drill": 0.1, 143 | "name": "Default", 144 | "pcb_color": "rgba(0, 0, 0, 0.000)", 145 | "schematic_color": "rgba(0, 0, 0, 0.000)", 146 | "track_width": 0.25, 147 | "via_diameter": 0.8, 148 | "via_drill": 0.4, 149 | "wire_width": 6.0 150 | } 151 | ], 152 | "meta": { 153 | "version": 2 154 | }, 155 | "net_colors": null 156 | }, 157 | "pcbnew": { 158 | "last_paths": { 159 | "gencad": "", 160 | "idf": "", 161 | "netlist": "", 162 | "specctra_dsn": "", 163 | "step": "", 164 | "vrml": "" 165 | }, 166 | "page_layout_descr_file": "" 167 | }, 168 | "schematic": { 169 | "legacy_lib_dir": "", 170 | "legacy_lib_list": [] 171 | }, 172 | "sheets": [], 173 | "text_variables": {} 174 | } 175 | -------------------------------------------------------------------------------- /panel/eurorack_panel/readme.md: -------------------------------------------------------------------------------- 1 | # i_n_c_u_r eurorack_panel notes 2 | 3 | - the mounting holes fit m3 screws 4 | - the front_panel mounts to pcb with 15mm standoffs 5 | - this circuit mounts a raspberry_pi_3 with total depth of ????? 6 | - power is provided via 5v 1.5A micro_usb directly to raspberry pi 7 | - this panel includes UNTESTED YET mounting holes for usb and hdmi breakout cables 8 | - this panel is 20HP 9 | - the default potentiometers in underscores BOMs have 12mm shaft lengths - due to 15mm standoff you will need to replace these with >17mm shaft length alternatives if you plan to use it with a panel --------------------------------------------------------------------------------