├── .gitignore ├── LICENSE ├── README.md ├── capsule ├── FAT array A │ ├── FAT MEMS Array A1 v2.step │ ├── FAT_MEMS_Array_A1_2016-Feb-26_02-34-16AM-000_HOME.png │ └── FAT_MEMS_Array_A1_2016-Feb-26_02-34-16AM-000_TOP.png └── FAT capsule R │ ├── FAT Capsule R v2 Explode 640x360.mp4 │ ├── FAT Capsule R v2 cut1.png │ ├── FAT Capsule R v2 cut2.png │ ├── FAT Capsule R v3.png │ ├── FAT Capsule R v9.step │ └── FAT Capsule R.mp4 ├── case ├── FAT Violet Microphone Case B v2.step ├── Fanatone Violet Microphone Case B v8.png ├── Fanatone Violet Microphone Case B v8.step └── misc │ ├── FAT Violet Microphone Case A 2 v5.step │ ├── FAT Violet Microphone Case B v3 Explode loop small.mp4 │ ├── FAT Violet Microphone Case B v3 Explode.mp4 │ ├── Fanatone Violet Microphone Case 1 v10 closed.png │ ├── Fanatone Violet Microphone Case 1 v10.png │ ├── Fanatone Violet Microphone Case 1 v4.png │ ├── Fanatone Violet Microphone Case 1 v5.png │ ├── Fanatone Violet Microphone Case 1 v7 fibonacci sketch.png │ ├── Fanatone Violet Microphone Case 1 v7 fibonacci sunflower sketch.png │ ├── Fanatone Violet Microphone Case 1 v7 fibonacci sunflower.png │ ├── Fanatone Violet Microphone Case 1 v8 hole pattern 1.png │ ├── Fanatone Violet Microphone Case 1 v8 hole pattern 2.png │ ├── Fanatone Violet Microphone Case 2 v2 slotted.png │ ├── Fanatone Violet Microphone Case 2 v4 - multiview.png │ ├── Fanatone Violet Microphone Case 2 v4 raytraced.png │ ├── Fanatone Violet Microphone Case 2 v4 rt 2.png │ ├── Fanatone Violet Microphone Case 2 v4 rt bot tagged.png │ ├── Fanatone Violet Microphone Case 2 v4 rt bot.png │ ├── Fanatone Violet Microphone Case 2 v4 rt tag.png │ ├── Fanatone Violet Microphone Case 2 v4 top.png │ ├── Fanatone Violet Microphone Case 2 v4.png │ └── Fanatone Violet Microphone Case B v4 bottom screw mount detail.png └── pcb ├── .fanatone-adc.brd.lck ├── .fanatone-adc.sch.lck ├── ADC.png ├── BoostConverterTPS62240.png ├── ChargePump-TPS7A4001.png ├── ChargePumpPCB-size-estimate.png ├── Fanatone Violet Microphone Case 2 v5 - PCB draft.png ├── LT8330.pdf ├── TI-PCM4202.pdf ├── TPS6224x.pdf ├── fanatone-adc-wip1-alpha.png ├── fanatone-adc-wip1-grey.png ├── fanatone-adc.brd ├── fanatone-adc.sch ├── fanatone-adc2.brd ├── fanatone-adc2.sch ├── fanatone-adc2~snap.scr ├── fat-mic-array.brd ├── fat-mic-array.sch ├── violet-pcb-wip2-boost-converter.png └── violet-pcb-wip2-charge-pump.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | 8 | # Eagle project file 9 | # It contains a serial number and references to the file structure 10 | # on your computer. 11 | # comment the following line if you want to have your project file included. 12 | eagle.epf 13 | 14 | # CAM files 15 | *.$$$ 16 | *.cmp 17 | *.ly2 18 | *.l15 19 | *.sol 20 | *.plc 21 | *.stc 22 | *.sts 23 | *.crc 24 | *.crs 25 | 26 | *.dri 27 | *.drl 28 | *.gpi 29 | *.pls 30 | 31 | *.drd 32 | *.drd.* 33 | 34 | *.info 35 | 36 | *.eps 37 | *.lck 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 FAT° 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # violet 2 | Open Source Microphone System with integrated ADC, digital phantom power, AES42, large diaphragm condenser capsule support 3 | 4 | ![](/case/misc/Fanatone Violet Microphone Case 2 v4 - multiview.png) 5 | ![](/case/Fanatone Violet Microphone Case B v8.png) 6 | ![](/case/misc/Fanatone Violet Microphone Case B v4 bottom screw mount detail.png) 7 | ![](/case/misc/Fanatone Violet Microphone Case 2 v4 rt tag.png) 8 | ![](/pcb/Fanatone Violet Microphone Case 2 v5 - PCB draft.png) 9 | ![](/pcb/fanatone-adc-wip1-grey.png) 10 | ![](/pcb/violet-pcb-wip2-charge-pump.png) 11 | -------------------------------------------------------------------------------- /capsule/FAT array A/FAT_MEMS_Array_A1_2016-Feb-26_02-34-16AM-000_HOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT array A/FAT_MEMS_Array_A1_2016-Feb-26_02-34-16AM-000_HOME.png -------------------------------------------------------------------------------- /capsule/FAT array A/FAT_MEMS_Array_A1_2016-Feb-26_02-34-16AM-000_TOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT array A/FAT_MEMS_Array_A1_2016-Feb-26_02-34-16AM-000_TOP.png -------------------------------------------------------------------------------- /capsule/FAT capsule R/FAT Capsule R v2 Explode 640x360.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT capsule R/FAT Capsule R v2 Explode 640x360.mp4 -------------------------------------------------------------------------------- /capsule/FAT capsule R/FAT Capsule R v2 cut1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT capsule R/FAT Capsule R v2 cut1.png -------------------------------------------------------------------------------- /capsule/FAT capsule R/FAT Capsule R v2 cut2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT capsule R/FAT Capsule R v2 cut2.png -------------------------------------------------------------------------------- /capsule/FAT capsule R/FAT Capsule R v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT capsule R/FAT Capsule R v3.png -------------------------------------------------------------------------------- /capsule/FAT capsule R/FAT Capsule R.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/capsule/FAT capsule R/FAT Capsule R.mp4 -------------------------------------------------------------------------------- /case/Fanatone Violet Microphone Case B v8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/Fanatone Violet Microphone Case B v8.png -------------------------------------------------------------------------------- /case/misc/FAT Violet Microphone Case B v3 Explode loop small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/FAT Violet Microphone Case B v3 Explode loop small.mp4 -------------------------------------------------------------------------------- /case/misc/FAT Violet Microphone Case B v3 Explode.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/FAT Violet Microphone Case B v3 Explode.mp4 -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v10 closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v10 closed.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v10.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v4.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v5.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v7 fibonacci sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v7 fibonacci sketch.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v7 fibonacci sunflower sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v7 fibonacci sunflower sketch.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v7 fibonacci sunflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v7 fibonacci sunflower.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v8 hole pattern 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v8 hole pattern 1.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 1 v8 hole pattern 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 1 v8 hole pattern 2.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v2 slotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v2 slotted.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 - multiview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 - multiview.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 raytraced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 raytraced.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 rt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 rt 2.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 rt bot tagged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 rt bot tagged.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 rt bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 rt bot.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 rt tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 rt tag.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4 top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4 top.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case 2 v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case 2 v4.png -------------------------------------------------------------------------------- /case/misc/Fanatone Violet Microphone Case B v4 bottom screw mount detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/case/misc/Fanatone Violet Microphone Case B v4 bottom screw mount detail.png -------------------------------------------------------------------------------- /pcb/.fanatone-adc.brd.lck: -------------------------------------------------------------------------------- 1 | as 2 | susanna 3 | 16.02.2016 22:05.27 4 | -------------------------------------------------------------------------------- /pcb/.fanatone-adc.sch.lck: -------------------------------------------------------------------------------- 1 | as 2 | susanna 3 | 16.02.2016 22:05.27 4 | -------------------------------------------------------------------------------- /pcb/ADC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/ADC.png -------------------------------------------------------------------------------- /pcb/BoostConverterTPS62240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/BoostConverterTPS62240.png -------------------------------------------------------------------------------- /pcb/ChargePump-TPS7A4001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/ChargePump-TPS7A4001.png -------------------------------------------------------------------------------- /pcb/ChargePumpPCB-size-estimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/ChargePumpPCB-size-estimate.png -------------------------------------------------------------------------------- /pcb/Fanatone Violet Microphone Case 2 v5 - PCB draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/Fanatone Violet Microphone Case 2 v5 - PCB draft.png -------------------------------------------------------------------------------- /pcb/LT8330.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/LT8330.pdf -------------------------------------------------------------------------------- /pcb/TI-PCM4202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/TI-PCM4202.pdf -------------------------------------------------------------------------------- /pcb/TPS6224x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/TPS6224x.pdf -------------------------------------------------------------------------------- /pcb/fanatone-adc-wip1-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/fanatone-adc-wip1-alpha.png -------------------------------------------------------------------------------- /pcb/fanatone-adc-wip1-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/fanatone-adc-wip1-grey.png -------------------------------------------------------------------------------- /pcb/fanatone-adc2~snap.scr: -------------------------------------------------------------------------------- 1 | GRID MIL FINEST; 2 | SET OPTIMIZING OFF; 3 | DISPLAY NONE 1; 4 | MOVE (1135.433071 790.000000) (1140.000000 790.000000); 5 | MOVE (1135.000000 850.000000) (1140.000000 850.000000); 6 | MOVE (1132.834646 850.000000) (1130.000000 850.000000); 7 | MOVE (1180.000000 895.000000) (1180.000000 900.000000); 8 | MOVE (1180.433071 939.763780) (1180.000000 940.000000); 9 | MOVE (1207.165354 850.000000) (1210.000000 850.000000); 10 | MOVE (1205.000000 850.000000) (1210.000000 850.000000); 11 | MOVE (1206.023622 939.763780) (1210.000000 940.000000); 12 | MOVE (1184.566929 790.000000) (1180.000000 790.000000); 13 | MOVE (1205.000000 810.000000) (1210.000000 810.000000); 14 | MOVE (1575.000000 145.000000) (1580.000000 150.000000); 15 | MOVE (1570.000000 144.566929) (1570.000000 140.000000); 16 | MOVE (1720.000000 139.000000) (1720.000000 140.000000); 17 | MOVE (1842.834646 180.000000) (1840.000000 180.000000); 18 | MOVE (1855.000000 190.000000) (1860.000000 190.000000); 19 | MOVE (1855.433071 240.000000) (1860.000000 240.000000); 20 | MOVE (1307.165354 850.000000) (1310.000000 850.000000); 21 | MOVE (1252.834646 850.000000) (1250.000000 850.000000); 22 | MOVE (1304.566929 790.000000) (1300.000000 790.000000); 23 | MOVE (1255.433071 790.000000) (1260.000000 790.000000); 24 | MOVE (1255.000000 790.000000) (1260.000000 790.000000); 25 | MOVE (1617.204724 1164.173228) (1620.000000 1160.000000); 26 | MOVE (1615.000000 1205.000000) (1620.000000 1210.000000); 27 | MOVE (1308.385827 1160.236220) (1310.000000 1160.000000); 28 | MOVE (1489.251969 935.826772) (1490.000000 940.000000); 29 | MOVE (1359.566929 939.763780) (1360.000000 940.000000); 30 | MOVE (1087.165354 850.000000) (1090.000000 850.000000); 31 | MOVE (1085.000000 810.000000) (1090.000000 810.000000); 32 | MOVE (1064.566929 790.000000) (1060.000000 790.000000); 33 | MOVE (1065.000000 725.000000) (1070.000000 730.000000); 34 | MOVE (1015.000000 640.000000) (1020.000000 640.000000); 35 | MOVE (1440.000000 213.464567) (1440.000000 210.000000); 36 | MOVE (1206.023622 1160.236220) (1210.000000 1160.000000); 37 | MOVE (1205.000000 1205.000000) (1210.000000 1210.000000); 38 | MOVE (1359.566929 1160.236220) (1360.000000 1160.000000); 39 | MOVE (1205.000000 1215.000000) (1210.000000 1220.000000); 40 | MOVE (1085.000000 875.000000) (1090.000000 880.000000); 41 | MOVE (1755.000000 745.000000) (1760.000000 750.000000); 42 | MOVE (1755.000000 816.000000) (1760.000000 820.000000); 43 | MOVE (1860.000000 1017.165354) (1860.000000 1020.000000); 44 | MOVE (1875.000000 1015.000000) (1880.000000 1020.000000); 45 | MOVE (1860.000000 896.535433) (1860.000000 900.000000); 46 | MOVE (1855.000000 816.000000) (1860.000000 820.000000); 47 | MOVE (1352.834646 850.000000) (1350.000000 850.000000); 48 | MOVE (1355.000000 855.000000) (1360.000000 860.000000); 49 | MOVE (1335.000000 875.000000) (1340.000000 880.000000); 50 | MOVE (1333.976378 939.763780) (1330.000000 940.000000); 51 | MOVE (1375.433071 790.000000) (1380.000000 790.000000); 52 | MOVE (1355.000000 810.000000) (1360.000000 810.000000); 53 | MOVE (1540.433071 935.826772) (1540.000000 940.000000); 54 | MOVE (1860.000000 963.464567) (1860.000000 960.000000); 55 | MOVE (1820.000000 1005.000000) (1820.000000 1010.000000); 56 | MOVE (1745.000000 145.000000) (1750.000000 150.000000); 57 | MOVE (1746.000000 139.000000) (1750.000000 140.000000); 58 | MOVE (1505.000000 140.000000) (1510.000000 140.000000); 59 | MOVE (1506.535433 60.000000) (1510.000000 60.000000); 60 | MOVE (1760.000000 125.000000) (1760.000000 130.000000); 61 | MOVE (1720.000000 274.566929) (1720.000000 270.000000); 62 | MOVE (1720.000000 221.000000) (1720.000000 220.000000); 63 | MOVE (1860.000000 1062.834646) (1860.000000 1060.000000); 64 | MOVE (1585.000000 1065.000000) (1590.000000 1070.000000); 65 | MOVE (1515.000000 995.000000) (1520.000000 1000.000000); 66 | MOVE (1514.842520 935.826772) (1510.000000 940.000000); 67 | MOVE (1805.000000 464.000000) (1810.000000 460.000000); 68 | MOVE (1805.000000 420.000000) (1810.000000 420.000000); 69 | MOVE (1810.000000 395.275591) (1810.000000 400.000000); 70 | MOVE (1684.566929 60.000000) (1680.000000 60.000000); 71 | MOVE (1695.000000 70.000000) (1700.000000 70.000000); 72 | MOVE (1694.000000 139.000000) (1690.000000 140.000000); 73 | MOVE (1630.000000 134.724409) (1630.000000 130.000000); 74 | MOVE (1685.000000 80.000000) (1690.000000 80.000000); 75 | MOVE (1257.204724 939.763780) (1260.000000 940.000000); 76 | MOVE (1255.000000 985.000000) (1260.000000 990.000000); 77 | MOVE (1540.433071 1164.173228) (1540.000000 1160.000000); 78 | MOVE (1514.842520 1164.173228) (1510.000000 1160.000000); 79 | MOVE (1515.000000 1115.000000) (1520.000000 1120.000000); 80 | MOVE (1180.433071 1160.236220) (1180.000000 1160.000000); 81 | MOVE (1231.614173 1160.236220) (1230.000000 1160.000000); 82 | MOVE (1489.251969 1164.173228) (1490.000000 1160.000000); 83 | MOVE (1668.385827 1164.173228) (1670.000000 1160.000000); 84 | MOVE (1231.614173 939.763780) (1230.000000 940.000000); 85 | MOVE (1570.000000 215.433071) (1570.000000 220.000000); 86 | MOVE (1570.000000 225.000000) (1570.000000 230.000000); 87 | MOVE (1630.000000 225.275591) (1630.000000 230.000000); 88 | MOVE (1500.000000 215.000000) (1500.000000 220.000000); 89 | MOVE (1575.000000 75.000000) (1580.000000 80.000000); 90 | MOVE (1573.464567 60.000000) (1570.000000 60.000000); 91 | MOVE (1694.000000 221.000000) (1690.000000 220.000000); 92 | MOVE (1784.566929 240.000000) (1780.000000 240.000000); 93 | MOVE (1795.000000 240.000000) (1800.000000 240.000000); 94 | MOVE (1797.165354 180.000000) (1800.000000 180.000000); 95 | MOVE (1795.000000 190.000000) (1800.000000 190.000000); 96 | MOVE (1746.000000 221.000000) (1750.000000 220.000000); 97 | MOVE (1745.000000 205.000000) (1750.000000 210.000000); 98 | MOVE (1755.433071 60.000000) (1760.000000 60.000000); 99 | MOVE (1795.000000 100.000000) (1800.000000 100.000000); 100 | MOVE (1810.000000 304.724409) (1810.000000 300.000000); 101 | MOVE (1785.000000 280.000000) (1790.000000 280.000000); 102 | DISPLAY NONE 16; 103 | DISPLAY 1 16 17 18 19 20 21 22 23 24 25 42 43 44 45 46 47 48 49 51 52 101 102 103 104 105 106 107 108 109 110 111 112 113 116 121 122 123 124 125 126 127 128 131 151 152 153 154 155 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 248 249 254; 104 | -------------------------------------------------------------------------------- /pcb/fat-mic-array.brd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | <h3>SparkFun Electronics' preferred foot prints</h3> 149 | In this library you'll find sensors- accelerometers, gyros, compasses, magnetometers, light sensors, imagers, temp sensors, etc.<br><br> 150 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 151 | <br><br> 152 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 153 | <br><br> 154 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | >NAME 180 | >VALUE 181 | 182 | 183 | 184 | 185 | 186 | <h3>SparkFun Electronics' preferred foot prints</h3> 187 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 188 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 189 | <br><br> 190 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 191 | <br><br> 192 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 193 | 194 | 195 | <b>CAPACITOR</b><p> 196 | chip 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | >NAME 207 | >VALUE 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | <h3>SparkFun Electronics' preferred foot prints</h3> 216 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 217 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 218 | <br><br> 219 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 220 | <br><br> 221 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 222 | 223 | 224 | <b>CAPACITOR</b><p> 225 | chip 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | >NAME 235 | >VALUE 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | <b>EAGLE Design Rules</b> 254 | <p> 255 | Die Standard-Design-Rules sind so gewählt, dass sie für 256 | die meisten Anwendungen passen. Sollte ihre Platine 257 | besondere Anforderungen haben, treffen Sie die erforderlichen 258 | Einstellungen hier und speichern die Design Rules unter 259 | einem neuen Namen ab. 260 | <b>EAGLE Design Rules</b> 261 | <p> 262 | The default Design Rules have been set to cover 263 | a wide range of applications. Your particular design 264 | may have different requirements, so please make the 265 | necessary adjustments and save your customized 266 | design rules under a new name. 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | -------------------------------------------------------------------------------- /pcb/fat-mic-array.sch: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | <h3>SparkFun Electronics' preferred foot prints</h3> 143 | In this library you'll find sensors- accelerometers, gyros, compasses, magnetometers, light sensors, imagers, temp sensors, etc.<br><br> 144 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 145 | <br><br> 146 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 147 | <br><br> 148 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | >NAME 174 | >VALUE 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | >NAME 185 | >VALUE 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | Omnidirection bottom-port MEMS microphone 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | <h3>SparkFun Electronics' preferred foot prints</h3> 218 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 219 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 220 | <br><br> 221 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 222 | <br><br> 223 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 224 | 225 | 226 | <b>CAPACITOR</b><p> 227 | chip 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | >NAME 238 | >VALUE 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | >NAME 249 | >VALUE 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | <h3>SparkFun Electronics' preferred foot prints</h3> 280 | In this library you'll find resistors, capacitors, inductors, test points, jumper pads, etc.<br><br> 281 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 282 | <br><br> 283 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 284 | <br><br> 285 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | >NAME 297 | >VALUE 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | >Name 314 | >Value 315 | 316 | 317 | <b>RESISTOR</b><p> 318 | chip 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | >NAME 330 | >VALUE 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | >NAME 340 | >VALUE 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | >NAME 352 | >VALUE 353 | 354 | 355 | 356 | 357 | 358 | 359 | <b>CAPACITOR</b><p> 360 | chip 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | >NAME 370 | >VALUE 371 | 372 | 373 | 374 | 375 | 376 | 377 | 1/6W Thru-hole Resistor - *UNPROVEN* 378 | 379 | 380 | 381 | 382 | 383 | 384 | >NAME 385 | >VALUE 386 | 387 | 388 | 389 | 390 | 391 | 392 | >NAME 393 | >VALUE 394 | 395 | 396 | 397 | 398 | 1/4W Resistor, 0.4" wide<p> 399 | 400 | Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a> 401 | 402 | 403 | 404 | 405 | 406 | 407 | >Name 408 | >Value 409 | 410 | 411 | 1/2W Resistor, 0.5" wide<p> 412 | 413 | Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a> 414 | 415 | 416 | 417 | 418 | 419 | 420 | >Name 421 | >Value 422 | 423 | 424 | 1W Resistor, 0.6" wide<p> 425 | 426 | Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a> 427 | 428 | 429 | 430 | 431 | 432 | 433 | >Name 434 | >Value 435 | 436 | 437 | 2W Resistor, 0.8" wide<p> 438 | 439 | Yageo CFR series <a href="http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf">http://www.yageo.com/pdf/yageo/Leaded-R_CFR_2008.pdf</a> 440 | 441 | 442 | 443 | 444 | 445 | 446 | >Name 447 | >Value 448 | 449 | 450 | <h3>AXIAL-0.3-KIT</h3> 451 | 452 | Commonly used for 1/4W through-hole resistors. 0.3" pitch between holes.<br> 453 | <br> 454 | 455 | <b>Warning:</b> This is the KIT version of the AXIAL-0.3 package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side. 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | >Name 467 | >Value 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | This is the "EZ" version of the standard .3" spaced resistor package.<br> 495 | It has a reduced top mask to make it harder to install upside-down. 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | >Name 507 | >Value 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | >NAME 526 | >VALUE 527 | 528 | 529 | 530 | 531 | 532 | 533 | <b>Resistor</b> 534 | Basic schematic elements and footprints for 0603, 1206, and PTH resistors. 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | <h3>SparkFun Electronics' preferred foot prints</h3> 671 | In this library you'll find non-functional items- supply symbols, logos, notations, frame blocks, etc.<br><br> 672 | We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com. 673 | <br><br> 674 | <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ 675 | <br><br> 676 | You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage. 677 | 678 | 679 | 680 | 681 | 682 | >VALUE 683 | 684 | 685 | 686 | 687 | 688 | <b>SUPPLY SYMBOL</b> 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | -------------------------------------------------------------------------------- /pcb/violet-pcb-wip2-boost-converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/violet-pcb-wip2-boost-converter.png -------------------------------------------------------------------------------- /pcb/violet-pcb-wip2-charge-pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeAudioTechnology/fat-violet/bca2f46c39af511d6f6089f9b726d9e233a04954/pcb/violet-pcb-wip2-charge-pump.png --------------------------------------------------------------------------------