Final NuEVI PCBs, schematics and gerbers added. Improved vibrato (now goes below calibrated zero/dead zone too). Fix for AT breath on/off setting not saved. Added midi controller resets when changing breath CC settings.
This commit is contained in:
parent
24e0d81637
commit
564031447a
10 changed files with 13296 additions and 10 deletions
Binary file not shown.
38
NuEVI.ino
38
NuEVI.ino
|
@ -202,7 +202,7 @@ PROGRAMME FUNCTION: EVI Wind Controller using the Freescale MP3V5004GP breath
|
|||
#define VERSION 28
|
||||
#define BREATH_THR_FACTORY 1400
|
||||
#define BREATH_MAX_FACTORY 4000
|
||||
#define PORTAM_THR_FACTORY 2000
|
||||
#define PORTAM_THR_FACTORY 2600
|
||||
#define PORTAM_MAX_FACTORY 3300
|
||||
#define PITCHB_THR_FACTORY 1400
|
||||
#define PITCHB_MAX_FACTORY 2300
|
||||
|
@ -492,7 +492,8 @@ unsigned int curveS2[] = {0,600,1350,2150,2900,4000,6100,9000,11000,12100,12900,
|
|||
unsigned int curveZ1[] = {0,1400,2100,2900,3200,3900,4700,5600,6650,7700,8800,9900,11100,12300,13500,14850,16383};
|
||||
unsigned int curveZ2[] = {0,2000,3200,3800,4096,4800,5100,5900,6650,7700,8800,9900,11100,12300,13500,14850,16383};
|
||||
|
||||
int vibThr=1900; // this gets auto calibrated in setup
|
||||
int vibThr; // this gets auto calibrated in setup
|
||||
int vibThrLo;
|
||||
int oldvibRead=0;
|
||||
byte dirUp=0; // direction of first vibrato wave
|
||||
|
||||
|
@ -674,7 +675,8 @@ void setup() {
|
|||
delay(250);
|
||||
digitalWrite(13,LOW);
|
||||
int cv4=touchRead(15);
|
||||
vibThr=(cv1+cv2+cv3+cv4)/4-70;
|
||||
vibThr=(cv1+cv2+cv3+cv4)/4-30;
|
||||
vibThrLo=(cv1+cv2+cv3+cv4)/4+30;
|
||||
delay(250);
|
||||
digitalWrite(13,HIGH);
|
||||
delay(250);
|
||||
|
@ -682,7 +684,7 @@ void setup() {
|
|||
display.setTextColor(WHITE);
|
||||
display.setTextSize(1);
|
||||
display.setCursor(85,52);
|
||||
display.println("v.1.1.4"); // FIRMWARE VERSION NUMBER HERE <<<<<<<<<<<<<<<<<<<<<<<
|
||||
display.println("v.1.1.5"); // FIRMWARE VERSION NUMBER HERE <<<<<<<<<<<<<<<<<<<<<<<
|
||||
display.display();
|
||||
|
||||
delay(2000);
|
||||
|
@ -1129,6 +1131,10 @@ void midiPanic(){ // all notes off
|
|||
void midiReset(){ // reset all controllers
|
||||
usbMIDI.sendControlChange(121, 0, activeMIDIchannel);
|
||||
dinMIDIsendControlChange(121, 0, activeMIDIchannel - 1);
|
||||
usbMIDI.sendControlChange(7, 100, activeMIDIchannel);
|
||||
dinMIDIsendControlChange(7, 100, activeMIDIchannel - 1);
|
||||
usbMIDI.sendControlChange(11, 127, activeMIDIchannel);
|
||||
dinMIDIsendControlChange(11, 127, activeMIDIchannel - 1);
|
||||
}
|
||||
|
||||
//**************************************************************
|
||||
|
@ -1260,7 +1266,7 @@ void pitch_bend(){
|
|||
calculatedPBdepth = pbDepthList[PBdepth];
|
||||
if (halfPitchBendKey) calculatedPBdepth = calculatedPBdepth*0.5;
|
||||
}
|
||||
if ((vibRead < vibThr)&&(vibRead > oldvibRead)){
|
||||
if (((vibRead < vibThr) || (vibRead > vibThrLo))&&(vibRead > oldvibRead)){
|
||||
nudge = 0.01*constrain(abs(vibRead - oldvibRead),0,100);
|
||||
if (!dirUp){
|
||||
pitchBend=oldpb*(1-nudge)+nudge*(8192 + calculatedPBdepth*vibDepth[vibrato]);
|
||||
|
@ -1269,7 +1275,7 @@ void pitch_bend(){
|
|||
pitchBend=oldpb*(1-nudge)+nudge*(8191 - calculatedPBdepth*vibDepth[vibrato]);
|
||||
vibratoMoved = 1;
|
||||
}
|
||||
} else if ((vibRead < vibThr)&&(vibRead < oldvibRead)){
|
||||
} else if (((vibRead < vibThr) || (vibRead > vibThrLo))&&(vibRead < oldvibRead)){
|
||||
nudge = 0.01*constrain(abs(vibRead - oldvibRead),0,100);
|
||||
if (!dirUp ){
|
||||
pitchBend=oldpb*(1-nudge)+nudge*(8191 - calculatedPBdepth*vibDepth[vibrato]);
|
||||
|
@ -2830,7 +2836,10 @@ void menu() {
|
|||
cursorNow = BLACK;
|
||||
display.display();
|
||||
subBreathCC = 0;
|
||||
if (readSetting(BREATH_CC_ADDR) != breathCC) writeSetting(BREATH_CC_ADDR,breathCC);
|
||||
if (readSetting(BREATH_CC_ADDR) != breathCC) {
|
||||
writeSetting(BREATH_CC_ADDR,breathCC);
|
||||
midiReset();
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
// up
|
||||
|
@ -2856,7 +2865,10 @@ void menu() {
|
|||
cursorNow = BLACK;
|
||||
display.display();
|
||||
subBreathCC = 0;
|
||||
if (readSetting(BREATH_CC_ADDR) != breathCC) writeSetting(BREATH_CC_ADDR,breathCC);
|
||||
if (readSetting(BREATH_CC_ADDR) != breathCC) {
|
||||
writeSetting(BREATH_CC_ADDR,breathCC);
|
||||
midiReset();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -2885,7 +2897,10 @@ void menu() {
|
|||
cursorNow = BLACK;
|
||||
display.display();
|
||||
subBreathAT = 0;
|
||||
if (readSetting(BREATH_AT_ADDR) != breathAT) writeSetting(BREATH_AT_ADDR,breathAT);
|
||||
if (readSetting(BREATH_AT_ADDR) != breathAT){
|
||||
writeSetting(BREATH_AT_ADDR,breathAT);
|
||||
midiReset();
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
// up
|
||||
|
@ -2902,7 +2917,10 @@ void menu() {
|
|||
cursorNow = BLACK;
|
||||
display.display();
|
||||
subBreathAT = 0;
|
||||
if (readSetting(BREATH_AT_ADDR) != breathAT) writeSetting(BREATH_AT_ADDR,breathAT);
|
||||
if (readSetting(BREATH_AT_ADDR) != breathAT){
|
||||
writeSetting(BREATH_AT_ADDR,breathAT);
|
||||
midiReset();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
529
hardware/nuevipcbs/Navboard2.brd
Normal file
529
hardware/nuevipcbs/Navboard2.brd
Normal file
|
@ -0,0 +1,529 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE eagle SYSTEM "eagle.dtd">
|
||||
<eagle version="7.6.0">
|
||||
<drawing>
|
||||
<settings>
|
||||
<setting alwaysvectorfont="no"/>
|
||||
<setting verticaltext="up"/>
|
||||
</settings>
|
||||
<grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="no" altdistance="25" altunitdist="mil" altunit="mil"/>
|
||||
<layers>
|
||||
<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="25" name="tNames" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="26" name="bNames" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
|
||||
<layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
|
||||
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
|
||||
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
|
||||
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
|
||||
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
|
||||
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
|
||||
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
|
||||
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
|
||||
<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
|
||||
<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="45" name="Holes" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
|
||||
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
|
||||
<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
|
||||
<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="90" name="Modules" color="5" fill="1" visible="no" active="no"/>
|
||||
<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
|
||||
<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
|
||||
<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
|
||||
<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
|
||||
<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
|
||||
<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
|
||||
<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="113" name="IDFDebug" color="4" fill="1" visible="no" active="yes"/>
|
||||
<layer number="114" name="Badge_Outline" color="11" fill="1" visible="no" active="no"/>
|
||||
<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
|
||||
<layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
|
||||
<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
|
||||
<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
|
||||
<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
|
||||
<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
|
||||
<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
|
||||
<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
|
||||
<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
|
||||
<layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
|
||||
<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
|
||||
<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
|
||||
</layers>
|
||||
<board>
|
||||
<plain>
|
||||
<wire x1="0" y1="0" x2="57.455" y2="0" width="0" layer="20"/>
|
||||
<wire x1="57.455" y1="0" x2="57.455" y2="40.63" width="0" layer="20"/>
|
||||
<wire x1="57.455" y1="40.63" x2="0" y2="40.63" width="0" layer="20"/>
|
||||
<wire x1="0" y1="40.63" x2="0" y2="0" width="0" layer="20"/>
|
||||
<hole x="2.54" y="38.1" drill="2.3"/>
|
||||
<hole x="2.54" y="2.54" drill="2.3"/>
|
||||
<hole x="54.61" y="2.54" drill="2.3"/>
|
||||
<hole x="54.61" y="38.1" drill="2.3"/>
|
||||
<text x="6.731" y="21.082" size="1.27" layer="121" font="vector">MENU</text>
|
||||
<text x="16.256" y="21.209" size="1.27" layer="121" font="vector">ENTER</text>
|
||||
<text x="18.161" y="30.099" size="1.27" layer="121" font="vector">UP</text>
|
||||
<text x="16.764" y="12.192" size="1.27" layer="121" font="vector">DOWN</text>
|
||||
<text x="14.224" y="36.195" size="0.6096" layer="121" font="vector">GND</text>
|
||||
<text x="16.764" y="36.195" size="0.6096" layer="121" font="vector">GND</text>
|
||||
<text x="19.304" y="36.195" size="0.6096" layer="121" font="vector">VCC</text>
|
||||
<text x="21.844" y="36.195" size="0.6096" layer="121" font="vector">SCL</text>
|
||||
<text x="24.384" y="36.195" size="0.6096" layer="121" font="vector">SDA</text>
|
||||
<text x="33.909" y="26.035" size="0.6096" layer="121" font="vector">GND</text>
|
||||
<text x="36.449" y="26.035" size="0.6096" layer="121" font="vector">VCC</text>
|
||||
<text x="38.989" y="26.035" size="0.6096" layer="121" font="vector">SCL</text>
|
||||
<text x="41.529" y="26.035" size="0.6096" layer="121" font="vector">SDA</text>
|
||||
<text x="6.35" y="1.905" size="0.8128" layer="112" font="vector">Johan Berglund 2018</text>
|
||||
<text x="12.319" y="36.195" size="0.6096" layer="121" font="vector">M</text>
|
||||
<text x="9.779" y="36.195" size="0.6096" layer="121" font="vector">U</text>
|
||||
<text x="7.239" y="36.195" size="0.6096" layer="121" font="vector">E</text>
|
||||
<text x="4.699" y="36.195" size="0.6096" layer="121" font="vector">D</text>
|
||||
</plain>
|
||||
<libraries>
|
||||
<library name="adafruit">
|
||||
<packages>
|
||||
<package name="1X01">
|
||||
<description><b>PIN HEADER</b></description>
|
||||
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
|
||||
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
|
||||
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
|
||||
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
|
||||
<pad name="1" x="0" y="0" drill="1.016" diameter="1.9304" shape="octagon"/>
|
||||
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
|
||||
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
|
||||
</package>
|
||||
</packages>
|
||||
</library>
|
||||
<library name="SparkFun-Retired">
|
||||
<description><h3>SparkFun Electronics' Retired foot prints</h3>
|
||||
In this library you'll find all manner of retired footprints for resistors, capacitors, board names, ICs, etc., that are <b> no longer used</b> in our catalog.
|
||||
<br>
|
||||
<br>
|
||||
We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application.
|
||||
<br>
|
||||
<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>.
|
||||
<br>
|
||||
<br>
|
||||
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
|
||||
<br>
|
||||
<br>
|
||||
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.</description>
|
||||
<packages>
|
||||
<package name="TACTILE-PTH">
|
||||
<description><b>OMRON SWITCH</b></description>
|
||||
<wire x1="3.048" y1="1.016" x2="3.048" y2="2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="3.048" y1="2.54" x2="2.54" y2="3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="-3.048" x2="3.048" y2="-2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="3.048" y1="-2.54" x2="3.048" y2="-1.016" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="3.048" x2="-3.048" y2="2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="-3.048" y1="2.54" x2="-3.048" y2="1.016" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-3.048" x2="-3.048" y2="-2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="-3.048" y1="-2.54" x2="-3.048" y2="-1.016" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-3.048" x2="-2.159" y2="-3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="3.048" x2="2.159" y2="3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="2.159" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="21"/>
|
||||
<wire x1="-2.159" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="21"/>
|
||||
<wire x1="3.048" y1="0.998" x2="3.048" y2="-1.016" width="0.2032" layer="21"/>
|
||||
<wire x1="-3.048" y1="1.028" x2="-3.048" y2="-1.016" width="0.2032" layer="21"/>
|
||||
<wire x1="-2.54" y1="1.27" x2="-2.54" y2="0.508" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-0.508" x2="-2.54" y2="-1.27" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="0.508" x2="-2.159" y2="-0.381" width="0.2032" layer="51"/>
|
||||
<circle x="0" y="0" radius="1.778" width="0.2032" layer="21"/>
|
||||
<pad name="1" x="-3.2512" y="2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<pad name="2" x="3.2512" y="2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<pad name="3" x="-3.2512" y="-2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<pad name="4" x="3.2512" y="-2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<text x="-2.54" y="3.81" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
</package>
|
||||
</packages>
|
||||
</library>
|
||||
</libraries>
|
||||
<attributes>
|
||||
</attributes>
|
||||
<variantdefs>
|
||||
</variantdefs>
|
||||
<classes>
|
||||
<class number="0" name="default" width="0" drill="0">
|
||||
</class>
|
||||
</classes>
|
||||
<designrules name="default">
|
||||
<description language="de"><b>EAGLE Design Rules</b>
|
||||
<p>
|
||||
Die Standard-Design-Rules sind so gewählt, dass sie für
|
||||
die meisten Anwendungen passen. Sollte ihre Platine
|
||||
besondere Anforderungen haben, treffen Sie die erforderlichen
|
||||
Einstellungen hier und speichern die Design Rules unter
|
||||
einem neuen Namen ab.</description>
|
||||
<description language="en"><b>EAGLE Design Rules</b>
|
||||
<p>
|
||||
The default Design Rules have been set to cover
|
||||
a wide range of applications. Your particular design
|
||||
may have different requirements, so please make the
|
||||
necessary adjustments and save your customized
|
||||
design rules under a new name.</description>
|
||||
<param name="layerSetup" value="(1*16)"/>
|
||||
<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/>
|
||||
<param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
|
||||
<param name="mdWireWire" value="6mil"/>
|
||||
<param name="mdWirePad" value="6mil"/>
|
||||
<param name="mdWireVia" value="6mil"/>
|
||||
<param name="mdPadPad" value="6mil"/>
|
||||
<param name="mdPadVia" value="6mil"/>
|
||||
<param name="mdViaVia" value="6mil"/>
|
||||
<param name="mdSmdPad" value="6mil"/>
|
||||
<param name="mdSmdVia" value="6mil"/>
|
||||
<param name="mdSmdSmd" value="6mil"/>
|
||||
<param name="mdViaViaSameLayer" value="6mil"/>
|
||||
<param name="mnLayersViaInSmd" value="2"/>
|
||||
<param name="mdCopperDimension" value="40mil"/>
|
||||
<param name="mdDrill" value="6mil"/>
|
||||
<param name="mdSmdStop" value="0mil"/>
|
||||
<param name="msWidth" value="6mil"/>
|
||||
<param name="msDrill" value="0.35mm"/>
|
||||
<param name="msMicroVia" value="9.99mm"/>
|
||||
<param name="msBlindViaRatio" value="0.5"/>
|
||||
<param name="rvPadTop" value="0.25"/>
|
||||
<param name="rvPadInner" value="0.25"/>
|
||||
<param name="rvPadBottom" value="0.25"/>
|
||||
<param name="rvViaOuter" value="0.25"/>
|
||||
<param name="rvViaInner" value="0.25"/>
|
||||
<param name="rvMicroViaOuter" value="0.25"/>
|
||||
<param name="rvMicroViaInner" value="0.25"/>
|
||||
<param name="rlMinPadTop" value="10mil"/>
|
||||
<param name="rlMaxPadTop" value="20mil"/>
|
||||
<param name="rlMinPadInner" value="10mil"/>
|
||||
<param name="rlMaxPadInner" value="20mil"/>
|
||||
<param name="rlMinPadBottom" value="10mil"/>
|
||||
<param name="rlMaxPadBottom" value="20mil"/>
|
||||
<param name="rlMinViaOuter" value="8mil"/>
|
||||
<param name="rlMaxViaOuter" value="20mil"/>
|
||||
<param name="rlMinViaInner" value="8mil"/>
|
||||
<param name="rlMaxViaInner" value="20mil"/>
|
||||
<param name="rlMinMicroViaOuter" value="4mil"/>
|
||||
<param name="rlMaxMicroViaOuter" value="20mil"/>
|
||||
<param name="rlMinMicroViaInner" value="4mil"/>
|
||||
<param name="rlMaxMicroViaInner" value="20mil"/>
|
||||
<param name="psTop" value="-1"/>
|
||||
<param name="psBottom" value="-1"/>
|
||||
<param name="psFirst" value="-1"/>
|
||||
<param name="psElongationLong" value="100"/>
|
||||
<param name="psElongationOffset" value="100"/>
|
||||
<param name="mvStopFrame" value="1"/>
|
||||
<param name="mvCreamFrame" value="0"/>
|
||||
<param name="mlMinStopFrame" value="4mil"/>
|
||||
<param name="mlMaxStopFrame" value="4mil"/>
|
||||
<param name="mlMinCreamFrame" value="0mil"/>
|
||||
<param name="mlMaxCreamFrame" value="0mil"/>
|
||||
<param name="mlViaStopLimit" value="0mil"/>
|
||||
<param name="srRoundness" value="0"/>
|
||||
<param name="srMinRoundness" value="0mil"/>
|
||||
<param name="srMaxRoundness" value="0mil"/>
|
||||
<param name="slThermalIsolate" value="10mil"/>
|
||||
<param name="slThermalsForVias" value="0"/>
|
||||
<param name="dpMaxLengthDifference" value="10mm"/>
|
||||
<param name="dpGapFactor" value="2.5"/>
|
||||
<param name="checkGrid" value="0"/>
|
||||
<param name="checkAngle" value="0"/>
|
||||
<param name="checkFont" value="1"/>
|
||||
<param name="checkRestrict" value="1"/>
|
||||
<param name="useDiameter" value="13"/>
|
||||
<param name="maxErrors" value="50"/>
|
||||
</designrules>
|
||||
<autorouter>
|
||||
<pass name="Default">
|
||||
<param name="RoutingGrid" value="50mil"/>
|
||||
<param name="AutoGrid" value="1"/>
|
||||
<param name="Efforts" value="0"/>
|
||||
<param name="TopRouterVariant" value="1"/>
|
||||
<param name="tpViaShape" value="round"/>
|
||||
<param name="PrefDir.1" value="a"/>
|
||||
<param name="PrefDir.2" value="0"/>
|
||||
<param name="PrefDir.3" value="0"/>
|
||||
<param name="PrefDir.4" value="0"/>
|
||||
<param name="PrefDir.5" value="0"/>
|
||||
<param name="PrefDir.6" value="0"/>
|
||||
<param name="PrefDir.7" value="0"/>
|
||||
<param name="PrefDir.8" value="0"/>
|
||||
<param name="PrefDir.9" value="0"/>
|
||||
<param name="PrefDir.10" value="0"/>
|
||||
<param name="PrefDir.11" value="0"/>
|
||||
<param name="PrefDir.12" value="0"/>
|
||||
<param name="PrefDir.13" value="0"/>
|
||||
<param name="PrefDir.14" value="0"/>
|
||||
<param name="PrefDir.15" value="0"/>
|
||||
<param name="PrefDir.16" value="a"/>
|
||||
<param name="cfVia" value="8"/>
|
||||
<param name="cfNonPref" value="5"/>
|
||||
<param name="cfChangeDir" value="2"/>
|
||||
<param name="cfOrthStep" value="2"/>
|
||||
<param name="cfDiagStep" value="3"/>
|
||||
<param name="cfExtdStep" value="0"/>
|
||||
<param name="cfBonusStep" value="1"/>
|
||||
<param name="cfMalusStep" value="1"/>
|
||||
<param name="cfPadImpact" value="4"/>
|
||||
<param name="cfSmdImpact" value="4"/>
|
||||
<param name="cfBusImpact" value="0"/>
|
||||
<param name="cfHugging" value="3"/>
|
||||
<param name="cfAvoid" value="4"/>
|
||||
<param name="cfPolygon" value="10"/>
|
||||
<param name="cfBase.1" value="0"/>
|
||||
<param name="cfBase.2" value="1"/>
|
||||
<param name="cfBase.3" value="1"/>
|
||||
<param name="cfBase.4" value="1"/>
|
||||
<param name="cfBase.5" value="1"/>
|
||||
<param name="cfBase.6" value="1"/>
|
||||
<param name="cfBase.7" value="1"/>
|
||||
<param name="cfBase.8" value="1"/>
|
||||
<param name="cfBase.9" value="1"/>
|
||||
<param name="cfBase.10" value="1"/>
|
||||
<param name="cfBase.11" value="1"/>
|
||||
<param name="cfBase.12" value="1"/>
|
||||
<param name="cfBase.13" value="1"/>
|
||||
<param name="cfBase.14" value="1"/>
|
||||
<param name="cfBase.15" value="1"/>
|
||||
<param name="cfBase.16" value="0"/>
|
||||
<param name="mnVias" value="20"/>
|
||||
<param name="mnSegments" value="9999"/>
|
||||
<param name="mnExtdSteps" value="9999"/>
|
||||
<param name="mnRipupLevel" value="10"/>
|
||||
<param name="mnRipupSteps" value="100"/>
|
||||
<param name="mnRipupTotal" value="100"/>
|
||||
</pass>
|
||||
<pass name="Follow-me" refer="Default" active="yes">
|
||||
</pass>
|
||||
<pass name="Busses" refer="Default" active="yes">
|
||||
<param name="cfNonPref" value="4"/>
|
||||
<param name="cfBusImpact" value="4"/>
|
||||
<param name="cfHugging" value="0"/>
|
||||
<param name="mnVias" value="0"/>
|
||||
</pass>
|
||||
<pass name="Route" refer="Default" active="yes">
|
||||
</pass>
|
||||
<pass name="Optimize1" refer="Default" active="yes">
|
||||
<param name="cfVia" value="99"/>
|
||||
<param name="cfExtdStep" value="10"/>
|
||||
<param name="cfHugging" value="1"/>
|
||||
<param name="mnExtdSteps" value="1"/>
|
||||
<param name="mnRipupLevel" value="0"/>
|
||||
</pass>
|
||||
<pass name="Optimize2" refer="Optimize1" active="yes">
|
||||
<param name="cfNonPref" value="0"/>
|
||||
<param name="cfChangeDir" value="6"/>
|
||||
<param name="cfExtdStep" value="0"/>
|
||||
<param name="cfBonusStep" value="2"/>
|
||||
<param name="cfMalusStep" value="2"/>
|
||||
<param name="cfPadImpact" value="2"/>
|
||||
<param name="cfSmdImpact" value="2"/>
|
||||
<param name="cfHugging" value="0"/>
|
||||
</pass>
|
||||
<pass name="Optimize3" refer="Optimize2" active="yes">
|
||||
<param name="cfChangeDir" value="8"/>
|
||||
<param name="cfPadImpact" value="0"/>
|
||||
<param name="cfSmdImpact" value="0"/>
|
||||
</pass>
|
||||
<pass name="Optimize4" refer="Optimize3" active="yes">
|
||||
<param name="cfChangeDir" value="25"/>
|
||||
</pass>
|
||||
</autorouter>
|
||||
<elements>
|
||||
<element name="JP1" library="adafruit" package="1X01" value="" x="15.24" y="33.655"/>
|
||||
<element name="JP2" library="adafruit" package="1X01" value="" x="12.7" y="33.655"/>
|
||||
<element name="JP3" library="adafruit" package="1X01" value="" x="10.16" y="33.655"/>
|
||||
<element name="JP4" library="adafruit" package="1X01" value="" x="7.62" y="33.655"/>
|
||||
<element name="JP5" library="adafruit" package="1X01" value="" x="5.08" y="33.655"/>
|
||||
<element name="S1" library="SparkFun-Retired" package="TACTILE-PTH" value="" x="8.89" y="17.78"/>
|
||||
<element name="S2" library="SparkFun-Retired" package="TACTILE-PTH" value="" x="19.05" y="26.67"/>
|
||||
<element name="S3" library="SparkFun-Retired" package="TACTILE-PTH" value="" x="19.05" y="17.78"/>
|
||||
<element name="S4" library="SparkFun-Retired" package="TACTILE-PTH" value="" x="19.05" y="8.89"/>
|
||||
<element name="JP6" library="adafruit" package="1X01" value="" x="17.78" y="33.655"/>
|
||||
<element name="JP7" library="adafruit" package="1X01" value="" x="20.32" y="33.655"/>
|
||||
<element name="JP8" library="adafruit" package="1X01" value="" x="22.86" y="33.655"/>
|
||||
<element name="JP9" library="adafruit" package="1X01" value="" x="25.4" y="33.655"/>
|
||||
<element name="JP10" library="adafruit" package="1X01" value="" x="34.925" y="28.575"/>
|
||||
<element name="JP11" library="adafruit" package="1X01" value="" x="37.465" y="28.575"/>
|
||||
<element name="JP12" library="adafruit" package="1X01" value="" x="40.005" y="28.575"/>
|
||||
<element name="JP13" library="adafruit" package="1X01" value="" x="42.545" y="28.575"/>
|
||||
</elements>
|
||||
<signals>
|
||||
<signal name="GND">
|
||||
<contactref element="S2" pad="3"/>
|
||||
<contactref element="S2" pad="4"/>
|
||||
<contactref element="S3" pad="3"/>
|
||||
<contactref element="S3" pad="4"/>
|
||||
<contactref element="S4" pad="3"/>
|
||||
<contactref element="S4" pad="4"/>
|
||||
<contactref element="S1" pad="4"/>
|
||||
<contactref element="S1" pad="3"/>
|
||||
<contactref element="JP1" pad="1"/>
|
||||
<polygon width="0.4064" layer="1">
|
||||
<vertex x="0" y="40.64"/>
|
||||
<vertex x="57.785" y="40.64"/>
|
||||
<vertex x="57.785" y="0"/>
|
||||
<vertex x="0" y="0"/>
|
||||
</polygon>
|
||||
<contactref element="JP6" pad="1"/>
|
||||
<contactref element="JP10" pad="1"/>
|
||||
</signal>
|
||||
<signal name="N$2">
|
||||
<contactref element="JP2" pad="1"/>
|
||||
<contactref element="S1" pad="1"/>
|
||||
<contactref element="S1" pad="2"/>
|
||||
<wire x1="5.6388" y1="20.0406" x2="12.1412" y2="20.0406" width="0.4064" layer="16"/>
|
||||
<wire x1="12.7" y1="33.655" x2="12.7" y2="34.925" width="0.4064" layer="16"/>
|
||||
<wire x1="12.7" y1="34.925" x2="12.065" y2="35.56" width="0.4064" layer="16"/>
|
||||
<wire x1="12.065" y1="35.56" x2="3.81" y2="35.56" width="0.4064" layer="16"/>
|
||||
<wire x1="3.81" y1="35.56" x2="3.175" y2="34.925" width="0.4064" layer="16"/>
|
||||
<wire x1="3.175" y1="34.925" x2="3.175" y2="22.5044" width="0.4064" layer="16"/>
|
||||
<wire x1="3.175" y1="22.5044" x2="5.6388" y2="20.0406" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
<signal name="N$3">
|
||||
<contactref element="JP3" pad="1"/>
|
||||
<contactref element="S2" pad="2"/>
|
||||
<contactref element="S2" pad="1"/>
|
||||
<wire x1="15.7988" y1="28.9306" x2="22.3012" y2="28.9306" width="0.4064" layer="16"/>
|
||||
<wire x1="15.7988" y1="28.9306" x2="10.4394" y2="28.9306" width="0.4064" layer="16"/>
|
||||
<wire x1="10.4394" y1="28.9306" x2="10.16" y2="29.21" width="0.4064" layer="16"/>
|
||||
<wire x1="10.16" y1="29.21" x2="10.16" y2="33.655" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
<signal name="N$4">
|
||||
<contactref element="JP4" pad="1"/>
|
||||
<contactref element="S3" pad="2"/>
|
||||
<contactref element="S3" pad="1"/>
|
||||
<wire x1="15.7988" y1="20.0406" x2="22.3012" y2="20.0406" width="0.4064" layer="16"/>
|
||||
<wire x1="15.7988" y1="20.0406" x2="15.7988" y2="21.0312" width="0.4064" layer="16"/>
|
||||
<wire x1="15.7988" y1="21.0312" x2="7.62" y2="29.21" width="0.4064" layer="16"/>
|
||||
<wire x1="7.62" y1="29.21" x2="7.62" y2="33.655" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
<signal name="N$5">
|
||||
<contactref element="JP5" pad="1"/>
|
||||
<contactref element="S4" pad="1"/>
|
||||
<contactref element="S4" pad="2"/>
|
||||
<wire x1="15.7988" y1="11.1506" x2="22.3012" y2="11.1506" width="0.4064" layer="16"/>
|
||||
<wire x1="15.7988" y1="11.1506" x2="15.5194" y2="11.1506" width="0.4064" layer="16"/>
|
||||
<wire x1="15.5194" y1="11.1506" x2="13.97" y2="12.7" width="0.4064" layer="16"/>
|
||||
<wire x1="13.97" y1="12.7" x2="13.97" y2="20.32" width="0.4064" layer="16"/>
|
||||
<wire x1="13.97" y1="20.32" x2="5.08" y2="29.21" width="0.4064" layer="16"/>
|
||||
<wire x1="5.08" y1="29.21" x2="5.08" y2="33.655" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
<signal name="N$6">
|
||||
<contactref element="JP7" pad="1"/>
|
||||
<contactref element="JP11" pad="1"/>
|
||||
<wire x1="20.32" y1="33.655" x2="23.495" y2="30.48" width="0.4064" layer="16"/>
|
||||
<wire x1="23.495" y1="30.48" x2="35.56" y2="30.48" width="0.4064" layer="16"/>
|
||||
<wire x1="35.56" y1="30.48" x2="37.465" y2="28.575" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
<signal name="N$7">
|
||||
<contactref element="JP8" pad="1"/>
|
||||
<contactref element="JP12" pad="1"/>
|
||||
<wire x1="22.86" y1="33.655" x2="24.765" y2="31.75" width="0.4064" layer="16"/>
|
||||
<wire x1="24.765" y1="31.75" x2="36.83" y2="31.75" width="0.4064" layer="16"/>
|
||||
<wire x1="36.83" y1="31.75" x2="40.005" y2="28.575" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
<signal name="N$8">
|
||||
<contactref element="JP9" pad="1"/>
|
||||
<contactref element="JP13" pad="1"/>
|
||||
<wire x1="42.545" y1="28.575" x2="38.1" y2="33.02" width="0.4064" layer="16"/>
|
||||
<wire x1="38.1" y1="33.02" x2="26.035" y2="33.02" width="0.4064" layer="16"/>
|
||||
<wire x1="26.035" y1="33.02" x2="25.4" y2="33.655" width="0.4064" layer="16"/>
|
||||
</signal>
|
||||
</signals>
|
||||
</board>
|
||||
</drawing>
|
||||
</eagle>
|
519
hardware/nuevipcbs/Navboard2.sch
Normal file
519
hardware/nuevipcbs/Navboard2.sch
Normal file
|
@ -0,0 +1,519 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE eagle SYSTEM "eagle.dtd">
|
||||
<eagle version="7.6.0">
|
||||
<drawing>
|
||||
<settings>
|
||||
<setting alwaysvectorfont="no"/>
|
||||
<setting verticaltext="up"/>
|
||||
</settings>
|
||||
<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
|
||||
<layers>
|
||||
<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
|
||||
<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
|
||||
<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
|
||||
<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
|
||||
<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
|
||||
<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
|
||||
<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
|
||||
<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
|
||||
<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
|
||||
<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
|
||||
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
|
||||
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
|
||||
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
|
||||
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
|
||||
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
|
||||
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
|
||||
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
|
||||
<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
|
||||
<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
|
||||
<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
|
||||
<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
|
||||
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
|
||||
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
|
||||
<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
|
||||
<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
|
||||
<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
|
||||
<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="113" name="IDFDebug" color="4" fill="1" visible="no" active="yes"/>
|
||||
<layer number="114" name="Badge_Outline" color="11" fill="1" visible="no" active="no"/>
|
||||
<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
|
||||
<layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
|
||||
<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
|
||||
<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
|
||||
<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
|
||||
<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
|
||||
<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
|
||||
<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
|
||||
<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
|
||||
<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
|
||||
<layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
|
||||
<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/>
|
||||
<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
|
||||
<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
|
||||
<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
|
||||
<layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
|
||||
</layers>
|
||||
<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
|
||||
<libraries>
|
||||
<library name="SparkFun-Retired">
|
||||
<description><h3>SparkFun Electronics' Retired foot prints</h3>
|
||||
In this library you'll find all manner of retired footprints for resistors, capacitors, board names, ICs, etc., that are <b> no longer used</b> in our catalog.
|
||||
<br>
|
||||
<br>
|
||||
We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application.
|
||||
<br>
|
||||
<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>.
|
||||
<br>
|
||||
<br>
|
||||
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
|
||||
<br>
|
||||
<br>
|
||||
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.</description>
|
||||
<packages>
|
||||
<package name="TACTILE-PTH">
|
||||
<description><b>OMRON SWITCH</b></description>
|
||||
<wire x1="3.048" y1="1.016" x2="3.048" y2="2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="3.048" y1="2.54" x2="2.54" y2="3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="-3.048" x2="3.048" y2="-2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="3.048" y1="-2.54" x2="3.048" y2="-1.016" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="3.048" x2="-3.048" y2="2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="-3.048" y1="2.54" x2="-3.048" y2="1.016" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-3.048" x2="-3.048" y2="-2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="-3.048" y1="-2.54" x2="-3.048" y2="-1.016" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-3.048" x2="-2.159" y2="-3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="3.048" x2="2.159" y2="3.048" width="0.2032" layer="51"/>
|
||||
<wire x1="2.159" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="21"/>
|
||||
<wire x1="-2.159" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="21"/>
|
||||
<wire x1="3.048" y1="0.998" x2="3.048" y2="-1.016" width="0.2032" layer="21"/>
|
||||
<wire x1="-3.048" y1="1.028" x2="-3.048" y2="-1.016" width="0.2032" layer="21"/>
|
||||
<wire x1="-2.54" y1="1.27" x2="-2.54" y2="0.508" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-0.508" x2="-2.54" y2="-1.27" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="0.508" x2="-2.159" y2="-0.381" width="0.2032" layer="51"/>
|
||||
<circle x="0" y="0" radius="1.778" width="0.2032" layer="21"/>
|
||||
<pad name="1" x="-3.2512" y="2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<pad name="2" x="3.2512" y="2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<pad name="3" x="-3.2512" y="-2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<pad name="4" x="3.2512" y="-2.2606" drill="1.016" diameter="1.8796"/>
|
||||
<text x="-2.54" y="3.81" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
</package>
|
||||
<package name="KSA_SEALED_TAC_SWITCH">
|
||||
<wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.127" layer="21"/>
|
||||
<wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.127" layer="21"/>
|
||||
<wire x1="-5.08" y1="3.81" x2="5.08" y2="3.81" width="0.127" layer="21"/>
|
||||
<wire x1="5.08" y1="3.81" x2="5.08" y2="-3.81" width="0.127" layer="21"/>
|
||||
<wire x1="5.08" y1="-3.81" x2="-5.08" y2="-3.81" width="0.127" layer="21"/>
|
||||
<wire x1="-5.08" y1="-3.81" x2="-5.08" y2="3.81" width="0.127" layer="21"/>
|
||||
<pad name="P$1" x="-3.81" y="2.54" drill="1" shape="square"/>
|
||||
<pad name="P$2" x="3.81" y="2.54" drill="1" shape="square"/>
|
||||
<pad name="P$3" x="-3.81" y="-2.54" drill="1" shape="square"/>
|
||||
<pad name="P$4" x="3.81" y="-2.54" drill="1" shape="square"/>
|
||||
</package>
|
||||
<package name="TACTILE-SWITCH-SMD">
|
||||
<wire x1="-1.54" y1="-2.54" x2="-2.54" y2="-1.54" width="0.2032" layer="51"/>
|
||||
<wire x1="-2.54" y1="-1.24" x2="-2.54" y2="1.27" width="0.2032" layer="21"/>
|
||||
<wire x1="-2.54" y1="1.54" x2="-1.54" y2="2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="-1.54" y1="2.54" x2="1.54" y2="2.54" width="0.2032" layer="21"/>
|
||||
<wire x1="1.54" y1="2.54" x2="2.54" y2="1.54" width="0.2032" layer="51"/>
|
||||
<wire x1="2.54" y1="1.24" x2="2.54" y2="-1.24" width="0.2032" layer="21"/>
|
||||
<wire x1="2.54" y1="-1.54" x2="1.54" y2="-2.54" width="0.2032" layer="51"/>
|
||||
<wire x1="1.54" y1="-2.54" x2="-1.54" y2="-2.54" width="0.2032" layer="21"/>
|
||||
<wire x1="1.905" y1="1.27" x2="1.905" y2="0.445" width="0.127" layer="51"/>
|
||||
<wire x1="1.905" y1="0.445" x2="2.16" y2="-0.01" width="0.127" layer="51"/>
|
||||
<wire x1="1.905" y1="-0.23" x2="1.905" y2="-1.115" width="0.127" layer="51"/>
|
||||
<circle x="0" y="0" radius="1.27" width="0.2032" layer="21"/>
|
||||
<smd name="1" x="-2.794" y="1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
|
||||
<smd name="2" x="2.794" y="1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
|
||||
<smd name="3" x="-2.794" y="-1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
|
||||
<smd name="4" x="2.794" y="-1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
|
||||
<text x="-0.889" y="1.778" size="0.4064" layer="25">>NAME</text>
|
||||
<text x="-0.889" y="-2.032" size="0.4064" layer="27">>Value</text>
|
||||
</package>
|
||||
</packages>
|
||||
<symbols>
|
||||
<symbol name="SWITCH-MOMENTARY">
|
||||
<wire x1="1.905" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
|
||||
<wire x1="1.905" y1="4.445" x2="1.905" y2="3.175" width="0.254" layer="94"/>
|
||||
<wire x1="-1.905" y1="4.445" x2="-1.905" y2="3.175" width="0.254" layer="94"/>
|
||||
<wire x1="1.905" y1="4.445" x2="0" y2="4.445" width="0.254" layer="94"/>
|
||||
<wire x1="0" y1="4.445" x2="-1.905" y2="4.445" width="0.254" layer="94"/>
|
||||
<wire x1="0" y1="2.54" x2="0" y2="1.905" width="0.1524" layer="94"/>
|
||||
<wire x1="0" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="94"/>
|
||||
<wire x1="0" y1="4.445" x2="0" y2="3.175" width="0.1524" layer="94"/>
|
||||
<wire x1="2.54" y1="-2.54" x2="2.54" y2="0" width="0.1524" layer="94"/>
|
||||
<wire x1="-2.54" y1="-2.54" x2="-2.54" y2="0" width="0.1524" layer="94"/>
|
||||
<wire x1="-2.54" y1="0" x2="1.905" y2="1.27" width="0.254" layer="94"/>
|
||||
<circle x="-2.54" y="0" radius="0.127" width="0.4064" layer="94"/>
|
||||
<circle x="2.54" y="0" radius="0.127" width="0.4064" layer="94"/>
|
||||
<text x="-2.54" y="6.35" size="1.778" layer="95">>NAME</text>
|
||||
<text x="-2.54" y="-6.35" size="1.778" layer="96">>VALUE</text>
|
||||
<pin name="1" x="-5.08" y="0" visible="pad" length="short" direction="pas" swaplevel="2"/>
|
||||
<pin name="3" x="5.08" y="0" visible="pad" length="short" direction="pas" swaplevel="1" rot="R180"/>
|
||||
<pin name="4" x="5.08" y="-2.54" visible="pad" length="short" direction="pas" swaplevel="1" rot="R180"/>
|
||||
<pin name="2" x="-5.08" y="-2.54" visible="pad" length="short" direction="pas" swaplevel="2"/>
|
||||
</symbol>
|
||||
</symbols>
|
||||
<devicesets>
|
||||
<deviceset name="TAC_SWITCH" prefix="S" uservalue="yes">
|
||||
<description><b>Momentary Switch</b><br>
|
||||
Button commonly used for reset or general input.<br>
|
||||
Spark Fun Electronics SKU : COM-00097<br>
|
||||
SMT- SWCH-08247</description>
|
||||
<gates>
|
||||
<gate name="S" symbol="SWITCH-MOMENTARY" x="0" y="0"/>
|
||||
</gates>
|
||||
<devices>
|
||||
<device name="PTH" package="TACTILE-PTH">
|
||||
<connects>
|
||||
<connect gate="S" pin="1" pad="1"/>
|
||||
<connect gate="S" pin="2" pad="2"/>
|
||||
<connect gate="S" pin="3" pad="3"/>
|
||||
<connect gate="S" pin="4" pad="4"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name=""/>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="KSA_SEALED" package="KSA_SEALED_TAC_SWITCH">
|
||||
<connects>
|
||||
<connect gate="S" pin="1" pad="P$1"/>
|
||||
<connect gate="S" pin="2" pad="P$2"/>
|
||||
<connect gate="S" pin="3" pad="P$3"/>
|
||||
<connect gate="S" pin="4" pad="P$4"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name=""/>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="SMD" package="TACTILE-SWITCH-SMD">
|
||||
<connects>
|
||||
<connect gate="S" pin="1" pad="1"/>
|
||||
<connect gate="S" pin="2" pad="2"/>
|
||||
<connect gate="S" pin="3" pad="3"/>
|
||||
<connect gate="S" pin="4" pad="4"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name="">
|
||||
<attribute name="PROD_ID" value="SWCH-08247"/>
|
||||
<attribute name="VALUE" value="TAC_SWITCHSMD"/>
|
||||
</technology>
|
||||
</technologies>
|
||||
</device>
|
||||
</devices>
|
||||
</deviceset>
|
||||
</devicesets>
|
||||
</library>
|
||||
<library name="adafruit">
|
||||
<packages>
|
||||
<package name="1X01">
|
||||
<description><b>PIN HEADER</b></description>
|
||||
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
|
||||
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
|
||||
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
|
||||
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
|
||||
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
|
||||
<pad name="1" x="0" y="0" drill="1.016" diameter="1.9304" shape="octagon"/>
|
||||
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
|
||||
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
|
||||
</package>
|
||||
<package name="1X01-CLEANBIG">
|
||||
<pad name="1" x="0" y="0" drill="1.016" diameter="1.778"/>
|
||||
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
|
||||
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
|
||||
</package>
|
||||
<package name="1X1-BIGPOGO">
|
||||
<pad name="P$1" x="0" y="0" drill="1.4" diameter="2.54" shape="long"/>
|
||||
</package>
|
||||
</packages>
|
||||
<symbols>
|
||||
<symbol name="PINHD1">
|
||||
<wire x1="-6.35" y1="-2.54" x2="1.27" y2="-2.54" width="0.4064" layer="94"/>
|
||||
<wire x1="1.27" y1="-2.54" x2="1.27" y2="2.54" width="0.4064" layer="94"/>
|
||||
<wire x1="1.27" y1="2.54" x2="-6.35" y2="2.54" width="0.4064" layer="94"/>
|
||||
<wire x1="-6.35" y1="2.54" x2="-6.35" y2="-2.54" width="0.4064" layer="94"/>
|
||||
<text x="-6.35" y="3.175" size="1.778" layer="95">>NAME</text>
|
||||
<text x="-6.35" y="-5.08" size="1.778" layer="96">>VALUE</text>
|
||||
<pin name="1" x="-2.54" y="0" visible="pad" length="short" direction="pas" function="dot"/>
|
||||
</symbol>
|
||||
</symbols>
|
||||
<devicesets>
|
||||
<deviceset name="PINHD-1X1" prefix="JP" uservalue="yes">
|
||||
<description><b>Pin header 1x1 for 0.1" spacing</b>
|
||||
<p>
|
||||
With round pins</description>
|
||||
<gates>
|
||||
<gate name="G$1" symbol="PINHD1" x="0" y="0"/>
|
||||
</gates>
|
||||
<devices>
|
||||
<device name="" package="1X01">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="1" pad="1"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name=""/>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="CB" package="1X01-CLEANBIG">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="1" pad="1"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name=""/>
|
||||
</technologies>
|
||||
</device>
|
||||
<device name="-BIGPOGO" package="1X1-BIGPOGO">
|
||||
<connects>
|
||||
<connect gate="G$1" pin="1" pad="P$1"/>
|
||||
</connects>
|
||||
<technologies>
|
||||
<technology name=""/>
|
||||
</technologies>
|
||||
</device>
|
||||
</devices>
|
||||
</deviceset>
|
||||
</devicesets>
|
||||
</library>
|
||||
</libraries>
|
||||
<attributes>
|
||||
</attributes>
|
||||
<variantdefs>
|
||||
</variantdefs>
|
||||
<classes>
|
||||
<class number="0" name="default" width="0" drill="0">
|
||||
</class>
|
||||
</classes>
|
||||
<parts>
|
||||
<part name="S1" library="SparkFun-Retired" deviceset="TAC_SWITCH" device="PTH"/>
|
||||
<part name="S2" library="SparkFun-Retired" deviceset="TAC_SWITCH" device="PTH"/>
|
||||
<part name="S3" library="SparkFun-Retired" deviceset="TAC_SWITCH" device="PTH"/>
|
||||
<part name="S4" library="SparkFun-Retired" deviceset="TAC_SWITCH" device="PTH"/>
|
||||
<part name="JP1" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP2" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP3" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP4" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP5" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP6" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP7" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP8" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP9" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP10" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP11" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP12" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
<part name="JP13" library="adafruit" deviceset="PINHD-1X1" device=""/>
|
||||
</parts>
|
||||
<sheets>
|
||||
<sheet>
|
||||
<plain>
|
||||
</plain>
|
||||
<instances>
|
||||
<instance part="S1" gate="S" x="30.48" y="68.58"/>
|
||||
<instance part="S2" gate="S" x="53.34" y="83.82"/>
|
||||
<instance part="S3" gate="S" x="53.34" y="68.58"/>
|
||||
<instance part="S4" gate="S" x="53.34" y="53.34"/>
|
||||
<instance part="JP1" gate="G$1" x="-5.08" y="91.44"/>
|
||||
<instance part="JP2" gate="G$1" x="-5.08" y="83.82"/>
|
||||
<instance part="JP3" gate="G$1" x="-5.08" y="76.2"/>
|
||||
<instance part="JP4" gate="G$1" x="-5.08" y="68.58"/>
|
||||
<instance part="JP5" gate="G$1" x="-5.08" y="60.96"/>
|
||||
<instance part="JP6" gate="G$1" x="-76.2" y="93.98"/>
|
||||
<instance part="JP7" gate="G$1" x="-76.2" y="86.36"/>
|
||||
<instance part="JP8" gate="G$1" x="-76.2" y="78.74"/>
|
||||
<instance part="JP9" gate="G$1" x="-76.2" y="71.12"/>
|
||||
<instance part="JP10" gate="G$1" x="-53.34" y="93.98"/>
|
||||
<instance part="JP11" gate="G$1" x="-53.34" y="86.36"/>
|
||||
<instance part="JP12" gate="G$1" x="-53.34" y="78.74"/>
|
||||
<instance part="JP13" gate="G$1" x="-53.34" y="71.12"/>
|
||||
</instances>
|
||||
<busses>
|
||||
</busses>
|
||||
<nets>
|
||||
<net name="GND" class="0">
|
||||
<segment>
|
||||
<pinref part="S2" gate="S" pin="3"/>
|
||||
<wire x1="-7.62" y1="91.44" x2="35.56" y2="91.44" width="0.1524" layer="91"/>
|
||||
<wire x1="35.56" y1="91.44" x2="58.42" y2="91.44" width="0.1524" layer="91"/>
|
||||
<wire x1="58.42" y1="91.44" x2="58.42" y2="83.82" width="0.1524" layer="91"/>
|
||||
<pinref part="S2" gate="S" pin="4"/>
|
||||
<wire x1="58.42" y1="83.82" x2="58.42" y2="81.28" width="0.1524" layer="91"/>
|
||||
<pinref part="S3" gate="S" pin="3"/>
|
||||
<wire x1="58.42" y1="81.28" x2="58.42" y2="68.58" width="0.1524" layer="91"/>
|
||||
<pinref part="S3" gate="S" pin="4"/>
|
||||
<wire x1="58.42" y1="68.58" x2="58.42" y2="66.04" width="0.1524" layer="91"/>
|
||||
<pinref part="S4" gate="S" pin="3"/>
|
||||
<wire x1="58.42" y1="66.04" x2="58.42" y2="53.34" width="0.1524" layer="91"/>
|
||||
<pinref part="S4" gate="S" pin="4"/>
|
||||
<wire x1="58.42" y1="53.34" x2="58.42" y2="50.8" width="0.1524" layer="91"/>
|
||||
<pinref part="S1" gate="S" pin="4"/>
|
||||
<pinref part="S1" gate="S" pin="3"/>
|
||||
<wire x1="35.56" y1="66.04" x2="35.56" y2="68.58" width="0.1524" layer="91"/>
|
||||
<wire x1="35.56" y1="68.58" x2="35.56" y2="91.44" width="0.1524" layer="91"/>
|
||||
<pinref part="JP1" gate="G$1" pin="1"/>
|
||||
<pinref part="JP6" gate="G$1" pin="1"/>
|
||||
<pinref part="JP10" gate="G$1" pin="1"/>
|
||||
<wire x1="-78.74" y1="93.98" x2="-76.2" y2="93.98" width="0.1524" layer="91"/>
|
||||
<wire x1="-76.2" y1="93.98" x2="-55.88" y2="93.98" width="0.1524" layer="91"/>
|
||||
<wire x1="-55.88" y1="93.98" x2="-7.62" y2="93.98" width="0.1524" layer="91"/>
|
||||
<wire x1="-7.62" y1="93.98" x2="-7.62" y2="91.44" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$2" class="0">
|
||||
<segment>
|
||||
<pinref part="JP2" gate="G$1" pin="1"/>
|
||||
<pinref part="S1" gate="S" pin="1"/>
|
||||
<wire x1="-7.62" y1="83.82" x2="25.4" y2="83.82" width="0.1524" layer="91"/>
|
||||
<wire x1="25.4" y1="83.82" x2="25.4" y2="68.58" width="0.1524" layer="91"/>
|
||||
<pinref part="S1" gate="S" pin="2"/>
|
||||
<wire x1="25.4" y1="68.58" x2="25.4" y2="66.04" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$3" class="0">
|
||||
<segment>
|
||||
<pinref part="JP3" gate="G$1" pin="1"/>
|
||||
<pinref part="S2" gate="S" pin="2"/>
|
||||
<wire x1="-7.62" y1="76.2" x2="48.26" y2="76.2" width="0.1524" layer="91"/>
|
||||
<wire x1="48.26" y1="76.2" x2="48.26" y2="81.28" width="0.1524" layer="91"/>
|
||||
<pinref part="S2" gate="S" pin="1"/>
|
||||
<wire x1="48.26" y1="81.28" x2="48.26" y2="83.82" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$4" class="0">
|
||||
<segment>
|
||||
<pinref part="JP4" gate="G$1" pin="1"/>
|
||||
<wire x1="-7.62" y1="68.58" x2="20.32" y2="68.58" width="0.1524" layer="91"/>
|
||||
<wire x1="20.32" y1="68.58" x2="20.32" y2="63.5" width="0.1524" layer="91"/>
|
||||
<pinref part="S3" gate="S" pin="2"/>
|
||||
<wire x1="20.32" y1="63.5" x2="48.26" y2="63.5" width="0.1524" layer="91"/>
|
||||
<wire x1="48.26" y1="63.5" x2="48.26" y2="66.04" width="0.1524" layer="91"/>
|
||||
<pinref part="S3" gate="S" pin="1"/>
|
||||
<wire x1="48.26" y1="66.04" x2="48.26" y2="68.58" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$5" class="0">
|
||||
<segment>
|
||||
<pinref part="JP5" gate="G$1" pin="1"/>
|
||||
<pinref part="S4" gate="S" pin="1"/>
|
||||
<wire x1="-7.62" y1="60.96" x2="48.26" y2="60.96" width="0.1524" layer="91"/>
|
||||
<wire x1="48.26" y1="60.96" x2="48.26" y2="53.34" width="0.1524" layer="91"/>
|
||||
<pinref part="S4" gate="S" pin="2"/>
|
||||
<wire x1="48.26" y1="53.34" x2="48.26" y2="50.8" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$6" class="0">
|
||||
<segment>
|
||||
<pinref part="JP7" gate="G$1" pin="1"/>
|
||||
<pinref part="JP11" gate="G$1" pin="1"/>
|
||||
<wire x1="-78.74" y1="86.36" x2="-55.88" y2="86.36" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$7" class="0">
|
||||
<segment>
|
||||
<pinref part="JP8" gate="G$1" pin="1"/>
|
||||
<pinref part="JP12" gate="G$1" pin="1"/>
|
||||
<wire x1="-78.74" y1="78.74" x2="-55.88" y2="78.74" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
<net name="N$8" class="0">
|
||||
<segment>
|
||||
<pinref part="JP9" gate="G$1" pin="1"/>
|
||||
<pinref part="JP13" gate="G$1" pin="1"/>
|
||||
<wire x1="-78.74" y1="71.12" x2="-55.88" y2="71.12" width="0.1524" layer="91"/>
|
||||
</segment>
|
||||
</net>
|
||||
</nets>
|
||||
</sheet>
|
||||
</sheets>
|
||||
</schematic>
|
||||
</drawing>
|
||||
</eagle>
|
3221
hardware/nuevipcbs/NuEVI.brd
Normal file
3221
hardware/nuevipcbs/NuEVI.brd
Normal file
File diff suppressed because it is too large
Load diff
8999
hardware/nuevipcbs/NuEVI.sch
Normal file
8999
hardware/nuevipcbs/NuEVI.sch
Normal file
File diff suppressed because it is too large
Load diff
BIN
hardware/nuevipcbs/navbd-gerbers.zip
Normal file
BIN
hardware/nuevipcbs/navbd-gerbers.zip
Normal file
Binary file not shown.
BIN
hardware/nuevipcbs/nuevi-gerbers.zip
Normal file
BIN
hardware/nuevipcbs/nuevi-gerbers.zip
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue