Browse Source

Fix regulator schematics

- Fix regulator schematics, add missed voltage controll resistors
- Fix deprecated warnings for display
Alexey Edelev 4 years ago
parent
commit
01f6b66776

+ 144 - 144
Arduino/eScooterControl/display.cpp

@@ -30,187 +30,187 @@
 
 const PROGMEM byte Digit[10][5] = {
   {
-    B00000111,
-    B00000101,
-    B00000101,
-    B00000101,
-    B00000111
+    0b00000111,
+    0b00000101,
+    0b00000101,
+    0b00000101,
+    0b00000111
   },{
-    B00000110,
-    B00000101,
-    B00000100,
-    B00000100,
-    B00000100
+    0b00000110,
+    0b00000101,
+    0b00000100,
+    0b00000100,
+    0b00000100
   },{
-    B00000111,
-    B00000100,
-    B00000111,
-    B00000001,
-    B00000111
+    0b00000111,
+    0b00000100,
+    0b00000111,
+    0b00000001,
+    0b00000111
   },{
-    B00000111,
-    B00000100,
-    B00000111,
-    B00000100,
-    B00000111
+    0b00000111,
+    0b00000100,
+    0b00000111,
+    0b00000100,
+    0b00000111
   },{
-    B00000101,
-    B00000101,
-    B00000111,
-    B00000100,
-    B00000100
+    0b00000101,
+    0b00000101,
+    0b00000111,
+    0b00000100,
+    0b00000100
   },{
-    B00000111,
-    B00000001,
-    B00000111,
-    B00000100,
-    B00000111
+    0b00000111,
+    0b00000001,
+    0b00000111,
+    0b00000100,
+    0b00000111
   },{
-    B00000111,
-    B00000001,
-    B00000111,
-    B00000101,
-    B00000111
+    0b00000111,
+    0b00000001,
+    0b00000111,
+    0b00000101,
+    0b00000111
   },{
-    B00000111,
-    B00000100,
-    B00000110,
-    B00000001,
-    B00000001
+    0b00000111,
+    0b00000100,
+    0b00000110,
+    0b00000001,
+    0b00000001
   },{
-    B00000111,
-    B00000101,
-    B00000111,
-    B00000101,
-    B00000111
+    0b00000111,
+    0b00000101,
+    0b00000111,
+    0b00000101,
+    0b00000111
   },{
-    B00000111,
-    B00000101,
-    B00000111,
-    B00000100,
-    B00000111
+    0b00000111,
+    0b00000101,
+    0b00000111,
+    0b00000100,
+    0b00000111
   }
 };
 
 const PROGMEM byte AcceleratorLevel[10][6] = {
     {
-    B00000000,
-    B00000000,
-    B00000000,
-    B00000000,
-    B00000000,
-    B00000001
+    0b00000000,
+    0b00000000,
+    0b00000000,
+    0b00000000,
+    0b00000000,
+    0b00000001
   },{
-    B00000000,
-    B00000000,
-    B00000000,
-    B00000001,
-    B00000001,
-    B00000001
+    0b00000000,
+    0b00000000,
+    0b00000000,
+    0b00000001,
+    0b00000001,
+    0b00000001
   },{
-    B00000000,
-    B00000000,
-    B00000000,
-    B00000011,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b00000000,
+    0b00000000,
+    0b00000011,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B00000000,
-    B00000010,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b00000000,
+    0b00000010,
+    0b00000111,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B00000100,
-    B00000110,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b00000100,
+    0b00000110,
+    0b00000111,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B00001100,
-    B00001110,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b00001100,
+    0b00001110,
+    0b00000111,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B00011100,
-    B00011110,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b00011100,
+    0b00011110,
+    0b00000111,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B00111100,
-    B00111110,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b00111100,
+    0b00111110,
+    0b00000111,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B01111100,
-    B01111110,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b01111100,
+    0b01111110,
+    0b00000111,
+    0b00000011,
+    0b00000001
   },{
-    B00000000,
-    B11111100,
-    B11111110,
-    B00000111,
-    B00000011,
-    B00000001
+    0b00000000,
+    0b11111100,
+    0b11111110,
+    0b00000111,
+    0b00000011,
+    0b00000001
   }
 };
 
 const PROGMEM byte StopSign[8] = {
-    B00011000,
-    B00011000,
-    B00011000,
-    B00011000,
-    B00011000,
-    B00000000,
-    B00011000,
-    B00011000
+    0b00011000,
+    0b00011000,
+    0b00011000,
+    0b00011000,
+    0b00011000,
+    0b00000000,
+    0b00011000,
+    0b00011000
 };
 
 const PROGMEM byte LampSign[5] = {
-    B00000000,
-    B00000000,
-    B01000000,
-    B11100000,
-    B01000000
+    0b00000000,
+    0b00000000,
+    0b01000000,
+    0b11100000,
+    0b01000000
 };
 
 const PROGMEM byte EcoSign[5] = {
-    B00000000,
-    B00000000,
-    B00001100,
-    B00001100,
-    B00000100
+    0b00000000,
+    0b00000000,
+    0b00001100,
+    0b00001100,
+    0b00000100
 };
 
 Display::Display() : mLedControl(DisplayDataPin, DisplayClkPin, DisplayCsPin,2)
  ,mDisplayBuffer{
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000,
-  B00000000}
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000,
+  0b00000000}
   , m_updateRequested(true)
   , m_acceleration(0)
   , m_battery(0)

+ 69 - 68
schematic/ECU.b#1

@@ -8,17 +8,17 @@
 </settings>
 <grid distance="0.5" unitdist="mm" unit="mm" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mm"/>
 <layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="yes"/>
+<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="24" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" 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="no" 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="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
 <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
@@ -32,9 +32,9 @@
 <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="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="no" 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="no" active="yes"/>
 <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
@@ -44,7 +44,7 @@
 <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
 <layer number="49" name="Reference" color="7" fill="1" visible="no" 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="no" active="yes"/>
+<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"/>
@@ -144,10 +144,10 @@
 </layers>
 <board>
 <plain>
-<wire x1="0" y1="0" x2="25" y2="0" width="0" layer="20"/>
-<wire x1="25" y1="0" x2="25" y2="79" width="0" layer="20"/>
+<wire x1="0" y1="3" x2="25" y2="3" width="0" layer="20"/>
+<wire x1="25" y1="3" x2="25" y2="79" width="0" layer="20"/>
 <wire x1="25" y1="79" x2="0" y2="79" width="0" layer="20"/>
-<wire x1="0" y1="79" x2="0" y2="0" width="0" layer="20"/>
+<wire x1="0" y1="79" x2="0" y2="3" width="0" layer="20"/>
 <hole x="3" y="77" drill="1"/>
 <hole x="22" y="77" drill="1"/>
 <hole x="12.5" y="2" drill="1"/>
@@ -929,22 +929,22 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="17.2633" y="11.95" size="1.27" layer="28" rot="MR90" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="-38.03" y="64.02" size="1.778" layer="28" rot="MR90" display="off"/>
 </element>
-<element name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="7.62" y="24.32" smashed="yes" rot="MR0">
-<attribute name="CATEGORY" value="Diode" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="DESCRIPTION" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="FORWARD_CURRENT" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="MPN" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="NAME" x="7.62" y="26.43" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="PART_STATUS" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="REVERSE_VOLTAGE" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SERIES" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SUB-CATEGORY" value="Rectifier" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="TYPE" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="7.62" y="22.21" size="1.27" layer="28" rot="MR0" align="top-center"/>
+<element name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="7.62" y="24.82" smashed="yes" rot="MR0">
+<attribute name="CATEGORY" value="Diode" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="DESCRIPTION" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="FORWARD_CURRENT" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="MPN" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="NAME" x="7.62" y="26.93" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="PART_STATUS" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="REVERSE_VOLTAGE" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SERIES" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SUB-CATEGORY" value="Rectifier" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="TYPE" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="VALUE" x="7.62" y="22.71" size="1.27" layer="28" rot="MR0" align="top-center"/>
 </element>
 <element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.47" y="30.13" smashed="yes" rot="MR90">
 <attribute name="CATEGORY" value="Diode" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
@@ -1091,9 +1091,9 @@ design rules under a new name.</description>
 <attribute name="NAME" x="20.5" y="58.015" size="1.27" layer="26" rot="MR180" align="bottom-center"/>
 <attribute name="VALUE" x="20.5" y="61.985" size="1.27" layer="28" rot="MR180" align="top-center"/>
 </element>
-<element name="D8" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="12" y="11.5" smashed="yes" rot="MR180">
-<attribute name="NAME" x="12" y="9.515" size="1.27" layer="26" rot="MR180" align="bottom-center"/>
-<attribute name="VALUE" x="12" y="13.485" size="1.27" layer="28" rot="MR180" align="top-center"/>
+<element name="D8" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="12" y="16" smashed="yes" rot="MR0">
+<attribute name="NAME" x="12" y="17.485" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
+<attribute name="VALUE" x="12" y="14.015" size="1.27" layer="28" rot="MR0" align="top-center"/>
 </element>
 <element name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="21" y="39" smashed="yes" rot="MR180">
 <attribute name="NAME" x="19.73" y="37.73" size="1.27" layer="26" rot="MR180"/>
@@ -1126,20 +1126,20 @@ design rules under a new name.</description>
 <attribute name="NAME" x="14.5" y="74.135" size="1.27" layer="25" align="bottom-center"/>
 <attribute name="VALUE" x="14.5" y="29.865" size="1.27" layer="27" align="top-center"/>
 </element>
-<element name="S1" library="SparkFun-Switches" package="TACTILE_SWITCH_PTH_6.0MM" package3d_urn="urn:adsk.eagle:package:40163/1" value="MOMENTARY-SWITCH-SPST-PTH-6.0MM" x="12.5" y="18.5" smashed="yes" rot="MR90">
-<attribute name="NAME" x="15.802" y="18.5" size="0.6096" layer="26" font="vector" ratio="20" rot="MR90" align="bottom-center"/>
-<attribute name="PROD_ID" value=" SWCH-08441" x="12.5" y="18.5" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SF_SKU" value="COM-00097" x="12.5" y="18.5" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="VALUE" x="9.325" y="18.5" size="0.6096" layer="28" font="vector" ratio="20" rot="MR90" align="top-center"/>
+<element name="S1" library="SparkFun-Switches" package="TACTILE_SWITCH_PTH_6.0MM" package3d_urn="urn:adsk.eagle:package:40163/1" value="MOMENTARY-SWITCH-SPST-PTH-6.0MM" x="12" y="10" smashed="yes" rot="MR90">
+<attribute name="NAME" x="15.302" y="10" size="0.6096" layer="26" font="vector" ratio="20" rot="MR90" align="bottom-center"/>
+<attribute name="PROD_ID" value=" SWCH-08441" x="12" y="10" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SF_SKU" value="COM-00097" x="12" y="10" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="VALUE" x="8.825" y="10" size="0.6096" layer="28" font="vector" ratio="20" rot="MR90" align="top-center"/>
 </element>
-<element name="SG1" library="buzzer" package="F/HGP" package3d_urn="urn:adsk.eagle:package:5287/1" value="F/HGP" x="13" y="8" smashed="yes" rot="R180">
-<attribute name="MF" value="" x="13" y="8" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="MPN" value="" x="13" y="8" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="NAME" x="8.555" y="1.015" size="1.27" layer="25" ratio="10" rot="R180"/>
-<attribute name="OC_FARNELL" value="unknown" x="13" y="8" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="OC_NEWARK" value="unknown" x="13" y="8" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="POPULARITY" value="0" x="13" y="8" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="16.683" y="11.81" size="1.27" layer="27" ratio="10" rot="R180"/>
+<element name="SG1" library="buzzer" package="F/HGP" package3d_urn="urn:adsk.eagle:package:5287/1" value="F/HGP" x="10" y="20.5" smashed="yes" rot="R180">
+<attribute name="MF" value="" x="10" y="20.5" size="1.778" layer="27" rot="R180" display="off"/>
+<attribute name="MPN" value="" x="10" y="20.5" size="1.778" layer="27" rot="R180" display="off"/>
+<attribute name="NAME" x="5.555" y="13.515" size="1.27" layer="25" ratio="10" rot="R180"/>
+<attribute name="OC_FARNELL" value="unknown" x="10" y="20.5" size="1.778" layer="27" rot="R180" display="off"/>
+<attribute name="OC_NEWARK" value="unknown" x="10" y="20.5" size="1.778" layer="27" rot="R180" display="off"/>
+<attribute name="POPULARITY" value="0" x="10" y="20.5" size="1.778" layer="27" rot="R180" display="off"/>
+<attribute name="VALUE" x="13.683" y="24.31" size="1.27" layer="27" ratio="10" rot="R180"/>
 </element>
 </elements>
 <signals>
@@ -1396,9 +1396,10 @@ design rules under a new name.</description>
 <contactref element="Q2" pad="1"/>
 <contactref element="R1" pad="2"/>
 <wire x1="11.43" y1="35" x2="11.43" y2="54.43" width="0.8128" layer="16"/>
-<wire x1="11.43" y1="35" x2="11.43" y2="28.4" width="0.8128" layer="16"/>
-<wire x1="11.43" y1="28.4" x2="7.45" y2="24.42" width="0.8128" layer="16"/>
-<wire x1="7.45" y1="24.42" x2="7.45" y2="16.38" width="0.8128" layer="16"/>
+<wire x1="11.43" y1="35" x2="11.43" y2="29.9" width="0.8128" layer="16"/>
+<wire x1="11.43" y1="29.9" x2="8.45" y2="26.92" width="0.8128" layer="16"/>
+<wire x1="8.45" y1="26.92" x2="8.45" y2="17.38" width="0.8128" layer="16"/>
+<wire x1="8.45" y1="17.38" x2="7.45" y2="16.38" width="0.8128" layer="16"/>
 <wire x1="16.51" y1="48.76053125" x2="15.3924" y2="47.64293125" width="0.8128" layer="1"/>
 <wire x1="15.3924" y1="25.2476" x2="19.05" y2="21.59" width="0.8128" layer="1"/>
 <wire x1="15.3924" y1="47.64293125" x2="15.3924" y2="25.2476" width="0.8128" layer="1"/>
@@ -1440,54 +1441,54 @@ design rules under a new name.</description>
 <wire x1="5.25" y1="15.43" x2="5.25" y2="13.99" width="0.8128" layer="16"/>
 <wire x1="6.502" y1="12.738" x2="6.502" y2="11.62" width="0.8128" layer="16"/>
 <wire x1="5.25" y1="13.99" x2="6.502" y2="12.738" width="0.8128" layer="16"/>
-<wire x1="4.9152" y1="24.32" x2="5.25" y2="23.9852" width="0.8128" layer="16"/>
-<wire x1="5.25" y1="23.9852" x2="5.25" y2="15.43" width="0.8128" layer="16"/>
+<wire x1="4.9152" y1="24.82" x2="4.25" y2="24.1548" width="0.8128" layer="16"/>
+<wire x1="4.25" y1="24.1548" x2="4.25" y2="16.43" width="0.8128" layer="16"/>
+<wire x1="4.25" y1="16.43" x2="5.25" y2="15.43" width="0.8128" layer="16"/>
 </signal>
 <signal name="N$5">
 <contactref element="D3" pad="1"/>
 <contactref element="D2" pad="1"/>
-<wire x1="13.47" y1="27.4252" x2="13.43" y2="27.4252" width="0.8128" layer="16"/>
-<wire x1="13.43" y1="27.4252" x2="10.3248" y2="24.32" width="0.8128" layer="16"/>
+<wire x1="13.47" y1="27.4252" x2="12.93" y2="27.4252" width="0.8128" layer="16"/>
+<wire x1="12.93" y1="27.4252" x2="10.3248" y2="24.82" width="0.8128" layer="16"/>
 <contactref element="D8" pad="2"/>
-<wire x1="12.5" y1="12" x2="13" y2="11.5" width="0.8128" layer="16"/>
-<wire x1="13" y1="11.5" x2="14.1" y2="11.5" width="0.8128" layer="16"/>
 <contactref element="S1" pad="3"/>
 <contactref element="S1" pad="4"/>
-<wire x1="10.3248" y1="24.32" x2="10.3248" y2="21.8366" width="0.8128" layer="16"/>
-<wire x1="10.3248" y1="21.8366" x2="10.2394" y2="21.7512" width="0.8128" layer="16"/>
-<wire x1="10.2394" y1="21.7512" x2="10.2394" y2="15.2488" width="0.8128" layer="16"/>
-<wire x1="10.2394" y1="15.2488" x2="10.4882" y2="15" width="0.8128" layer="16"/>
-<wire x1="10.2394" y1="15.2488" x2="12.5" y2="12.9882" width="0.8128" layer="16"/>
-<wire x1="12.5" y1="12.9882" x2="12.5" y2="12" width="0.8128" layer="16"/>
+<wire x1="10.3248" y1="24.82" x2="9.8248" y2="24.32" width="0.8128" layer="16"/>
+<wire x1="9.8248" y1="24.32" x2="9.8248" y2="16" width="0.8128" layer="16"/>
+<wire x1="9.8248" y1="16" x2="9.8248" y2="13.3366" width="0.8128" layer="16"/>
+<wire x1="9.8248" y1="13.3366" x2="9.7394" y2="13.2512" width="0.8128" layer="16"/>
+<wire x1="9.7394" y1="13.2512" x2="9.7394" y2="6.7488" width="0.8128" layer="16"/>
+<wire x1="9.7394" y1="6.7488" x2="9.9882" y2="6.5" width="0.8128" layer="16"/>
+<wire x1="9.9" y1="16" x2="9.9" y2="15.3582625" width="0.8128" layer="16"/>
+<wire x1="9.9" y1="16" x2="9.8248" y2="16" width="0.1524" layer="16"/>
 </signal>
 <signal name="SPOUT">
 <contactref element="J7" pad="6"/>
 <contactref element="C3" pad="1"/>
-<wire x1="12.3016" y1="24.40786875" x2="12.3016" y2="14.1984" width="0.8128" layer="1"/>
+<wire x1="16.3016" y1="20.90786875" x2="16.3016" y2="11.24786875" width="0.8128" layer="1"/>
 <wire x1="2.54" y1="31.67" x2="6.08" y2="28.13" width="0.8128" layer="16"/>
-<wire x1="7.62" y1="28.13" x2="8.57946875" y2="28.13" width="0.8128" layer="1"/>
-<wire x1="8.57946875" y1="28.13" x2="12.3016" y2="24.40786875" width="0.8128" layer="1"/>
+<wire x1="7.62" y1="28.13" x2="9.07946875" y2="28.13" width="0.8128" layer="1"/>
+<wire x1="9.07946875" y1="28.13" x2="16.3016" y2="20.90786875" width="0.8128" layer="1"/>
 <wire x1="2.54" y1="42.64" x2="2.54" y2="31.67" width="0.8128" layer="16"/>
 <via x="7.62" y="28.13" extent="1-16" drill="0.35"/>
 <wire x1="6.08" y1="28.13" x2="7.62" y2="28.13" width="0.8128" layer="16"/>
 <contactref element="J2" pad="1"/>
-<wire x1="12.3016" y1="14.1984" x2="14" y2="12.5" width="0.8128" layer="1"/>
 <wire x1="18.46946875" y1="9.08" x2="21.86" y2="9.08" width="0.8128" layer="1"/>
 <wire x1="20.5146" y1="9.08" x2="21.86" y2="9.08" width="0.8128" layer="16"/>
 <wire x1="19.12" y1="10.4746" x2="20.5146" y2="9.08" width="0.8128" layer="16"/>
-<wire x1="15.04946875" y1="12.5" x2="18.46946875" y2="9.08" width="0.8128" layer="1"/>
-<wire x1="14" y1="12.5" x2="15.04946875" y2="12.5" width="0.8128" layer="1"/>
+<wire x1="16.3016" y1="11.24786875" x2="18.46946875" y2="9.08" width="0.8128" layer="1"/>
 </signal>
 <signal name="SPK">
-<wire x1="2.54" y1="37.02" x2="2.54" y2="16.7" width="0.8128" layer="1"/>
-<wire x1="2.54" y1="16.7" x2="9.19" y2="10.05" width="0.8128" layer="1"/>
-<wire x1="2.54" y1="37.02" x2="4.191" y2="38.671" width="0.8128" layer="1"/>
-<wire x1="4.191" y1="46.291" x2="4.191" y2="38.671" width="0.8128" layer="1"/>
+<wire x1="2.04" y1="37.52" x2="2.04" y2="25" width="0.8128" layer="1"/>
+<wire x1="2.04" y1="37.52" x2="4.191" y2="39.671" width="0.8128" layer="1"/>
+<wire x1="4.191" y1="46.291" x2="4.191" y2="39.671" width="0.8128" layer="1"/>
 <contactref element="U1" pad="10"/>
 <wire x1="6.55" y1="46.92" x2="4.82" y2="46.92" width="0.8128" layer="1"/>
 <wire x1="4.82" y1="46.92" x2="4.191" y2="46.291" width="0.8128" layer="1"/>
 <contactref element="SG1" pad="2"/>
-<wire x1="9.19" y1="10.05" x2="9.19" y2="8" width="0.8128" layer="1"/>
+<wire x1="2.19" y1="25" x2="2.04" y2="25" width="0.8128" layer="1"/>
+<wire x1="6.19" y1="21" x2="2.19" y2="25" width="0.8128" layer="1"/>
+<wire x1="6.19" y1="21" x2="6.19" y2="20.5" width="0.8128" layer="1"/>
 </signal>
 <signal name="3V3">
 <contactref element="U1" pad="2"/>

+ 21 - 21
schematic/ECU.b#2

@@ -929,22 +929,22 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="17.2633" y="11.95" size="1.27" layer="28" rot="MR90" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="-38.03" y="64.02" size="1.778" layer="28" rot="MR90" display="off"/>
 </element>
-<element name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="7.62" y="25.82" smashed="yes" rot="MR0">
-<attribute name="CATEGORY" value="Diode" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="DESCRIPTION" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="FORWARD_CURRENT" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="MPN" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="NAME" x="7.62" y="27.93" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="PART_STATUS" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="REVERSE_VOLTAGE" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SERIES" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SUB-CATEGORY" value="Rectifier" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="TYPE" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="7.62" y="23.71" size="1.27" layer="28" rot="MR0" align="top-center"/>
+<element name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="7.62" y="24.82" smashed="yes" rot="MR0">
+<attribute name="CATEGORY" value="Diode" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="DESCRIPTION" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="FORWARD_CURRENT" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="MPN" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="NAME" x="7.62" y="26.93" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="PART_STATUS" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="REVERSE_VOLTAGE" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SERIES" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SUB-CATEGORY" value="Rectifier" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="TYPE" value="" x="-24.13" y="-33.6" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="VALUE" x="7.62" y="22.71" size="1.27" layer="28" rot="MR0" align="top-center"/>
 </element>
 <element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.47" y="30.13" smashed="yes" rot="MR90">
 <attribute name="CATEGORY" value="Diode" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
@@ -1440,20 +1440,20 @@ design rules under a new name.</description>
 <wire x1="5.25" y1="15.43" x2="5.25" y2="13.99" width="0.8128" layer="16"/>
 <wire x1="6.502" y1="12.738" x2="6.502" y2="11.62" width="0.8128" layer="16"/>
 <wire x1="5.25" y1="13.99" x2="6.502" y2="12.738" width="0.8128" layer="16"/>
-<wire x1="4.9152" y1="25.82" x2="5.25" y2="25.4852" width="0.8128" layer="16"/>
-<wire x1="5.25" y1="25.4852" x2="5.25" y2="15.43" width="0.8128" layer="16"/>
+<wire x1="4.9152" y1="24.82" x2="5.25" y2="24.4852" width="0.8128" layer="16"/>
+<wire x1="5.25" y1="24.4852" x2="5.25" y2="15.43" width="0.8128" layer="16"/>
 </signal>
 <signal name="N$5">
 <contactref element="D3" pad="1"/>
 <contactref element="D2" pad="1"/>
-<wire x1="13.47" y1="27.4252" x2="11.93" y2="27.4252" width="0.8128" layer="16"/>
-<wire x1="11.93" y1="27.4252" x2="10.3248" y2="25.82" width="0.8128" layer="16"/>
+<wire x1="13.47" y1="27.4252" x2="12.93" y2="27.4252" width="0.8128" layer="16"/>
+<wire x1="12.93" y1="27.4252" x2="10.3248" y2="24.82" width="0.8128" layer="16"/>
 <contactref element="D8" pad="2"/>
 <wire x1="12.5" y1="12" x2="13" y2="11.5" width="0.8128" layer="16"/>
 <wire x1="13" y1="11.5" x2="14.1" y2="11.5" width="0.8128" layer="16"/>
 <contactref element="S1" pad="3"/>
 <contactref element="S1" pad="4"/>
-<wire x1="10.3248" y1="25.82" x2="10.3248" y2="21.8366" width="0.8128" layer="16"/>
+<wire x1="10.3248" y1="24.82" x2="10.3248" y2="21.8366" width="0.8128" layer="16"/>
 <wire x1="10.3248" y1="21.8366" x2="10.2394" y2="21.7512" width="0.8128" layer="16"/>
 <wire x1="10.2394" y1="21.7512" x2="10.2394" y2="15.2488" width="0.8128" layer="16"/>
 <wire x1="10.2394" y1="15.2488" x2="10.4882" y2="15" width="0.8128" layer="16"/>

+ 43 - 40
schematic/ECU.b#3

@@ -8,17 +8,17 @@
 </settings>
 <grid distance="0.5" unitdist="mm" unit="mm" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mm"/>
 <layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
+<layer number="1" name="Top" color="4" fill="1" visible="no" 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="24" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
+<layer number="21" name="tPlace" color="7" fill="1" visible="no" 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="23" name="tOrigins" color="15" fill="1" visible="no" 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="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="yes" active="yes"/>
 <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
 <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
@@ -32,9 +32,9 @@
 <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="39" name="tKeepout" color="4" fill="11" visible="no" 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="41" name="tRestrict" color="4" fill="10" visible="no" 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="no" active="yes"/>
 <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
@@ -44,7 +44,7 @@
 <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
 <layer number="49" name="Reference" color="7" fill="1" visible="no" 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="51" name="tDocu" color="7" fill="1" visible="no" 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"/>
@@ -929,22 +929,22 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="17.2633" y="11.95" size="1.27" layer="28" rot="MR90" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="-38.03" y="64.02" size="1.778" layer="28" rot="MR90" display="off"/>
 </element>
-<element name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="7.62" y="25.82" smashed="yes" rot="MR0">
-<attribute name="CATEGORY" value="Diode" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="DESCRIPTION" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="FORWARD_CURRENT" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="MPN" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="NAME" x="7.62" y="27.93" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="PART_STATUS" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="REVERSE_VOLTAGE" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SERIES" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SUB-CATEGORY" value="Rectifier" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="TYPE" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="7.62" y="23.71" size="1.27" layer="28" rot="MR0" align="top-center"/>
+<element name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="7.62" y="24.32" smashed="yes" rot="MR0">
+<attribute name="CATEGORY" value="Diode" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="DESCRIPTION" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="FORWARD_CURRENT" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="MPN" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="NAME" x="7.62" y="26.43" size="1.27" layer="26" rot="MR0" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="PART_STATUS" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="REVERSE_VOLTAGE" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SERIES" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SUB-CATEGORY" value="Rectifier" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="TYPE" value="" x="-24.13" y="-34.1" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="VALUE" x="7.62" y="22.21" size="1.27" layer="28" rot="MR0" align="top-center"/>
 </element>
 <element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.47" y="30.13" smashed="yes" rot="MR90">
 <attribute name="CATEGORY" value="Diode" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
@@ -1069,11 +1069,11 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="-48.26" y="-40.45" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="6.35" y="9.08" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="17" y="18" smashed="yes" rot="MR270">
-<attribute name="NAME" x="15.73" y="19.27" size="1.27" layer="26" rot="MR270"/>
-<attribute name="SPICEMODEL" value="NONE" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
-<attribute name="SPICEPREFIX" value="R" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
-<attribute name="VALUE" x="19.54" y="19.27" size="1.27" layer="28" rot="MR270"/>
+<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="18" y="17.5" smashed="yes" rot="MR0">
+<attribute name="NAME" x="19.27" y="18.77" size="1.27" layer="26" rot="MR0"/>
+<attribute name="SPICEMODEL" value="NONE" x="18" y="17.5" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="18" y="17.5" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="VALUE" x="19.27" y="14.96" size="1.27" layer="28" rot="MR0"/>
 </element>
 <element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="5.5" y="58" smashed="yes" rot="MR90">
 <attribute name="NAME" x="7.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
@@ -1310,10 +1310,13 @@ design rules under a new name.</description>
 <contactref element="U1" pad="20"/>
 <wire x1="20.83" y1="44.38" x2="20.05" y2="43.6" width="0.8128" layer="1"/>
 <wire x1="22.45" y1="44.38" x2="20.83" y2="44.38" width="0.8128" layer="1"/>
-<wire x1="21.86" y1="26.86" x2="21.86" y2="27.36" width="0.8128" layer="16"/>
-<wire x1="20.1" y1="24.5" x2="21.86" y2="26.86" width="0" layer="19" extent="16-16"/>
-<wire x1="17" y1="19.422" x2="20.1" y2="24.5" width="0" layer="19" extent="16-16"/>
-<wire x1="21.3" y1="16.7" x2="17" y2="19.422" width="0" layer="19" extent="16-16"/>
+<wire x1="20.1" y1="24.5" x2="21" y2="24.5" width="0.8128" layer="16"/>
+<wire x1="21" y1="24.5" x2="21.86" y2="25.36" width="0.8128" layer="16"/>
+<wire x1="21.86" y1="25.36" x2="21.86" y2="27.36" width="0.8128" layer="16"/>
+<wire x1="20.1" y1="24.5" x2="19.422" y2="23.822" width="0.8128" layer="16"/>
+<wire x1="19.422" y1="23.822" x2="19.422" y2="17.5" width="0.8128" layer="16"/>
+<wire x1="21.86" y1="16.7" x2="20.222" y2="16.7" width="0.8128" layer="16"/>
+<wire x1="20.222" y1="16.7" x2="19.422" y2="17.5" width="0.8128" layer="16"/>
 </signal>
 <signal name="BTN">
 <contactref element="D3" pad="2"/>
@@ -1393,9 +1396,9 @@ design rules under a new name.</description>
 <contactref element="Q2" pad="1"/>
 <contactref element="R1" pad="2"/>
 <wire x1="11.43" y1="35" x2="11.43" y2="54.43" width="0.8128" layer="16"/>
-<wire x1="11.43" y1="35" x2="11.43" y2="29.9" width="0.8128" layer="16"/>
-<wire x1="11.43" y1="29.9" x2="7.45" y2="25.92" width="0.8128" layer="16"/>
-<wire x1="7.45" y1="25.92" x2="7.45" y2="16.38" width="0.8128" layer="16"/>
+<wire x1="11.43" y1="35" x2="11.43" y2="28.4" width="0.8128" layer="16"/>
+<wire x1="11.43" y1="28.4" x2="7.45" y2="24.42" width="0.8128" layer="16"/>
+<wire x1="7.45" y1="24.42" x2="7.45" y2="16.38" width="0.8128" layer="16"/>
 <wire x1="16.51" y1="48.76053125" x2="15.3924" y2="47.64293125" width="0.8128" layer="1"/>
 <wire x1="15.3924" y1="25.2476" x2="19.05" y2="21.59" width="0.8128" layer="1"/>
 <wire x1="15.3924" y1="47.64293125" x2="15.3924" y2="25.2476" width="0.8128" layer="1"/>
@@ -1437,20 +1440,20 @@ design rules under a new name.</description>
 <wire x1="5.25" y1="15.43" x2="5.25" y2="13.99" width="0.8128" layer="16"/>
 <wire x1="6.502" y1="12.738" x2="6.502" y2="11.62" width="0.8128" layer="16"/>
 <wire x1="5.25" y1="13.99" x2="6.502" y2="12.738" width="0.8128" layer="16"/>
-<wire x1="4.9152" y1="25.82" x2="5.25" y2="25.4852" width="0.8128" layer="16"/>
-<wire x1="5.25" y1="25.4852" x2="5.25" y2="15.43" width="0.8128" layer="16"/>
+<wire x1="4.9152" y1="24.32" x2="5.25" y2="23.9852" width="0.8128" layer="16"/>
+<wire x1="5.25" y1="23.9852" x2="5.25" y2="15.43" width="0.8128" layer="16"/>
 </signal>
 <signal name="N$5">
 <contactref element="D3" pad="1"/>
 <contactref element="D2" pad="1"/>
-<wire x1="13.47" y1="27.4252" x2="11.93" y2="27.4252" width="0.8128" layer="16"/>
-<wire x1="11.93" y1="27.4252" x2="10.3248" y2="25.82" width="0.8128" layer="16"/>
+<wire x1="13.47" y1="27.4252" x2="13.43" y2="27.4252" width="0.8128" layer="16"/>
+<wire x1="13.43" y1="27.4252" x2="10.3248" y2="24.32" width="0.8128" layer="16"/>
 <contactref element="D8" pad="2"/>
 <wire x1="12.5" y1="12" x2="13" y2="11.5" width="0.8128" layer="16"/>
 <wire x1="13" y1="11.5" x2="14.1" y2="11.5" width="0.8128" layer="16"/>
 <contactref element="S1" pad="3"/>
 <contactref element="S1" pad="4"/>
-<wire x1="10.3248" y1="25.82" x2="10.3248" y2="21.8366" width="0.8128" layer="16"/>
+<wire x1="10.3248" y1="24.32" x2="10.3248" y2="21.8366" width="0.8128" layer="16"/>
 <wire x1="10.3248" y1="21.8366" x2="10.2394" y2="21.7512" width="0.8128" layer="16"/>
 <wire x1="10.2394" y1="21.7512" x2="10.2394" y2="15.2488" width="0.8128" layer="16"/>
 <wire x1="10.2394" y1="15.2488" x2="10.4882" y2="15" width="0.8128" layer="16"/>

+ 19 - 16
schematic/ECU.b#4

@@ -8,17 +8,17 @@
 </settings>
 <grid distance="0.5" unitdist="mm" unit="mm" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mm"/>
 <layers>
-<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
+<layer number="1" name="Top" color="4" fill="1" visible="no" 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="24" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
+<layer number="21" name="tPlace" color="7" fill="1" visible="no" 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="23" name="tOrigins" color="15" fill="1" visible="no" 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="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="yes" active="yes"/>
 <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
 <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
@@ -32,9 +32,9 @@
 <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="39" name="tKeepout" color="4" fill="11" visible="no" 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="41" name="tRestrict" color="4" fill="10" visible="no" 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="no" active="yes"/>
 <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
@@ -44,7 +44,7 @@
 <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
 <layer number="49" name="Reference" color="7" fill="1" visible="no" 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="51" name="tDocu" color="7" fill="1" visible="no" 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"/>
@@ -1069,11 +1069,11 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="-48.26" y="-40.45" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="6.35" y="9.08" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="17" y="18" smashed="yes" rot="MR270">
-<attribute name="NAME" x="15.73" y="19.27" size="1.27" layer="26" rot="MR270"/>
-<attribute name="SPICEMODEL" value="NONE" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
-<attribute name="SPICEPREFIX" value="R" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
-<attribute name="VALUE" x="19.54" y="19.27" size="1.27" layer="28" rot="MR270"/>
+<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="18" y="17.5" smashed="yes" rot="MR0">
+<attribute name="NAME" x="19.27" y="18.77" size="1.27" layer="26" rot="MR0"/>
+<attribute name="SPICEMODEL" value="NONE" x="18" y="17.5" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="18" y="17.5" size="1.778" layer="28" rot="MR0" display="off"/>
+<attribute name="VALUE" x="19.27" y="14.96" size="1.27" layer="28" rot="MR0"/>
 </element>
 <element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="5.5" y="58" smashed="yes" rot="MR90">
 <attribute name="NAME" x="7.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
@@ -1310,10 +1310,13 @@ design rules under a new name.</description>
 <contactref element="U1" pad="20"/>
 <wire x1="20.83" y1="44.38" x2="20.05" y2="43.6" width="0.8128" layer="1"/>
 <wire x1="22.45" y1="44.38" x2="20.83" y2="44.38" width="0.8128" layer="1"/>
-<wire x1="21.86" y1="26.86" x2="21.86" y2="27.36" width="0.8128" layer="16"/>
-<wire x1="20.1" y1="24.5" x2="21.86" y2="26.86" width="0" layer="19" extent="16-16"/>
-<wire x1="17" y1="19.422" x2="20.1" y2="24.5" width="0" layer="19" extent="16-16"/>
-<wire x1="21.3" y1="16.7" x2="17" y2="19.422" width="0" layer="19" extent="16-16"/>
+<wire x1="20.1" y1="24.5" x2="21" y2="24.5" width="0.8128" layer="16"/>
+<wire x1="21" y1="24.5" x2="21.86" y2="25.36" width="0.8128" layer="16"/>
+<wire x1="21.86" y1="25.36" x2="21.86" y2="27.36" width="0.8128" layer="16"/>
+<wire x1="20.1" y1="24.5" x2="19.422" y2="23.822" width="0.8128" layer="16"/>
+<wire x1="19.422" y1="23.822" x2="19.422" y2="17.5" width="0.8128" layer="16"/>
+<wire x1="21.86" y1="16.7" x2="20.222" y2="16.7" width="0.8128" layer="16"/>
+<wire x1="20.222" y1="16.7" x2="19.422" y2="17.5" width="0.8128" layer="16"/>
 </signal>
 <signal name="BTN">
 <contactref element="D3" pad="2"/>

+ 45 - 48
schematic/ECU.b#5

@@ -8,17 +8,17 @@
 </settings>
 <grid distance="0.5" unitdist="mm" unit="mm" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mm"/>
 <layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="yes"/>
+<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="24" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" 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="no" 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="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
 <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
@@ -32,9 +32,9 @@
 <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="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="no" 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="no" active="yes"/>
 <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
@@ -44,7 +44,7 @@
 <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
 <layer number="49" name="Reference" color="7" fill="1" visible="no" 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="no" active="yes"/>
+<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"/>
@@ -946,26 +946,26 @@ design rules under a new name.</description>
 <attribute name="TYPE" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="7.62" y="23.71" size="1.27" layer="28" rot="MR0" align="top-center"/>
 </element>
-<element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.97" y="29.13" smashed="yes" rot="MR90">
-<attribute name="CATEGORY" value="Diode" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="DESCRIPTION" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="FORWARD_CURRENT" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MPN" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="NAME" x="10.58" y="29.63" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="PART_STATUS" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="REVERSE_VOLTAGE" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SERIES" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SUB-CATEGORY" value="Rectifier" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="TYPE" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="VALUE" x="11.86" y="29.13" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.47" y="30.13" smashed="yes" rot="MR90">
+<attribute name="CATEGORY" value="Diode" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="DESCRIPTION" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="FORWARD_CURRENT" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MPN" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="NAME" x="10.08" y="30.63" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="PART_STATUS" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="REVERSE_VOLTAGE" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SERIES" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SUB-CATEGORY" value="Rectifier" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="TYPE" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="VALUE" x="11.36" y="30.13" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
-<element name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02" package3d_urn="urn:adsk.eagle:package:38039/1" value="Break" x="21.86" y="26.86" smashed="yes" rot="R180">
-<attribute name="NAME" x="23.13" y="25.463" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
-<attribute name="VALUE" x="23.13" y="28.892" size="0.6096" layer="27" font="vector" ratio="20" rot="R180"/>
+<element name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02" package3d_urn="urn:adsk.eagle:package:38039/1" value="Break" x="21.86" y="27.36" smashed="yes" rot="R180">
+<attribute name="NAME" x="23.13" y="25.963" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
+<attribute name="VALUE" x="23.13" y="29.392" size="0.6096" layer="27" font="vector" ratio="20" rot="R180"/>
 </element>
 <element name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X06" package3d_urn="urn:adsk.eagle:package:38009/1" value="COMM" x="21.86" y="9.08" smashed="yes" rot="R90">
 <attribute name="NAME" x="20.463" y="7.81" size="0.6096" layer="25" font="vector" ratio="20" rot="R90"/>
@@ -1069,19 +1069,19 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="-48.26" y="-40.45" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="6.35" y="9.08" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="17.5" y="24" smashed="yes" rot="MR0">
-<attribute name="NAME" x="18.77" y="25.27" size="1.27" layer="26" rot="MR0"/>
-<attribute name="SPICEMODEL" value="NONE" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SPICEPREFIX" value="R" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="18.77" y="21.46" size="1.27" layer="28" rot="MR0"/>
+<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="17" y="18" smashed="yes" rot="MR270">
+<attribute name="NAME" x="15.73" y="19.27" size="1.27" layer="26" rot="MR270"/>
+<attribute name="SPICEMODEL" value="NONE" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
+<attribute name="VALUE" x="19.54" y="19.27" size="1.27" layer="28" rot="MR270"/>
 </element>
 <element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="5.5" y="58" smashed="yes" rot="MR90">
 <attribute name="NAME" x="7.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
 <attribute name="VALUE" x="3.515" y="58" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
-<element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="18" smashed="yes" rot="MR90">
-<attribute name="NAME" x="20.985" y="18" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="VALUE" x="17.015" y="18" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="18" y="24.5" smashed="yes" rot="MR180">
+<attribute name="NAME" x="18" y="22.515" size="1.27" layer="26" rot="MR180" align="bottom-center"/>
+<attribute name="VALUE" x="18" y="26.485" size="1.27" layer="28" rot="MR180" align="top-center"/>
 </element>
 <element name="D6" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="31" smashed="yes" rot="MR180">
 <attribute name="NAME" x="19" y="34.015" size="1.27" layer="26" rot="MR180" align="bottom-center"/>
@@ -1243,10 +1243,10 @@ design rules under a new name.</description>
 <wire x1="10.4571" y1="51.5" x2="14" y2="51.5" width="0.8128" layer="1"/>
 <via x="14" y="51.5" extent="1-16" drill="0.35"/>
 <wire x1="14" y1="51.5" x2="17" y2="48.5" width="0.8128" layer="16"/>
-<wire x1="17" y1="29.18" x2="19.32" y2="26.86" width="0.8128" layer="16"/>
+<wire x1="17" y1="29.68" x2="19.32" y2="27.36" width="0.8128" layer="16"/>
 <wire x1="17" y1="48.5" x2="17" y2="31" width="0.8128" layer="16"/>
 <contactref element="D6" pad="1"/>
-<wire x1="17" y1="31" x2="17" y2="29.18" width="0.8128" layer="16"/>
+<wire x1="17" y1="31" x2="17" y2="29.68" width="0.8128" layer="16"/>
 <wire x1="16.9" y1="31" x2="17" y2="31" width="0.8128" layer="16"/>
 <contactref element="J5" pad="2"/>
 <wire x1="2.54" y1="63.23" x2="3.31" y2="63.23" width="0.8128" layer="16"/>
@@ -1300,28 +1300,25 @@ design rules under a new name.</description>
 </signal>
 <signal name="ST">
 <contactref element="J1" pad="1"/>
-<wire x1="21.86" y1="26.86" x2="21.86" y2="27.86" width="0.8128" layer="1"/>
+<wire x1="21.86" y1="27.36" x2="21.86" y2="27.86" width="0.8128" layer="1"/>
 <wire x1="21.86" y1="27.86" x2="20.05" y2="29.67" width="0.8128" layer="1"/>
 <wire x1="20.05" y1="29.67" x2="20.05" y2="43.6" width="0.8128" layer="1"/>
 <contactref element="J2" pad="4"/>
 <contactref element="D5" pad="2"/>
 <wire x1="21.86" y1="16.7" x2="21.3" y2="16.7" width="0.8128" layer="16"/>
-<wire x1="19" y1="19" x2="21.3" y2="16.7" width="0.8128" layer="16"/>
-<wire x1="19" y1="20.1" x2="19" y2="19" width="0.8128" layer="16"/>
 <contactref element="R3" pad="1"/>
 <contactref element="U1" pad="20"/>
 <wire x1="20.83" y1="44.38" x2="20.05" y2="43.6" width="0.8128" layer="1"/>
 <wire x1="22.45" y1="44.38" x2="20.83" y2="44.38" width="0.8128" layer="1"/>
-<wire x1="18.922" y1="24" x2="19" y2="23.922" width="0.8128" layer="16"/>
-<wire x1="19" y1="23.922" x2="19" y2="20.1" width="0.8128" layer="16"/>
-<wire x1="18.922" y1="24" x2="19.5" y2="24" width="0.8128" layer="16"/>
-<wire x1="19.5" y1="24" x2="21.86" y2="26.36" width="0.8128" layer="16"/>
-<wire x1="21.86" y1="26.36" x2="21.86" y2="26.86" width="0.8128" layer="16"/>
+<wire x1="21.86" y1="26.86" x2="21.86" y2="27.36" width="0.8128" layer="16"/>
+<wire x1="20.1" y1="24.5" x2="21.86" y2="26.86" width="0" layer="19" extent="16-16"/>
+<wire x1="17" y1="19.422" x2="20.1" y2="24.5" width="0" layer="19" extent="16-16"/>
+<wire x1="21.3" y1="16.7" x2="17" y2="19.422" width="0" layer="19" extent="16-16"/>
 </signal>
 <signal name="BTN">
 <contactref element="D3" pad="2"/>
-<wire x1="12.7" y1="33.1048" x2="12.7" y2="53.6948" width="0.8128" layer="16"/>
-<wire x1="12.7" y1="33.1048" x2="13.97" y2="31.8348" width="0.8128" layer="16"/>
+<wire x1="12.7" y1="33.6048" x2="12.7" y2="53.6948" width="0.8128" layer="16"/>
+<wire x1="12.7" y1="33.6048" x2="13.47" y2="32.8348" width="0.8128" layer="16"/>
 <contactref element="U1" pad="25"/>
 <wire x1="22.45" y1="57.08" x2="20.58" y2="57.08" width="0.8128" layer="1"/>
 <wire x1="16.0852" y1="57.08" x2="20.58" y2="57.08" width="0.8128" layer="16"/>
@@ -1446,8 +1443,8 @@ design rules under a new name.</description>
 <signal name="N$5">
 <contactref element="D3" pad="1"/>
 <contactref element="D2" pad="1"/>
-<wire x1="13.97" y1="26.4252" x2="10.93" y2="26.4252" width="0.8128" layer="16"/>
-<wire x1="10.93" y1="26.4252" x2="10.3248" y2="25.82" width="0.8128" layer="16"/>
+<wire x1="13.47" y1="27.4252" x2="11.93" y2="27.4252" width="0.8128" layer="16"/>
+<wire x1="11.93" y1="27.4252" x2="10.3248" y2="25.82" width="0.8128" layer="16"/>
 <contactref element="D8" pad="2"/>
 <wire x1="12.5" y1="12" x2="13" y2="11.5" width="0.8128" layer="16"/>
 <wire x1="13" y1="11.5" x2="14.1" y2="11.5" width="0.8128" layer="16"/>

+ 61 - 64
schematic/ECU.b#6

@@ -8,17 +8,17 @@
 </settings>
 <grid distance="0.5" unitdist="mm" unit="mm" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mm"/>
 <layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="yes"/>
+<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="24" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" 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="no" 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="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
 <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
@@ -32,9 +32,9 @@
 <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="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="no" 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="no" active="yes"/>
 <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
@@ -44,7 +44,7 @@
 <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
 <layer number="49" name="Reference" color="7" fill="1" visible="no" 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="no" active="yes"/>
+<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"/>
@@ -899,20 +899,20 @@ design rules under a new name.</description>
 </pass>
 </autorouter>
 <elements>
-<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="9.43" y="57.73" smashed="yes" rot="MR90">
-<attribute name="CATEGORY" value="Capacitor" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MPN" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="NAME" x="11.2867" y="57.73" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="PART_STATUS" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SERIES" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SUB-CATEGORY" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="TYPE" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="VALUE" x="7.5733" y="57.73" size="1.27" layer="28" rot="MR90" align="top-center"/>
-<attribute name="VOLTAGE_RATING" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="8.43" y="58.23" smashed="yes" rot="MR90">
+<attribute name="CATEGORY" value="Capacitor" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MPN" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="NAME" x="10.2867" y="58.23" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="PART_STATUS" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SERIES" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SUB-CATEGORY" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="TYPE" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="VALUE" x="6.5733" y="58.23" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<attribute name="VOLTAGE_RATING" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
 </element>
 <element name="C3" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="19.12" y="11.95" smashed="yes" rot="MR90">
 <attribute name="CATEGORY" value="Capacitor" x="-38.03" y="64.02" size="1.778" layer="28" rot="MR90" display="off"/>
@@ -946,26 +946,26 @@ design rules under a new name.</description>
 <attribute name="TYPE" value="" x="-24.13" y="-32.6" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="7.62" y="23.71" size="1.27" layer="28" rot="MR0" align="top-center"/>
 </element>
-<element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.97" y="29.13" smashed="yes" rot="MR90">
-<attribute name="CATEGORY" value="Diode" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="DESCRIPTION" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="FORWARD_CURRENT" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MPN" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="NAME" x="10.58" y="29.63" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="PART_STATUS" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="REVERSE_VOLTAGE" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SERIES" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SUB-CATEGORY" value="Rectifier" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="TYPE" value="" x="-44.45" y="69.77" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="VALUE" x="11.86" y="29.13" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" package="SOD6126X290" package3d_urn="urn:adsk.eagle:package:9427057/2" value="" x="13.47" y="30.13" smashed="yes" rot="MR90">
+<attribute name="CATEGORY" value="Diode" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="DESCRIPTION" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="FORWARD_CURRENT" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MPN" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="NAME" x="10.08" y="30.63" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="PART_STATUS" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="REVERSE_VOLTAGE" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SERIES" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SUB-CATEGORY" value="Rectifier" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="TYPE" value="" x="-44.95" y="70.77" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="VALUE" x="11.36" y="30.13" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
-<element name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02" package3d_urn="urn:adsk.eagle:package:38039/1" value="Break" x="21.86" y="26.86" smashed="yes" rot="R180">
-<attribute name="NAME" x="23.13" y="25.463" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
-<attribute name="VALUE" x="23.13" y="28.892" size="0.6096" layer="27" font="vector" ratio="20" rot="R180"/>
+<element name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02" package3d_urn="urn:adsk.eagle:package:38039/1" value="Break" x="21.86" y="27.36" smashed="yes" rot="R180">
+<attribute name="NAME" x="23.13" y="25.963" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
+<attribute name="VALUE" x="23.13" y="29.392" size="0.6096" layer="27" font="vector" ratio="20" rot="R180"/>
 </element>
 <element name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X06" package3d_urn="urn:adsk.eagle:package:38009/1" value="COMM" x="21.86" y="9.08" smashed="yes" rot="R90">
 <attribute name="NAME" x="20.463" y="7.81" size="0.6096" layer="25" font="vector" ratio="20" rot="R90"/>
@@ -1069,19 +1069,19 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="-48.26" y="-40.45" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="6.35" y="9.08" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="17.5" y="24" smashed="yes" rot="MR0">
-<attribute name="NAME" x="18.77" y="25.27" size="1.27" layer="26" rot="MR0"/>
-<attribute name="SPICEMODEL" value="NONE" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="SPICEPREFIX" value="R" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="18.77" y="21.46" size="1.27" layer="28" rot="MR0"/>
+<element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="17" y="18" smashed="yes" rot="MR270">
+<attribute name="NAME" x="15.73" y="19.27" size="1.27" layer="26" rot="MR270"/>
+<attribute name="SPICEMODEL" value="NONE" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="17" y="18" size="1.778" layer="28" rot="MR270" display="off"/>
+<attribute name="VALUE" x="19.54" y="19.27" size="1.27" layer="28" rot="MR270"/>
 </element>
 <element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="5.5" y="58" smashed="yes" rot="MR90">
 <attribute name="NAME" x="7.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
 <attribute name="VALUE" x="3.515" y="58" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
-<element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="18" smashed="yes" rot="MR90">
-<attribute name="NAME" x="20.985" y="18" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="VALUE" x="17.015" y="18" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="18" y="24.5" smashed="yes" rot="MR180">
+<attribute name="NAME" x="18" y="22.515" size="1.27" layer="26" rot="MR180" align="bottom-center"/>
+<attribute name="VALUE" x="18" y="26.485" size="1.27" layer="28" rot="MR180" align="top-center"/>
 </element>
 <element name="D6" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="31" smashed="yes" rot="MR180">
 <attribute name="NAME" x="19" y="34.015" size="1.27" layer="26" rot="MR180" align="bottom-center"/>
@@ -1243,10 +1243,10 @@ design rules under a new name.</description>
 <wire x1="10.4571" y1="51.5" x2="14" y2="51.5" width="0.8128" layer="1"/>
 <via x="14" y="51.5" extent="1-16" drill="0.35"/>
 <wire x1="14" y1="51.5" x2="17" y2="48.5" width="0.8128" layer="16"/>
-<wire x1="17" y1="29.18" x2="19.32" y2="26.86" width="0.8128" layer="16"/>
+<wire x1="17" y1="29.68" x2="19.32" y2="27.36" width="0.8128" layer="16"/>
 <wire x1="17" y1="48.5" x2="17" y2="31" width="0.8128" layer="16"/>
 <contactref element="D6" pad="1"/>
-<wire x1="17" y1="31" x2="17" y2="29.18" width="0.8128" layer="16"/>
+<wire x1="17" y1="31" x2="17" y2="29.68" width="0.8128" layer="16"/>
 <wire x1="16.9" y1="31" x2="17" y2="31" width="0.8128" layer="16"/>
 <contactref element="J5" pad="2"/>
 <wire x1="2.54" y1="63.23" x2="3.31" y2="63.23" width="0.8128" layer="16"/>
@@ -1268,8 +1268,8 @@ design rules under a new name.</description>
 <wire x1="8" y1="60.69" x2="8.43" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8.43" y1="60.69" x2="9.66" y2="61.92" width="0.8128" layer="16"/>
 <wire x1="5.5" y1="60.1" x2="5.5" y2="60.69" width="0.8128" layer="16"/>
-<wire x1="8" y1="60.69" x2="9.43" y2="59.26" width="0.8128" layer="16"/>
-<wire x1="9.43" y1="59.26" x2="9.43" y2="59.2054" width="0.8128" layer="16"/>
+<wire x1="8" y1="60.69" x2="8.43" y2="60.26" width="0.8128" layer="16"/>
+<wire x1="8.43" y1="60.26" x2="8.43" y2="59.7054" width="0.8128" layer="16"/>
 <contactref element="U1" pad="4"/>
 <wire x1="6.55" y1="62.16" x2="9.42" y2="62.16" width="0.8128" layer="1"/>
 <wire x1="9.42" y1="62.16" x2="9.66" y2="61.92" width="0.8128" layer="1"/>
@@ -1300,28 +1300,25 @@ design rules under a new name.</description>
 </signal>
 <signal name="ST">
 <contactref element="J1" pad="1"/>
-<wire x1="21.86" y1="26.86" x2="21.86" y2="27.86" width="0.8128" layer="1"/>
+<wire x1="21.86" y1="27.36" x2="21.86" y2="27.86" width="0.8128" layer="1"/>
 <wire x1="21.86" y1="27.86" x2="20.05" y2="29.67" width="0.8128" layer="1"/>
 <wire x1="20.05" y1="29.67" x2="20.05" y2="43.6" width="0.8128" layer="1"/>
 <contactref element="J2" pad="4"/>
 <contactref element="D5" pad="2"/>
 <wire x1="21.86" y1="16.7" x2="21.3" y2="16.7" width="0.8128" layer="16"/>
-<wire x1="19" y1="19" x2="21.3" y2="16.7" width="0.8128" layer="16"/>
-<wire x1="19" y1="20.1" x2="19" y2="19" width="0.8128" layer="16"/>
 <contactref element="R3" pad="1"/>
 <contactref element="U1" pad="20"/>
 <wire x1="20.83" y1="44.38" x2="20.05" y2="43.6" width="0.8128" layer="1"/>
 <wire x1="22.45" y1="44.38" x2="20.83" y2="44.38" width="0.8128" layer="1"/>
-<wire x1="18.922" y1="24" x2="19" y2="23.922" width="0.8128" layer="16"/>
-<wire x1="19" y1="23.922" x2="19" y2="20.1" width="0.8128" layer="16"/>
-<wire x1="18.922" y1="24" x2="19.5" y2="24" width="0.8128" layer="16"/>
-<wire x1="19.5" y1="24" x2="21.86" y2="26.36" width="0.8128" layer="16"/>
-<wire x1="21.86" y1="26.36" x2="21.86" y2="26.86" width="0.8128" layer="16"/>
+<wire x1="21.86" y1="26.86" x2="21.86" y2="27.36" width="0.8128" layer="16"/>
+<wire x1="20.1" y1="24.5" x2="21.86" y2="26.86" width="0" layer="19" extent="16-16"/>
+<wire x1="17" y1="19.422" x2="20.1" y2="24.5" width="0" layer="19" extent="16-16"/>
+<wire x1="21.3" y1="16.7" x2="17" y2="19.422" width="0" layer="19" extent="16-16"/>
 </signal>
 <signal name="BTN">
 <contactref element="D3" pad="2"/>
-<wire x1="12.7" y1="33.1048" x2="12.7" y2="53.6948" width="0.8128" layer="16"/>
-<wire x1="12.7" y1="33.1048" x2="13.97" y2="31.8348" width="0.8128" layer="16"/>
+<wire x1="12.7" y1="33.6048" x2="12.7" y2="53.6948" width="0.8128" layer="16"/>
+<wire x1="12.7" y1="33.6048" x2="13.47" y2="32.8348" width="0.8128" layer="16"/>
 <contactref element="U1" pad="25"/>
 <wire x1="22.45" y1="57.08" x2="20.58" y2="57.08" width="0.8128" layer="1"/>
 <wire x1="16.0852" y1="57.08" x2="20.58" y2="57.08" width="0.8128" layer="16"/>
@@ -1446,8 +1443,8 @@ design rules under a new name.</description>
 <signal name="N$5">
 <contactref element="D3" pad="1"/>
 <contactref element="D2" pad="1"/>
-<wire x1="13.97" y1="26.4252" x2="10.93" y2="26.4252" width="0.8128" layer="16"/>
-<wire x1="10.93" y1="26.4252" x2="10.3248" y2="25.82" width="0.8128" layer="16"/>
+<wire x1="13.47" y1="27.4252" x2="11.93" y2="27.4252" width="0.8128" layer="16"/>
+<wire x1="11.93" y1="27.4252" x2="10.3248" y2="25.82" width="0.8128" layer="16"/>
 <contactref element="D8" pad="2"/>
 <wire x1="12.5" y1="12" x2="13" y2="11.5" width="0.8128" layer="16"/>
 <wire x1="13" y1="11.5" x2="14.1" y2="11.5" width="0.8128" layer="16"/>

+ 22 - 22
schematic/ECU.b#7

@@ -899,20 +899,20 @@ design rules under a new name.</description>
 </pass>
 </autorouter>
 <elements>
-<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="9.43" y="57.73" smashed="yes" rot="MR90">
-<attribute name="CATEGORY" value="Capacitor" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MPN" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="NAME" x="11.2867" y="57.73" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="PART_STATUS" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SERIES" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SUB-CATEGORY" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="TYPE" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="VALUE" x="7.5733" y="57.73" size="1.27" layer="28" rot="MR90" align="top-center"/>
-<attribute name="VOLTAGE_RATING" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="8.43" y="58.23" smashed="yes" rot="MR90">
+<attribute name="CATEGORY" value="Capacitor" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MPN" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="NAME" x="10.2867" y="58.23" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="PART_STATUS" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SERIES" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SUB-CATEGORY" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="TYPE" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="VALUE" x="6.5733" y="58.23" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<attribute name="VOLTAGE_RATING" value="" x="-48.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
 </element>
 <element name="C3" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="19.12" y="11.95" smashed="yes" rot="MR90">
 <attribute name="CATEGORY" value="Capacitor" x="-38.03" y="64.02" size="1.778" layer="28" rot="MR90" display="off"/>
@@ -1075,9 +1075,9 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="18.77" y="21.46" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="6.5" y="58" smashed="yes" rot="MR90">
-<attribute name="NAME" x="8.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="VALUE" x="4.515" y="58" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="5.5" y="58" smashed="yes" rot="MR90">
+<attribute name="NAME" x="7.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="VALUE" x="3.515" y="58" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
 <element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="18" smashed="yes" rot="MR90">
 <attribute name="NAME" x="20.985" y="18" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
@@ -1263,13 +1263,13 @@ design rules under a new name.</description>
 <via x="9.66" y="61.92" extent="1-16" drill="0.35"/>
 <contactref element="D4" pad="2"/>
 <contactref element="J5" pad="1"/>
-<wire x1="2.54" y1="60.69" x2="6.5" y2="60.69" width="0.8128" layer="16"/>
-<wire x1="6.5" y1="60.69" x2="8" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="2.54" y1="60.69" x2="5.5" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="5.5" y1="60.69" x2="8" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8" y1="60.69" x2="8.43" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8.43" y1="60.69" x2="9.66" y2="61.92" width="0.8128" layer="16"/>
-<wire x1="6.5" y1="60.1" x2="6.5" y2="60.69" width="0.8128" layer="16"/>
-<wire x1="8" y1="60.69" x2="9.43" y2="59.26" width="0.8128" layer="16"/>
-<wire x1="9.43" y1="59.26" x2="9.43" y2="59.2054" width="0.8128" layer="16"/>
+<wire x1="5.5" y1="60.1" x2="5.5" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="8" y1="60.69" x2="8.43" y2="60.26" width="0.8128" layer="16"/>
+<wire x1="8.43" y1="60.26" x2="8.43" y2="59.7054" width="0.8128" layer="16"/>
 <contactref element="U1" pad="4"/>
 <wire x1="6.55" y1="62.16" x2="9.42" y2="62.16" width="0.8128" layer="1"/>
 <wire x1="9.42" y1="62.16" x2="9.66" y2="61.92" width="0.8128" layer="1"/>

+ 6 - 6
schematic/ECU.b#8

@@ -1075,9 +1075,9 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="18.77" y="21.46" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="6.5" y="57" smashed="yes" rot="MR90">
-<attribute name="NAME" x="8.485" y="57" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="VALUE" x="4.515" y="57" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="5.5" y="58" smashed="yes" rot="MR90">
+<attribute name="NAME" x="7.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="VALUE" x="3.515" y="58" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
 <element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="18" smashed="yes" rot="MR90">
 <attribute name="NAME" x="20.985" y="18" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
@@ -1263,11 +1263,11 @@ design rules under a new name.</description>
 <via x="9.66" y="61.92" extent="1-16" drill="0.35"/>
 <contactref element="D4" pad="2"/>
 <contactref element="J5" pad="1"/>
-<wire x1="2.54" y1="60.69" x2="6.5" y2="60.69" width="0.8128" layer="16"/>
-<wire x1="6.5" y1="60.69" x2="8" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="2.54" y1="60.69" x2="5.5" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="5.5" y1="60.69" x2="8" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8" y1="60.69" x2="8.43" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8.43" y1="60.69" x2="9.66" y2="61.92" width="0.8128" layer="16"/>
-<wire x1="6.5" y1="59.1" x2="6.5" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="5.5" y1="60.1" x2="5.5" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8" y1="60.69" x2="9.43" y2="59.26" width="0.8128" layer="16"/>
 <wire x1="9.43" y1="59.26" x2="9.43" y2="59.2054" width="0.8128" layer="16"/>
 <contactref element="U1" pad="4"/>

+ 20 - 20
schematic/ECU.b#9

@@ -899,20 +899,20 @@ design rules under a new name.</description>
 </pass>
 </autorouter>
 <elements>
-<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="9.43" y="58.23" smashed="yes" rot="MR90">
-<attribute name="CATEGORY" value="Capacitor" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MANUFACTURER" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="MPN" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="NAME" x="11.2867" y="58.23" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="PART_STATUS" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SERIES" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="SUB-CATEGORY" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="THERMALLOSS" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="TYPE" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
-<attribute name="VALUE" x="7.5733" y="58.23" size="1.27" layer="28" rot="MR90" align="top-center"/>
-<attribute name="VOLTAGE_RATING" value="" x="-47.72" y="105.22" size="1.778" layer="28" rot="MR90" display="off"/>
+<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="9.43" y="57.73" smashed="yes" rot="MR90">
+<attribute name="CATEGORY" value="Capacitor" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="MPN" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="NAME" x="11.2867" y="57.73" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="PART_STATUS" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SERIES" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="SUB-CATEGORY" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="TYPE" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
+<attribute name="VALUE" x="7.5733" y="57.73" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<attribute name="VOLTAGE_RATING" value="" x="-47.72" y="104.72" size="1.778" layer="28" rot="MR90" display="off"/>
 </element>
 <element name="C3" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="19.12" y="11.95" smashed="yes" rot="MR90">
 <attribute name="CATEGORY" value="Capacitor" x="-38.03" y="64.02" size="1.778" layer="28" rot="MR90" display="off"/>
@@ -1075,9 +1075,9 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="17.5" y="24" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="VALUE" x="18.77" y="21.46" size="1.27" layer="28" rot="MR0"/>
 </element>
-<element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="6.5" y="57" smashed="yes" rot="MR90">
-<attribute name="NAME" x="8.485" y="57" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
-<attribute name="VALUE" x="4.515" y="57" size="1.27" layer="28" rot="MR90" align="top-center"/>
+<element name="D4" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="6.5" y="58" smashed="yes" rot="MR90">
+<attribute name="NAME" x="8.485" y="58" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
+<attribute name="VALUE" x="4.515" y="58" size="1.27" layer="28" rot="MR90" align="top-center"/>
 </element>
 <element name="D5" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="TVS_DIODESMA" x="19" y="18" smashed="yes" rot="MR90">
 <attribute name="NAME" x="20.985" y="18" size="1.27" layer="26" rot="MR90" align="bottom-center"/>
@@ -1267,9 +1267,9 @@ design rules under a new name.</description>
 <wire x1="6.5" y1="60.69" x2="8" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8" y1="60.69" x2="8.43" y2="60.69" width="0.8128" layer="16"/>
 <wire x1="8.43" y1="60.69" x2="9.66" y2="61.92" width="0.8128" layer="16"/>
-<wire x1="6.5" y1="59.1" x2="6.5" y2="60.69" width="0.8128" layer="16"/>
-<wire x1="8" y1="60.69" x2="8.9846" y2="59.7054" width="0.8128" layer="16"/>
-<wire x1="8.9846" y1="59.7054" x2="9.43" y2="59.7054" width="0.8128" layer="16"/>
+<wire x1="6.5" y1="60.1" x2="6.5" y2="60.69" width="0.8128" layer="16"/>
+<wire x1="8" y1="60.69" x2="9.43" y2="59.26" width="0.8128" layer="16"/>
+<wire x1="9.43" y1="59.26" x2="9.43" y2="59.2054" width="0.8128" layer="16"/>
 <contactref element="U1" pad="4"/>
 <wire x1="6.55" y1="62.16" x2="9.42" y2="62.16" width="0.8128" layer="1"/>
 <wire x1="9.42" y1="62.16" x2="9.66" y2="61.92" width="0.8128" layer="1"/>

+ 7 - 7
schematic/ECU.brd

@@ -8,17 +8,17 @@
 </settings>
 <grid distance="0.5" unitdist="mm" unit="mm" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mm"/>
 <layers>
-<layer number="1" name="Top" color="4" fill="1" visible="no" active="yes"/>
+<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="24" fill="1" visible="yes" active="yes"/>
-<layer number="21" name="tPlace" color="7" fill="1" visible="no" 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="no" 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="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
 <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
 <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
@@ -32,9 +32,9 @@
 <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="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="no" 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="no" active="yes"/>
 <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
@@ -44,7 +44,7 @@
 <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
 <layer number="49" name="Reference" color="7" fill="1" visible="no" 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="no" active="yes"/>
+<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"/>

+ 1 - 1
schematic/eagle.epf

@@ -311,5 +311,5 @@ Type="Control Panel"
 Number=0
 
 [Desktop]
-Screen="1920 1080"
+Screen="3840 1200"
 Window="Win_1"

+ 77 - 3
schematic/regulator.b#1

@@ -1112,6 +1112,24 @@ design rules under a new name.</description>
 <attribute name="PACKAGE" value="DPAK-4" x="12.7" y="38.1" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="VALUE" x="21.59" y="41.91" size="1.2" layer="28" ratio="10" rot="MR270"/>
 </element>
+<element name="R9" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K" x="2.54" y="-5.08" smashed="yes">
+<attribute name="NAME" x="1.27" y="-3.81" size="1.27" layer="25"/>
+<attribute name="SPICEMODEL" value="NONE" x="2.54" y="-5.08" size="1.778" layer="27" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="2.54" y="-5.08" size="1.778" layer="27" display="off"/>
+<attribute name="VALUE" x="1.27" y="-7.62" size="1.27" layer="27"/>
+</element>
+<element name="R10" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K" x="2.54" y="-11.43" smashed="yes">
+<attribute name="NAME" x="1.27" y="-10.16" size="1.27" layer="25"/>
+<attribute name="SPICEMODEL" value="NONE" x="2.54" y="-11.43" size="1.778" layer="27" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="2.54" y="-11.43" size="1.778" layer="27" display="off"/>
+<attribute name="VALUE" x="1.27" y="-13.97" size="1.27" layer="27"/>
+</element>
+<element name="R11" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="2.54" y="-17.78" smashed="yes">
+<attribute name="NAME" x="1.27" y="-16.51" size="1.27" layer="25"/>
+<attribute name="SPICEMODEL" value="NONE" x="2.54" y="-17.78" size="1.778" layer="27" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="2.54" y="-17.78" size="1.778" layer="27" display="off"/>
+<attribute name="VALUE" x="1.27" y="-20.32" size="1.27" layer="27"/>
+</element>
 </elements>
 <signals>
 <signal name="GND">
@@ -1159,7 +1177,7 @@ design rules under a new name.</description>
 <contactref element="Q4" pad="2"/>
 <via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
 <via x="22.86" y="30.48" extent="1-16" drill="0.35"/>
-<via x="26.67" y="19.05" extent="1-16" drill="0.35"/>
+<via x="26.67" y="16.51" extent="1-16" drill="0.35"/>
 <via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
 <via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
 <via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
@@ -1170,6 +1188,50 @@ design rules under a new name.</description>
 <via x="19.05" y="12.7" extent="1-16" drill="0.35"/>
 <via x="19.05" y="3.81" extent="1-16" drill="0.35"/>
 <via x="10.16" y="8.89" extent="1-16" drill="0.35"/>
+<contactref element="R11" pad="2"/>
+<wire x1="46.838" y1="24.13" x2="50.48" y2="33.19" width="0" layer="19" extent="1-1"/>
+<wire x1="44.45" y1="22.86" x2="46.838" y2="24.13" width="0" layer="19" extent="1-1"/>
+<wire x1="43.18" y1="24.13" x2="44.45" y2="22.86" width="0" layer="19" extent="1-1"/>
+<wire x1="41.91" y1="25.4" x2="43.18" y2="24.13" width="0" layer="19" extent="1-1"/>
+<wire x1="40.64" y1="26.67" x2="41.91" y2="25.4" width="0" layer="19" extent="1-1"/>
+<wire x1="39.37" y1="27.94" x2="40.64" y2="26.67" width="0" layer="19" extent="1-1"/>
+<wire x1="38.1" y1="29.21" x2="39.37" y2="27.94" width="0" layer="19" extent="1-1"/>
+<wire x1="36.83" y1="30.48" x2="38.1" y2="29.21" width="0" layer="19" extent="1-1"/>
+<wire x1="44.45" y1="20.32" x2="44.45" y2="22.86" width="0" layer="19" extent="1-1"/>
+<wire x1="45.72" y1="19.05" x2="44.45" y2="20.32" width="0" layer="19" extent="1-1"/>
+<wire x1="46.99" y1="17.78" x2="45.72" y2="19.05" width="0" layer="19" extent="1-1"/>
+<wire x1="48.26" y1="16.51" x2="46.99" y2="17.78" width="0" layer="19" extent="1-1"/>
+<wire x1="49.53" y1="15.24" x2="48.26" y2="16.51" width="0" layer="19" extent="1-1"/>
+<wire x1="50.8" y1="13.97" x2="49.53" y2="15.24" width="0" layer="19" extent="1-1"/>
+<wire x1="52.07" y1="12.7" x2="50.8" y2="13.97" width="0" layer="19" extent="1-1"/>
+<wire x1="53.34" y1="11.43" x2="52.07" y2="12.7" width="0" layer="19" extent="1-1"/>
+<wire x1="54.61" y1="10.16" x2="53.34" y2="11.43" width="0" layer="19" extent="1-1"/>
+<wire x1="34.29" y1="30.48" x2="36.83" y2="30.48" width="0" layer="19" extent="1-1"/>
+<wire x1="31.75" y1="30.48" x2="34.29" y2="30.48" width="0" layer="19" extent="1-1"/>
+<wire x1="29.21" y1="30.48" x2="31.75" y2="30.48" width="0" layer="19" extent="1-1"/>
+<wire x1="50.648" y1="17.78" x2="48.26" y2="16.51" width="0" layer="19" extent="1-1"/>
+<wire x1="50.648" y1="20.32" x2="50.648" y2="17.78" width="0" layer="19" extent="1-1"/>
+<wire x1="29.08" y1="34.29" x2="29.21" y2="30.48" width="0" layer="19" extent="16-16"/>
+<wire x1="58.42" y1="8.89" x2="54.61" y2="10.16" width="0" layer="19" extent="1-1"/>
+<wire x1="53.34" y1="4.25" x2="54.61" y2="10.16" width="0" layer="19" extent="1-1"/>
+<wire x1="49.53" y1="3.2288" x2="53.34" y2="4.25" width="0" layer="19" extent="1-1"/>
+<wire x1="22.86" y1="30.48" x2="29.21" y2="30.48" width="0" layer="19" extent="1-1"/>
+<wire x1="19.202" y1="29.21" x2="22.86" y2="30.48" width="0" layer="19" extent="1-1"/>
+<wire x1="16.82" y1="35.81" x2="19.202" y2="29.21" width="0" layer="19" extent="1-16"/>
+<wire x1="22.54" y1="22.86" x2="19.202" y2="29.21" width="0" layer="19" extent="1-1"/>
+<wire x1="26.67" y1="16.51" x2="22.54" y2="22.86" width="0" layer="19" extent="1-1"/>
+<wire x1="30.8" y1="22.86" x2="26.67" y2="16.51" width="0" layer="19" extent="1-1"/>
+<wire x1="35.7654" y1="20.32" x2="30.8" y2="22.86" width="0" layer="19" extent="1-1"/>
+<wire x1="41.91" y1="3.81" x2="49.53" y2="3.2288" width="0" layer="19" extent="1-1"/>
+<wire x1="38.1" y1="12.7" x2="35.7654" y2="20.32" width="0" layer="19" extent="1-1"/>
+<wire x1="19.05" y1="12.7" x2="26.67" y2="16.51" width="0" layer="19" extent="1-1"/>
+<wire x1="13.97" y1="6.505" x2="19.05" y2="12.7" width="0" layer="19" extent="1-1"/>
+<wire x1="10.16" y1="8.89" x2="13.97" y2="6.505" width="0" layer="19" extent="1-1"/>
+<wire x1="19.05" y1="3.81" x2="13.97" y2="6.505" width="0" layer="19" extent="1-1"/>
+<wire x1="24.13" y1="2.69" x2="19.05" y2="3.81" width="0" layer="19" extent="1-1"/>
+<wire x1="29.21" y1="6.35" x2="24.13" y2="2.69" width="0" layer="19" extent="1-1"/>
+<wire x1="3.81" y1="7.83" x2="10.16" y2="8.89" width="0" layer="19" extent="1-1"/>
+<wire x1="3.962" y1="-17.78" x2="3.81" y2="7.83" width="0" layer="19" extent="1-1"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1229,7 +1291,6 @@ design rules under a new name.</description>
 <contactref element="C3" pad="1"/>
 <contactref element="J1" pad="1"/>
 <contactref element="D2" pad="1"/>
-<contactref element="U$1" pad="4"/>
 <wire x1="40.64" y1="13.97" x2="43.18" y2="11.43" width="1.27" layer="1"/>
 <wire x1="43.18" y1="11.43" x2="44.345" y2="11.43" width="1.27" layer="1"/>
 <wire x1="53.0912" y1="8.45" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
@@ -1240,9 +1301,10 @@ design rules under a new name.</description>
 <wire x1="59.69" y1="6.35" x2="58.42" y2="6.35" width="1.27" layer="1"/>
 <wire x1="46.3038" y1="9.4712" x2="44.345" y2="11.43" width="1.27" layer="1"/>
 <wire x1="46.3038" y1="9.4712" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
-<wire x1="30.8" y1="25.4" x2="36.83" y2="25.4" width="1.27" layer="1"/>
 <wire x1="36.83" y1="25.4" x2="40.64" y2="21.59" width="1.27" layer="1"/>
 <wire x1="40.64" y1="21.59" x2="40.64" y2="13.97" width="1.27" layer="1"/>
+<contactref element="R9" pad="1"/>
+<wire x1="1.118" y1="-5.08" x2="44.345" y2="11.43" width="0" layer="19" extent="1-1"/>
 </signal>
 <signal name="N$4">
 <contactref element="C2" pad="2"/>
@@ -1378,6 +1440,18 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
+<signal name="N$6">
+<contactref element="R10" pad="1"/>
+<contactref element="R9" pad="2"/>
+<wire x1="3.962" y1="-5.08" x2="1.118" y2="-11.43" width="0" layer="19" extent="1-1"/>
+</signal>
+<signal name="N$9">
+<contactref element="U$1" pad="4"/>
+<contactref element="R11" pad="1"/>
+<contactref element="R10" pad="2"/>
+<wire x1="3.962" y1="-11.43" x2="30.8" y2="25.4" width="0" layer="19" extent="1-1"/>
+<wire x1="1.118" y1="-17.78" x2="3.962" y2="-11.43" width="0" layer="19" extent="1-1"/>
+</signal>
 </signals>
 <mfgpreviewcolors>
 <mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/>

+ 1 - 1
schematic/regulator.b#2

@@ -1159,7 +1159,7 @@ design rules under a new name.</description>
 <contactref element="Q4" pad="2"/>
 <via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
 <via x="22.86" y="30.48" extent="1-16" drill="0.35"/>
-<via x="26.67" y="21.59" extent="1-16" drill="0.35"/>
+<via x="26.67" y="16.51" extent="1-16" drill="0.35"/>
 <via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
 <via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
 <via x="36.83" y="30.48" extent="1-16" drill="0.35"/>

+ 2 - 4
schematic/regulator.b#3

@@ -1159,7 +1159,7 @@ design rules under a new name.</description>
 <contactref element="Q4" pad="2"/>
 <via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
 <via x="22.86" y="30.48" extent="1-16" drill="0.35"/>
-<via x="26.67" y="21.59" extent="1-16" drill="0.35"/>
+<via x="26.67" y="19.05" extent="1-16" drill="0.35"/>
 <via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
 <via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
 <via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
@@ -1169,6 +1169,7 @@ design rules under a new name.</description>
 <via x="29.21" y="6.35" extent="1-16" drill="0.35"/>
 <via x="19.05" y="12.7" extent="1-16" drill="0.35"/>
 <via x="19.05" y="3.81" extent="1-16" drill="0.35"/>
+<via x="10.16" y="8.89" extent="1-16" drill="0.35"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1377,9 +1378,6 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
-<signal name="N$6">
-<via x="10.16" y="8.89" extent="1-16" drill="0.35"/>
-</signal>
 </signals>
 <mfgpreviewcolors>
 <mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/>

+ 12 - 12
schematic/regulator.b#4

@@ -1158,6 +1158,18 @@ design rules under a new name.</description>
 <contactref element="J4" pad="GND"/>
 <contactref element="Q4" pad="2"/>
 <via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
+<via x="22.86" y="30.48" extent="1-16" drill="0.35"/>
+<via x="26.67" y="21.59" extent="1-16" drill="0.35"/>
+<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
+<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
+<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
+<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
+<via x="38.1" y="12.7" extent="1-16" drill="0.35"/>
+<via x="41.91" y="3.81" extent="1-16" drill="0.35"/>
+<via x="29.21" y="6.35" extent="1-16" drill="0.35"/>
+<via x="19.05" y="12.7" extent="1-16" drill="0.35"/>
+<via x="19.05" y="3.81" extent="1-16" drill="0.35"/>
+<via x="10.16" y="8.89" extent="1-16" drill="0.35"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1366,18 +1378,6 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
-<signal name="N$11">
-<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
-</signal>
-<signal name="N$12">
-<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
-</signal>
-<signal name="N$13">
-<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
-</signal>
-<signal name="N$14">
-<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
-</signal>
 </signals>
 <mfgpreviewcolors>
 <mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/>

+ 13 - 11
schematic/regulator.b#5

@@ -1158,6 +1158,17 @@ design rules under a new name.</description>
 <contactref element="J4" pad="GND"/>
 <contactref element="Q4" pad="2"/>
 <via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
+<via x="22.86" y="30.48" extent="1-16" drill="0.35"/>
+<via x="26.67" y="21.59" extent="1-16" drill="0.35"/>
+<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
+<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
+<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
+<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
+<via x="38.1" y="12.7" extent="1-16" drill="0.35"/>
+<via x="41.91" y="3.81" extent="1-16" drill="0.35"/>
+<via x="29.21" y="6.35" extent="1-16" drill="0.35"/>
+<via x="19.05" y="12.7" extent="1-16" drill="0.35"/>
+<via x="19.05" y="3.81" extent="1-16" drill="0.35"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1366,17 +1377,8 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
-<signal name="N$11">
-<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
-</signal>
-<signal name="N$12">
-<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
-</signal>
-<signal name="N$13">
-<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
-</signal>
-<signal name="N$14">
-<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
+<signal name="N$6">
+<via x="10.16" y="8.89" extent="1-16" drill="0.35"/>
 </signal>
 </signals>
 <mfgpreviewcolors>

+ 37 - 37
schematic/regulator.b#6

@@ -914,7 +914,7 @@ design rules under a new name.</description>
 <attribute name="CATEGORY" value="Capacitor" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MANUFACTURER" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MPN" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="NAME" x="31.0667" y="13.97" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="29.21" y="10.7467" size="1.27" layer="25" align="bottom-center"/>
 <attribute name="OPERATING_TEMP" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="PART_STATUS" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
@@ -922,14 +922,14 @@ design rules under a new name.</description>
 <attribute name="SUB-CATEGORY" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="THERMALLOSS" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="TYPE" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="VALUE" x="27.3533" y="13.97" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="VALUE" x="29.21" y="14.6533" size="1.27" layer="27" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 </element>
 <element name="C2" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="34.29" y="20.32" smashed="yes" rot="R180">
 <attribute name="CATEGORY" value="Capacitor" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="MANUFACTURER" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="MPN" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="NAME" x="29.7967" y="20.32" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="38.1" y="21.0033" size="1.27" layer="25" rot="R180" align="bottom-center"/>
 <attribute name="OPERATING_TEMP" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="PART_STATUS" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
@@ -944,7 +944,7 @@ design rules under a new name.</description>
 <attribute name="CATEGORY" value="Capacitor" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MANUFACTURER" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MPN" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="NAME" x="48.655" y="6.35" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="45.72" y="1.665" size="1.27" layer="25" align="bottom-center"/>
 <attribute name="OPERATING_TEMP" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="PART_STATUS" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
@@ -952,7 +952,7 @@ design rules under a new name.</description>
 <attribute name="SUB-CATEGORY" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="THERMALLOSS" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="TYPE" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="VALUE" x="46.595" y="6.35" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="VALUE" x="49.53" y="7.225" size="1.27" layer="27" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 </element>
 <element name="D1" library="Diodes" library_urn="urn:adsk.eagle:library:11396254" package="DO201AD" package3d_urn="urn:adsk.eagle:package:10898389/2" value="SB5100" x="24.13" y="8.89" smashed="yes" rot="R270">
@@ -960,33 +960,33 @@ design rules under a new name.</description>
 <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MANUFACTURER" value="ON Semiconductor" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MPN" value="MBR360G" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="NAME" x="25.86" y="1.4" size="1.27" layer="25" ratio="10" rot="R270"/>
+<attribute name="NAME" x="27.81" y="3" size="1.27" layer="25" ratio="10"/>
 <attribute name="PACKAGE" value="DO-201AD" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="VALUE" x="19.88" y="16.39" size="1.27" layer="27" ratio="10" rot="R270"/>
 </element>
 <element name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" package="DR127" package3d_urn="urn:adsk.eagle:package:15117/1" value="DR127" x="39.37" y="11.43" smashed="yes">
-<attribute name="NAME" x="32.56" y="17.82" size="1.27" layer="25" rot="R90"/>
+<attribute name="NAME" x="39.33" y="4.62" size="1.27" layer="25" rot="R180"/>
 <attribute name="POPULARITY" value="2" x="74.93" y="-13.97" size="1.778" layer="27" display="off"/>
 <attribute name="SPICEPREFIX" value="L" x="74.93" y="-13.97" size="1.778" layer="27" display="off"/>
 <attribute name="VALUE" x="36.37" y="6.93" size="1.27" layer="27"/>
 </element>
 <element name="R1" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="1M" x="17.78" y="24.13" smashed="yes">
-<attribute name="NAME" x="16.51" y="27.94" size="1.27" layer="25" rot="R270"/>
+<attribute name="NAME" x="15.24" y="24.13" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="33.02" y="-22.86" size="1.778" layer="27" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="33.02" y="-22.86" size="1.778" layer="27" display="off"/>
-<attribute name="VALUE" x="16.51" y="21.59" size="1.27" layer="27"/>
+<attribute name="VALUE" x="16.51" y="24.13" size="1.27" layer="27"/>
 </element>
 <element name="R2" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="100K" x="17.78" y="26.67" smashed="yes" rot="R180">
-<attribute name="NAME" x="19.05" y="25.4" size="1.27" layer="25" rot="R180"/>
+<attribute name="NAME" x="15.24" y="26.67" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="-24.13" y="62.23" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="-24.13" y="62.23" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="19.05" y="29.21" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="16.51" y="26.67" size="1.27" layer="27"/>
 </element>
 <element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="39K" x="17.78" y="29.21" smashed="yes" rot="R180">
-<attribute name="NAME" x="16.51" y="30.48" size="1.27" layer="25"/>
+<attribute name="NAME" x="15.24" y="29.21" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="-12.7" y="73.66" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="-12.7" y="73.66" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="19.05" y="31.75" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="16.51" y="29.21" size="1.27" layer="27"/>
 </element>
 <element name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_2.54_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1" value="ON/OFF" x="29.21" y="30.48" smashed="yes" rot="R180">
 <attribute name="NAME" x="30.48" y="27.051" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
@@ -1022,16 +1022,16 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="60.452" y="27.94" size="0.6096" layer="27" font="vector" ratio="20" rot="R90"/>
 </element>
 <element name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="1M" x="30.48" y="38.1" smashed="yes" rot="MR0">
-<attribute name="NAME" x="33.02" y="40.005" size="1.27" layer="26" rot="MR0"/>
+<attribute name="NAME" x="27.94" y="37.465" size="1.27" layer="26" rot="MR0"/>
 <attribute name="SPICEMODEL" value="NONE" x="30.48" y="38.1" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="30.48" y="38.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="33.02" y="34.925" size="1.27" layer="28" rot="MR0"/>
+<attribute name="VALUE" x="31.75" y="37.465" size="1.27" layer="28" rot="MR0"/>
 </element>
 <element name="R5" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="133K" x="30.48" y="34.29" smashed="yes" rot="MR180">
-<attribute name="NAME" x="27.94" y="32.385" size="1.27" layer="26" rot="MR180"/>
+<attribute name="NAME" x="27.94" y="33.655" size="1.27" layer="26" rot="MR0"/>
 <attribute name="SPICEMODEL" value="NONE" x="30.48" y="34.29" size="1.778" layer="28" rot="MR180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="30.48" y="34.29" size="1.778" layer="28" rot="MR180" display="off"/>
-<attribute name="VALUE" x="27.94" y="37.465" size="1.27" layer="28" rot="MR180"/>
+<attribute name="VALUE" x="33.02" y="33.655" size="1.27" layer="28" rot="MR0"/>
 </element>
 <element name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" package="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFETSOT23" x="22.86" y="39.37" smashed="yes" rot="MR270">
 <attribute name="CATEGORY" value="Transistor" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
@@ -1039,7 +1039,7 @@ design rules under a new name.</description>
 <attribute name="DRAIN_CURRENT" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="MANUFACTURER" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="MPN" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
-<attribute name="NAME" x="20.955" y="38.735" size="1.27" layer="26" rot="MR270"/>
+<attribute name="NAME" x="23.495" y="36.195" size="1.27" layer="26" rot="MR0"/>
 <attribute name="OPERATING_TEMP" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="PART_STATUS" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
@@ -1066,42 +1066,42 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="51.435" y="31.115" size="1.27" layer="27"/>
 </element>
 <element name="R6" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="48.26" y="24.13" smashed="yes" rot="R180">
-<attribute name="NAME" x="49.53" y="22.86" size="1.27" layer="25" rot="R180"/>
+<attribute name="NAME" x="45.72" y="25.4" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="48.26" y="24.13" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="48.26" y="24.13" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="49.53" y="26.67" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="49.53" y="24.13" size="1.27" layer="27" rot="R180"/>
 </element>
 <element name="R7" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="52.07" y="20.32" smashed="yes">
-<attribute name="NAME" x="50.8" y="21.59" size="1.27" layer="25"/>
+<attribute name="NAME" x="49.53" y="21.59" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="52.07" y="20.32" size="1.778" layer="27" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="52.07" y="20.32" size="1.778" layer="27" display="off"/>
 <attribute name="VALUE" x="50.8" y="17.78" size="1.27" layer="27"/>
 </element>
 <element name="D2" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="P4SMAJ12CA" x="53.34" y="6.35" smashed="yes" rot="R270">
-<attribute name="NAME" x="55.325" y="6.35" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="53.34" y="3.095" size="1.27" layer="25" rot="R180" align="bottom-center"/>
 <attribute name="VALUE" x="51.355" y="6.35" size="1.27" layer="27" rot="R270" align="top-center"/>
 </element>
 <element name="R8" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="52.07" y="17.78" smashed="yes" rot="R180">
-<attribute name="NAME" x="53.34" y="16.51" size="1.27" layer="25" rot="R180"/>
+<attribute name="NAME" x="49.53" y="19.05" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="52.07" y="17.78" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="52.07" y="17.78" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="53.34" y="20.32" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="53.34" y="21.59" size="1.27" layer="27" rot="R180"/>
 </element>
 <element name="C4" library="eScooter" package="CAPAE1230X1250N" package3d_urn="urn:adsk.eagle:package:21812541/1" value="68uF" x="13.97" y="11.43" smashed="yes" rot="R270">
-<attribute name="NAME" x="20.855" y="11.43" size="1.27" layer="25" rot="R270" align="bottom-center"/>
-<attribute name="VALUE" x="7.085" y="11.43" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="NAME" x="13.97" y="4.545" size="1.27" layer="25" rot="R180" align="bottom-center"/>
+<attribute name="VALUE" x="13.97" y="10.695" size="1.27" layer="27" rot="R180" align="top-center"/>
 </element>
 <element name="U$1" library="eScooter" package="DIP826W56P254L937H458Q8B" package3d_urn="urn:adsk.eagle:package:22059831/1" value="MAX5035PDIP8" x="26.67" y="21.59" smashed="yes" rot="R180">
-<attribute name="NAME" x="26.67" y="16" size="1.27" layer="25" rot="R180" align="bottom-center"/>
-<attribute name="VALUE" x="26.67" y="27.18" size="1.27" layer="27" rot="R180" align="top-center"/>
+<attribute name="NAME" x="26.67" y="28.7" size="1.27" layer="25" rot="R180" align="bottom-center"/>
+<attribute name="VALUE" x="26.67" y="20.83" size="1.27" layer="27" rot="R180" align="top-center"/>
 </element>
 <element name="J4" library="eScooter" package="XT60" value="BATTERY" x="3.81" y="11.43" smashed="yes" rot="R90">
-<attribute name="NAME" x="0.31" y="8.53" size="1.27" layer="25" rot="R90"/>
-<attribute name="VALUE" x="7.91" y="8.33" size="1.27" layer="27" rot="R90"/>
+<attribute name="NAME" x="7.31" y="11.79" size="1.27" layer="25" rot="R270"/>
+<attribute name="VALUE" x="1.56" y="8.33" size="1.27" layer="27" rot="R90"/>
 </element>
 <element name="J6" library="eScooter" package="XT60" value="DRIVER POWER" x="3.81" y="31.75" smashed="yes" rot="R270">
-<attribute name="NAME" x="7.31" y="34.65" size="1.27" layer="25" rot="R270"/>
-<attribute name="VALUE" x="-0.29" y="34.85" size="1.27" layer="27" rot="R270"/>
+<attribute name="NAME" x="7.31" y="32.11" size="1.27" layer="25" rot="R270"/>
+<attribute name="VALUE" x="1.56" y="24.84" size="1.27" layer="27" rot="R90"/>
 </element>
 <element name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" package="DPAK3" package3d_urn="urn:adsk.eagle:package:10893256/5" value="IRFR3607PBF" x="12.7" y="38.1" smashed="yes" rot="MR270">
 <attribute name="CREATED_BY" value="PCBLayout.com" x="12.7" y="38.1" size="1.778" layer="28" rot="MR270" display="off"/>
@@ -1220,14 +1220,14 @@ design rules under a new name.</description>
 <contactref element="U$1" pad="4"/>
 <wire x1="40.64" y1="13.97" x2="43.18" y2="11.43" width="1.27" layer="1"/>
 <wire x1="43.18" y1="11.43" x2="44.345" y2="11.43" width="1.27" layer="1"/>
-<wire x1="49.53" y1="9.4712" x2="50.5512" y2="8.45" width="1.27" layer="1"/>
-<wire x1="50.5512" y1="8.45" x2="53.34" y2="8.45" width="1.27" layer="1"/>
+<wire x1="53.0912" y1="8.45" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
+<wire x1="49.53" y1="9.4712" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
+<wire x1="53.0912" y1="8.45" x2="53.34" y2="8.45" width="1.27" layer="1"/>
 <wire x1="53.34" y1="8.45" x2="55.44" y2="6.35" width="1.27" layer="1"/>
 <wire x1="55.44" y1="6.35" x2="58.42" y2="6.35" width="1.27" layer="1"/>
 <wire x1="59.69" y1="6.35" x2="58.42" y2="6.35" width="1.27" layer="1"/>
-<wire x1="44.345" y1="11.43" x2="45.615" y2="10.16" width="1.27" layer="1"/>
-<wire x1="48.8412" y1="10.16" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
-<wire x1="45.615" y1="10.16" x2="48.8412" y2="10.16" width="1.27" layer="1"/>
+<wire x1="46.3038" y1="9.4712" x2="44.345" y2="11.43" width="1.27" layer="1"/>
+<wire x1="46.3038" y1="9.4712" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
 <wire x1="30.8" y1="25.4" x2="36.83" y2="25.4" width="1.27" layer="1"/>
 <wire x1="36.83" y1="25.4" x2="40.64" y2="21.59" width="1.27" layer="1"/>
 <wire x1="40.64" y1="21.59" x2="40.64" y2="13.97" width="1.27" layer="1"/>

+ 65 - 56
schematic/regulator.b#7

@@ -914,7 +914,7 @@ design rules under a new name.</description>
 <attribute name="CATEGORY" value="Capacitor" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MANUFACTURER" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MPN" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="NAME" x="31.0667" y="13.97" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="29.21" y="10.7467" size="1.27" layer="25" align="bottom-center"/>
 <attribute name="OPERATING_TEMP" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="PART_STATUS" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
@@ -922,14 +922,14 @@ design rules under a new name.</description>
 <attribute name="SUB-CATEGORY" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="THERMALLOSS" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="TYPE" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="VALUE" x="27.3533" y="13.97" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="VALUE" x="29.21" y="14.6533" size="1.27" layer="27" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 </element>
 <element name="C2" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="34.29" y="20.32" smashed="yes" rot="R180">
 <attribute name="CATEGORY" value="Capacitor" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="MANUFACTURER" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="MPN" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="NAME" x="29.7967" y="20.32" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="38.1" y="21.0033" size="1.27" layer="25" rot="R180" align="bottom-center"/>
 <attribute name="OPERATING_TEMP" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="PART_STATUS" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
@@ -944,7 +944,7 @@ design rules under a new name.</description>
 <attribute name="CATEGORY" value="Capacitor" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MANUFACTURER" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MPN" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="NAME" x="48.655" y="6.35" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="45.72" y="1.665" size="1.27" layer="25" align="bottom-center"/>
 <attribute name="OPERATING_TEMP" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="PART_STATUS" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
@@ -952,7 +952,7 @@ design rules under a new name.</description>
 <attribute name="SUB-CATEGORY" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="THERMALLOSS" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="TYPE" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="VALUE" x="46.595" y="6.35" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="VALUE" x="49.53" y="7.225" size="1.27" layer="27" align="top-center"/>
 <attribute name="VOLTAGE_RATING" value="" x="13.97" y="-26.67" size="1.778" layer="27" rot="R270" display="off"/>
 </element>
 <element name="D1" library="Diodes" library_urn="urn:adsk.eagle:library:11396254" package="DO201AD" package3d_urn="urn:adsk.eagle:package:10898389/2" value="SB5100" x="24.13" y="8.89" smashed="yes" rot="R270">
@@ -960,37 +960,37 @@ design rules under a new name.</description>
 <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MANUFACTURER" value="ON Semiconductor" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="MPN" value="MBR360G" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
-<attribute name="NAME" x="25.86" y="1.4" size="1.27" layer="25" ratio="10" rot="R270"/>
+<attribute name="NAME" x="27.81" y="3" size="1.27" layer="25" ratio="10"/>
 <attribute name="PACKAGE" value="DO-201AD" x="-13.97" y="-11.43" size="1.778" layer="27" rot="R270" display="off"/>
 <attribute name="VALUE" x="19.88" y="16.39" size="1.27" layer="27" ratio="10" rot="R270"/>
 </element>
 <element name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" package="DR127" package3d_urn="urn:adsk.eagle:package:15117/1" value="DR127" x="39.37" y="11.43" smashed="yes">
-<attribute name="NAME" x="32.56" y="17.82" size="1.27" layer="25" rot="R90"/>
+<attribute name="NAME" x="39.33" y="4.62" size="1.27" layer="25" rot="R180"/>
 <attribute name="POPULARITY" value="2" x="74.93" y="-13.97" size="1.778" layer="27" display="off"/>
 <attribute name="SPICEPREFIX" value="L" x="74.93" y="-13.97" size="1.778" layer="27" display="off"/>
 <attribute name="VALUE" x="36.37" y="6.93" size="1.27" layer="27"/>
 </element>
 <element name="R1" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="1M" x="17.78" y="24.13" smashed="yes">
-<attribute name="NAME" x="16.51" y="27.94" size="1.27" layer="25" rot="R270"/>
+<attribute name="NAME" x="15.24" y="24.13" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="33.02" y="-22.86" size="1.778" layer="27" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="33.02" y="-22.86" size="1.778" layer="27" display="off"/>
-<attribute name="VALUE" x="16.51" y="21.59" size="1.27" layer="27"/>
+<attribute name="VALUE" x="16.51" y="24.13" size="1.27" layer="27"/>
 </element>
 <element name="R2" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="100K" x="17.78" y="26.67" smashed="yes" rot="R180">
-<attribute name="NAME" x="19.05" y="25.4" size="1.27" layer="25" rot="R180"/>
+<attribute name="NAME" x="15.24" y="26.67" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="-24.13" y="62.23" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="-24.13" y="62.23" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="19.05" y="29.21" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="16.51" y="26.67" size="1.27" layer="27"/>
 </element>
 <element name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="39K" x="17.78" y="29.21" smashed="yes" rot="R180">
-<attribute name="NAME" x="16.51" y="30.48" size="1.27" layer="25"/>
+<attribute name="NAME" x="15.24" y="29.21" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="-12.7" y="73.66" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="-12.7" y="73.66" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="19.05" y="31.75" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="16.51" y="29.21" size="1.27" layer="27"/>
 </element>
-<element name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_2.54_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1" value="ON/OFF" x="24.13" y="31.75" smashed="yes" rot="R270">
-<attribute name="NAME" x="27.559" y="33.02" size="0.6096" layer="25" font="vector" ratio="20" rot="R270"/>
-<attribute name="VALUE" x="20.066" y="33.02" size="0.6096" layer="27" font="vector" ratio="20" rot="R270"/>
+<element name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_2.54_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1" value="ON/OFF" x="29.21" y="30.48" smashed="yes" rot="R180">
+<attribute name="NAME" x="30.48" y="27.051" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
+<attribute name="VALUE" x="30.48" y="34.544" size="0.6096" layer="27" font="vector" ratio="20" rot="R180"/>
 </element>
 <element name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" package="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFETSOT23" x="49.53" y="34.29" smashed="yes">
 <attribute name="CATEGORY" value="Transistor" x="49.53" y="34.29" size="1.778" layer="27" display="off"/>
@@ -1022,16 +1022,16 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="60.452" y="27.94" size="0.6096" layer="27" font="vector" ratio="20" rot="R90"/>
 </element>
 <element name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="1M" x="30.48" y="38.1" smashed="yes" rot="MR0">
-<attribute name="NAME" x="33.02" y="40.005" size="1.27" layer="26" rot="MR0"/>
+<attribute name="NAME" x="27.94" y="37.465" size="1.27" layer="26" rot="MR0"/>
 <attribute name="SPICEMODEL" value="NONE" x="30.48" y="38.1" size="1.778" layer="28" rot="MR0" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="30.48" y="38.1" size="1.778" layer="28" rot="MR0" display="off"/>
-<attribute name="VALUE" x="33.02" y="34.925" size="1.27" layer="28" rot="MR0"/>
+<attribute name="VALUE" x="31.75" y="37.465" size="1.27" layer="28" rot="MR0"/>
 </element>
 <element name="R5" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="133K" x="30.48" y="34.29" smashed="yes" rot="MR180">
-<attribute name="NAME" x="27.94" y="32.385" size="1.27" layer="26" rot="MR180"/>
+<attribute name="NAME" x="27.94" y="33.655" size="1.27" layer="26" rot="MR0"/>
 <attribute name="SPICEMODEL" value="NONE" x="30.48" y="34.29" size="1.778" layer="28" rot="MR180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="30.48" y="34.29" size="1.778" layer="28" rot="MR180" display="off"/>
-<attribute name="VALUE" x="27.94" y="37.465" size="1.27" layer="28" rot="MR180"/>
+<attribute name="VALUE" x="33.02" y="33.655" size="1.27" layer="28" rot="MR0"/>
 </element>
 <element name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" package="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFETSOT23" x="22.86" y="39.37" smashed="yes" rot="MR270">
 <attribute name="CATEGORY" value="Transistor" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
@@ -1039,7 +1039,7 @@ design rules under a new name.</description>
 <attribute name="DRAIN_CURRENT" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="MANUFACTURER" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="MPN" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
-<attribute name="NAME" x="20.955" y="38.735" size="1.27" layer="26" rot="MR270"/>
+<attribute name="NAME" x="23.495" y="36.195" size="1.27" layer="26" rot="MR0"/>
 <attribute name="OPERATING_TEMP" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="PART_STATUS" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="ROHS_COMPLIANT" value="" x="22.86" y="39.37" size="1.778" layer="28" rot="MR270" display="off"/>
@@ -1066,42 +1066,42 @@ design rules under a new name.</description>
 <attribute name="VALUE" x="51.435" y="31.115" size="1.27" layer="27"/>
 </element>
 <element name="R6" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="48.26" y="24.13" smashed="yes" rot="R180">
-<attribute name="NAME" x="49.53" y="22.86" size="1.27" layer="25" rot="R180"/>
+<attribute name="NAME" x="45.72" y="25.4" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="48.26" y="24.13" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="48.26" y="24.13" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="49.53" y="26.67" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="49.53" y="24.13" size="1.27" layer="27" rot="R180"/>
 </element>
 <element name="R7" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="52.07" y="20.32" smashed="yes">
-<attribute name="NAME" x="50.8" y="21.59" size="1.27" layer="25"/>
+<attribute name="NAME" x="49.53" y="21.59" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="52.07" y="20.32" size="1.778" layer="27" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="52.07" y="20.32" size="1.778" layer="27" display="off"/>
 <attribute name="VALUE" x="50.8" y="17.78" size="1.27" layer="27"/>
 </element>
 <element name="D2" library="eScooter" package="DIOM5027X220N" package3d_urn="urn:adsk.eagle:package:21928182/1" value="P4SMAJ12CA" x="53.34" y="6.35" smashed="yes" rot="R270">
-<attribute name="NAME" x="55.325" y="6.35" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="NAME" x="53.34" y="3.095" size="1.27" layer="25" rot="R180" align="bottom-center"/>
 <attribute name="VALUE" x="51.355" y="6.35" size="1.27" layer="27" rot="R270" align="top-center"/>
 </element>
 <element name="R8" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="52.07" y="17.78" smashed="yes" rot="R180">
-<attribute name="NAME" x="53.34" y="16.51" size="1.27" layer="25" rot="R180"/>
+<attribute name="NAME" x="49.53" y="19.05" size="1.27" layer="25" rot="R180"/>
 <attribute name="SPICEMODEL" value="NONE" x="52.07" y="17.78" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="SPICEPREFIX" value="R" x="52.07" y="17.78" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="53.34" y="20.32" size="1.27" layer="27" rot="R180"/>
+<attribute name="VALUE" x="53.34" y="21.59" size="1.27" layer="27" rot="R180"/>
 </element>
 <element name="C4" library="eScooter" package="CAPAE1230X1250N" package3d_urn="urn:adsk.eagle:package:21812541/1" value="68uF" x="13.97" y="11.43" smashed="yes" rot="R270">
-<attribute name="NAME" x="20.855" y="11.43" size="1.27" layer="25" rot="R270" align="bottom-center"/>
-<attribute name="VALUE" x="7.085" y="11.43" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="NAME" x="13.97" y="4.545" size="1.27" layer="25" rot="R180" align="bottom-center"/>
+<attribute name="VALUE" x="13.97" y="10.695" size="1.27" layer="27" rot="R180" align="top-center"/>
 </element>
 <element name="U$1" library="eScooter" package="DIP826W56P254L937H458Q8B" package3d_urn="urn:adsk.eagle:package:22059831/1" value="MAX5035PDIP8" x="26.67" y="21.59" smashed="yes" rot="R180">
-<attribute name="NAME" x="26.67" y="16" size="1.27" layer="25" rot="R180" align="bottom-center"/>
-<attribute name="VALUE" x="26.67" y="27.18" size="1.27" layer="27" rot="R180" align="top-center"/>
+<attribute name="NAME" x="26.67" y="28.7" size="1.27" layer="25" rot="R180" align="bottom-center"/>
+<attribute name="VALUE" x="26.67" y="20.83" size="1.27" layer="27" rot="R180" align="top-center"/>
 </element>
 <element name="J4" library="eScooter" package="XT60" value="BATTERY" x="3.81" y="11.43" smashed="yes" rot="R90">
-<attribute name="NAME" x="0.31" y="8.53" size="1.27" layer="25" rot="R90"/>
-<attribute name="VALUE" x="7.91" y="8.33" size="1.27" layer="27" rot="R90"/>
+<attribute name="NAME" x="7.31" y="11.79" size="1.27" layer="25" rot="R270"/>
+<attribute name="VALUE" x="1.56" y="8.33" size="1.27" layer="27" rot="R90"/>
 </element>
 <element name="J6" library="eScooter" package="XT60" value="DRIVER POWER" x="3.81" y="31.75" smashed="yes" rot="R270">
-<attribute name="NAME" x="7.31" y="34.65" size="1.27" layer="25" rot="R270"/>
-<attribute name="VALUE" x="-0.29" y="34.85" size="1.27" layer="27" rot="R270"/>
+<attribute name="NAME" x="7.31" y="32.11" size="1.27" layer="25" rot="R270"/>
+<attribute name="VALUE" x="1.56" y="24.84" size="1.27" layer="27" rot="R90"/>
 </element>
 <element name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" package="DPAK3" package3d_urn="urn:adsk.eagle:package:10893256/5" value="IRFR3607PBF" x="12.7" y="38.1" smashed="yes" rot="MR270">
 <attribute name="CREATED_BY" value="PCBLayout.com" x="12.7" y="38.1" size="1.778" layer="28" rot="MR270" display="off"/>
@@ -1157,13 +1157,7 @@ design rules under a new name.</description>
 <contactref element="U$1" pad="3"/>
 <contactref element="J4" pad="GND"/>
 <contactref element="Q4" pad="2"/>
-<via x="29.21" y="29.21" extent="1-16" drill="0.35"/>
-<via x="31.75" y="29.21" extent="1-16" drill="0.35"/>
-<via x="34.29" y="29.21" extent="1-16" drill="0.35"/>
-<via x="36.83" y="29.21" extent="1-16" drill="0.35"/>
 <via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
-<via x="26.67" y="29.21" extent="1-16" drill="0.35"/>
-<via x="21.59" y="33.02" extent="1-16" drill="0.35"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1190,12 +1184,14 @@ design rules under a new name.</description>
 <wire x1="8.89" y1="17.78" x2="7.62" y2="19.05" width="2.54" layer="1"/>
 <wire x1="17.935" y1="20.32" x2="16.358" y2="21.897" width="1.27" layer="1"/>
 <wire x1="16.358" y1="21.897" x2="16.358" y2="24.13" width="1.27" layer="1"/>
-<wire x1="7.62" y1="26.67" x2="12.7" y2="31.75" width="0.8128" layer="1"/>
-<wire x1="12.7" y1="31.75" x2="17.78" y2="31.75" width="0.8128" layer="1"/>
 <via x="17.78" y="31.75" extent="1-16" drill="0.35"/>
-<wire x1="17.78" y1="31.75" x2="20.49" y2="34.46" width="0.8128" layer="16"/>
-<wire x1="20.49" y1="38.1" x2="21.76" y2="39.37" width="0.8128" layer="16"/>
-<wire x1="20.49" y1="38.1" x2="20.49" y2="34.46" width="0.8128" layer="16"/>
+<wire x1="7.62" y1="26.67" x2="8.255" y2="27.305" width="1.27" layer="1"/>
+<wire x1="20.32" y1="34.29" x2="17.78" y2="31.75" width="0.8128" layer="16"/>
+<wire x1="20.32" y1="34.29" x2="20.32" y2="38.1" width="0.8128" layer="16"/>
+<wire x1="20.32" y1="38.1" x2="21.59" y2="39.37" width="0.8128" layer="16"/>
+<wire x1="21.59" y1="39.37" x2="21.76" y2="39.37" width="0.8128" layer="16"/>
+<wire x1="8.255" y1="27.305" x2="12.7" y2="31.75" width="0.8128" layer="1"/>
+<wire x1="12.7" y1="31.75" x2="17.78" y2="31.75" width="0.8128" layer="1"/>
 </signal>
 <signal name="N$1">
 <contactref element="C1" pad="1"/>
@@ -1224,14 +1220,14 @@ design rules under a new name.</description>
 <contactref element="U$1" pad="4"/>
 <wire x1="40.64" y1="13.97" x2="43.18" y2="11.43" width="1.27" layer="1"/>
 <wire x1="43.18" y1="11.43" x2="44.345" y2="11.43" width="1.27" layer="1"/>
-<wire x1="49.53" y1="9.4712" x2="50.5512" y2="8.45" width="1.27" layer="1"/>
-<wire x1="50.5512" y1="8.45" x2="53.34" y2="8.45" width="1.27" layer="1"/>
+<wire x1="53.0912" y1="8.45" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
+<wire x1="49.53" y1="9.4712" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
+<wire x1="53.0912" y1="8.45" x2="53.34" y2="8.45" width="1.27" layer="1"/>
 <wire x1="53.34" y1="8.45" x2="55.44" y2="6.35" width="1.27" layer="1"/>
 <wire x1="55.44" y1="6.35" x2="58.42" y2="6.35" width="1.27" layer="1"/>
 <wire x1="59.69" y1="6.35" x2="58.42" y2="6.35" width="1.27" layer="1"/>
-<wire x1="44.345" y1="11.43" x2="45.615" y2="10.16" width="1.27" layer="1"/>
-<wire x1="48.8412" y1="10.16" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
-<wire x1="45.615" y1="10.16" x2="48.8412" y2="10.16" width="1.27" layer="1"/>
+<wire x1="46.3038" y1="9.4712" x2="44.345" y2="11.43" width="1.27" layer="1"/>
+<wire x1="46.3038" y1="9.4712" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
 <wire x1="30.8" y1="25.4" x2="36.83" y2="25.4" width="1.27" layer="1"/>
 <wire x1="36.83" y1="25.4" x2="40.64" y2="21.59" width="1.27" layer="1"/>
 <wire x1="40.64" y1="21.59" x2="40.64" y2="13.97" width="1.27" layer="1"/>
@@ -1246,11 +1242,12 @@ design rules under a new name.</description>
 <contactref element="R2" pad="1"/>
 <contactref element="J3" pad="P1"/>
 <contactref element="U$1" pad="5"/>
-<wire x1="19.202" y1="24.13" x2="19.202" y2="26.67" width="1.27" layer="1"/>
-<wire x1="21.27" y1="26.67" x2="19.202" y2="26.67" width="1.27" layer="1"/>
-<wire x1="22.54" y1="25.4" x2="21.27" y2="26.67" width="1.27" layer="1"/>
-<wire x1="21.27" y1="26.67" x2="23.81" y2="29.21" width="1.27" layer="1"/>
-<wire x1="23.81" y1="29.21" x2="24.13" y2="29.21" width="1.27" layer="1"/>
+<wire x1="19.202" y1="24.13" x2="19.202" y2="25.4" width="1.27" layer="1"/>
+<wire x1="19.202" y1="25.4" x2="19.202" y2="26.67" width="1.27" layer="1"/>
+<wire x1="19.202" y1="25.4" x2="22.54" y2="25.4" width="1.27" layer="1"/>
+<wire x1="22.54" y1="25.4" x2="24.13" y2="25.4" width="1.27" layer="1"/>
+<wire x1="24.13" y1="25.4" x2="26.67" y2="27.94" width="1.27" layer="1"/>
+<wire x1="26.67" y1="27.94" x2="26.67" y2="30.48" width="1.27" layer="1"/>
 </signal>
 <signal name="N$7">
 <contactref element="R2" pad="2"/>
@@ -1369,6 +1366,18 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
+<signal name="N$11">
+<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
+</signal>
+<signal name="N$12">
+<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
+</signal>
+<signal name="N$13">
+<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
+</signal>
+<signal name="N$14">
+<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
+</signal>
 </signals>
 <mfgpreviewcolors>
 <mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/>

+ 32 - 24
schematic/regulator.b#8

@@ -988,9 +988,9 @@ design rules under a new name.</description>
 <attribute name="SPICEPREFIX" value="R" x="-12.7" y="73.66" size="1.778" layer="27" rot="R180" display="off"/>
 <attribute name="VALUE" x="19.05" y="31.75" size="1.27" layer="27" rot="R180"/>
 </element>
-<element name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_2.54_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1" value="ON/OFF" x="24.13" y="31.75" smashed="yes" rot="R270">
-<attribute name="NAME" x="27.559" y="33.02" size="0.6096" layer="25" font="vector" ratio="20" rot="R270"/>
-<attribute name="VALUE" x="20.066" y="33.02" size="0.6096" layer="27" font="vector" ratio="20" rot="R270"/>
+<element name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_2.54_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1" value="ON/OFF" x="29.21" y="30.48" smashed="yes" rot="R180">
+<attribute name="NAME" x="30.48" y="27.051" size="0.6096" layer="25" font="vector" ratio="20" rot="R180"/>
+<attribute name="VALUE" x="30.48" y="34.544" size="0.6096" layer="27" font="vector" ratio="20" rot="R180"/>
 </element>
 <element name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" package="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFETSOT23" x="49.53" y="34.29" smashed="yes">
 <attribute name="CATEGORY" value="Transistor" x="49.53" y="34.29" size="1.778" layer="27" display="off"/>
@@ -1144,11 +1144,10 @@ design rules under a new name.</description>
 <via x="46.99" y="17.78" extent="1-16" drill="0.35"/>
 <via x="45.72" y="19.05" extent="1-16" drill="0.35"/>
 <via x="44.45" y="20.32" extent="1-16" drill="0.35"/>
+<via x="43.18" y="24.13" extent="1-16" drill="0.35"/>
+<via x="41.91" y="25.4" extent="1-16" drill="0.35"/>
 <via x="44.45" y="22.86" extent="1-16" drill="0.35"/>
-<via x="44.45" y="25.4" extent="1-16" drill="0.35"/>
-<via x="44.45" y="27.94" extent="1-16" drill="0.35"/>
-<via x="43.18" y="29.21" extent="1-16" drill="0.35"/>
-<via x="41.91" y="30.48" extent="1-16" drill="0.35"/>
+<via x="40.64" y="26.67" extent="1-16" drill="0.35"/>
 <contactref element="R6" pad="2"/>
 <contactref element="R7" pad="1"/>
 <contactref element="D2" pad="2"/>
@@ -1158,13 +1157,7 @@ design rules under a new name.</description>
 <contactref element="U$1" pad="3"/>
 <contactref element="J4" pad="GND"/>
 <contactref element="Q4" pad="2"/>
-<via x="29.21" y="30.48" extent="1-16" drill="0.35"/>
-<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
-<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
-<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
-<via x="39.37" y="30.48" extent="1-16" drill="0.35"/>
-<via x="26.67" y="30.48" extent="1-16" drill="0.35"/>
-<via x="21.59" y="33.02" extent="1-16" drill="0.35"/>
+<via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1191,12 +1184,14 @@ design rules under a new name.</description>
 <wire x1="8.89" y1="17.78" x2="7.62" y2="19.05" width="2.54" layer="1"/>
 <wire x1="17.935" y1="20.32" x2="16.358" y2="21.897" width="1.27" layer="1"/>
 <wire x1="16.358" y1="21.897" x2="16.358" y2="24.13" width="1.27" layer="1"/>
-<wire x1="7.62" y1="26.67" x2="12.7" y2="31.75" width="0.8128" layer="1"/>
-<wire x1="12.7" y1="31.75" x2="17.78" y2="31.75" width="0.8128" layer="1"/>
 <via x="17.78" y="31.75" extent="1-16" drill="0.35"/>
-<wire x1="17.78" y1="31.75" x2="20.49" y2="34.46" width="0.8128" layer="16"/>
-<wire x1="20.49" y1="38.1" x2="21.76" y2="39.37" width="0.8128" layer="16"/>
-<wire x1="20.49" y1="38.1" x2="20.49" y2="34.46" width="0.8128" layer="16"/>
+<wire x1="7.62" y1="26.67" x2="8.255" y2="27.305" width="1.27" layer="1"/>
+<wire x1="20.32" y1="34.29" x2="17.78" y2="31.75" width="0.8128" layer="16"/>
+<wire x1="20.32" y1="34.29" x2="20.32" y2="38.1" width="0.8128" layer="16"/>
+<wire x1="20.32" y1="38.1" x2="21.59" y2="39.37" width="0.8128" layer="16"/>
+<wire x1="21.59" y1="39.37" x2="21.76" y2="39.37" width="0.8128" layer="16"/>
+<wire x1="8.255" y1="27.305" x2="12.7" y2="31.75" width="0.8128" layer="1"/>
+<wire x1="12.7" y1="31.75" x2="17.78" y2="31.75" width="0.8128" layer="1"/>
 </signal>
 <signal name="N$1">
 <contactref element="C1" pad="1"/>
@@ -1247,11 +1242,12 @@ design rules under a new name.</description>
 <contactref element="R2" pad="1"/>
 <contactref element="J3" pad="P1"/>
 <contactref element="U$1" pad="5"/>
-<wire x1="19.202" y1="24.13" x2="19.202" y2="26.67" width="1.27" layer="1"/>
-<wire x1="21.27" y1="26.67" x2="19.202" y2="26.67" width="1.27" layer="1"/>
-<wire x1="22.54" y1="25.4" x2="21.27" y2="26.67" width="1.27" layer="1"/>
-<wire x1="21.27" y1="26.67" x2="23.81" y2="29.21" width="1.27" layer="1"/>
-<wire x1="23.81" y1="29.21" x2="24.13" y2="29.21" width="1.27" layer="1"/>
+<wire x1="19.202" y1="24.13" x2="19.202" y2="25.4" width="1.27" layer="1"/>
+<wire x1="19.202" y1="25.4" x2="19.202" y2="26.67" width="1.27" layer="1"/>
+<wire x1="19.202" y1="25.4" x2="22.54" y2="25.4" width="1.27" layer="1"/>
+<wire x1="22.54" y1="25.4" x2="24.13" y2="25.4" width="1.27" layer="1"/>
+<wire x1="24.13" y1="25.4" x2="26.67" y2="27.94" width="1.27" layer="1"/>
+<wire x1="26.67" y1="27.94" x2="26.67" y2="30.48" width="1.27" layer="1"/>
 </signal>
 <signal name="N$7">
 <contactref element="R2" pad="2"/>
@@ -1370,6 +1366,18 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
+<signal name="N$11">
+<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
+</signal>
+<signal name="N$12">
+<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
+</signal>
+<signal name="N$13">
+<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
+</signal>
+<signal name="N$14">
+<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
+</signal>
 </signals>
 <mfgpreviewcolors>
 <mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/>

+ 33 - 29
schematic/regulator.b#9

@@ -910,20 +910,20 @@ design rules under a new name.</description>
 </pass>
 </autorouter>
 <elements>
-<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="29.21" y="15.24" smashed="yes" rot="R180">
-<attribute name="CATEGORY" value="Capacitor" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="MANUFACTURER" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="MPN" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="NAME" x="29.21" y="13.3833" size="1.27" layer="25" rot="R180" align="bottom-center"/>
-<attribute name="OPERATING_TEMP" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="PART_STATUS" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="ROHS_COMPLIANT" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="SERIES" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="SUB-CATEGORY" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="THERMALLOSS" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="TYPE" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
-<attribute name="VALUE" x="29.21" y="17.0967" size="1.27" layer="27" rot="R180" align="top-center"/>
-<attribute name="VOLTAGE_RATING" value="" x="8.89" y="59.69" size="1.778" layer="27" rot="R180" display="off"/>
+<element name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="29.21" y="13.97" smashed="yes" rot="R270">
+<attribute name="CATEGORY" value="Capacitor" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="MANUFACTURER" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="MPN" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="NAME" x="31.0667" y="13.97" size="1.27" layer="25" rot="R270" align="bottom-center"/>
+<attribute name="OPERATING_TEMP" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="PART_STATUS" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="ROHS_COMPLIANT" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="SERIES" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="SUB-CATEGORY" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="THERMALLOSS" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="TYPE" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="VALUE" x="27.3533" y="13.97" size="1.27" layer="27" rot="R270" align="top-center"/>
+<attribute name="VOLTAGE_RATING" value="" x="-15.24" y="-6.35" size="1.778" layer="27" rot="R270" display="off"/>
 </element>
 <element name="C2" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" package="CAPC3216X135" package3d_urn="urn:adsk.eagle:package:16290893/2" value="0.1uF" x="34.29" y="20.32" smashed="yes" rot="R180">
 <attribute name="CATEGORY" value="Capacitor" x="8.89" y="64.77" size="1.778" layer="27" rot="R180" display="off"/>
@@ -1144,11 +1144,10 @@ design rules under a new name.</description>
 <via x="46.99" y="17.78" extent="1-16" drill="0.35"/>
 <via x="45.72" y="19.05" extent="1-16" drill="0.35"/>
 <via x="44.45" y="20.32" extent="1-16" drill="0.35"/>
+<via x="43.18" y="24.13" extent="1-16" drill="0.35"/>
+<via x="41.91" y="25.4" extent="1-16" drill="0.35"/>
 <via x="44.45" y="22.86" extent="1-16" drill="0.35"/>
-<via x="44.45" y="25.4" extent="1-16" drill="0.35"/>
-<via x="44.45" y="27.94" extent="1-16" drill="0.35"/>
-<via x="43.18" y="29.21" extent="1-16" drill="0.35"/>
-<via x="41.91" y="30.48" extent="1-16" drill="0.35"/>
+<via x="40.64" y="26.67" extent="1-16" drill="0.35"/>
 <contactref element="R6" pad="2"/>
 <contactref element="R7" pad="1"/>
 <contactref element="D2" pad="2"/>
@@ -1158,11 +1157,13 @@ design rules under a new name.</description>
 <contactref element="U$1" pad="3"/>
 <contactref element="J4" pad="GND"/>
 <contactref element="Q4" pad="2"/>
-<via x="29.21" y="30.48" extent="1-16" drill="0.35"/>
-<via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
-<via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
-<via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
-<via x="39.37" y="30.48" extent="1-16" drill="0.35"/>
+<via x="29.21" y="29.21" extent="1-16" drill="0.35"/>
+<via x="31.75" y="29.21" extent="1-16" drill="0.35"/>
+<via x="34.29" y="29.21" extent="1-16" drill="0.35"/>
+<via x="36.83" y="29.21" extent="1-16" drill="0.35"/>
+<via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
+<via x="26.67" y="29.21" extent="1-16" drill="0.35"/>
+<via x="21.59" y="33.02" extent="1-16" drill="0.35"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1199,19 +1200,21 @@ design rules under a new name.</description>
 <signal name="N$1">
 <contactref element="C1" pad="1"/>
 <contactref element="U$1" pad="1"/>
-<wire x1="30.6854" y1="15.24" x2="30.8" y2="17.78" width="0" layer="19" extent="1-1"/>
+<wire x1="30.8" y1="17.78" x2="30.48" y2="17.78" width="1.27" layer="1"/>
+<wire x1="30.48" y1="17.78" x2="29.21" y2="16.51" width="1.27" layer="1"/>
+<wire x1="29.21" y1="16.51" x2="29.21" y2="15.4454" width="1.27" layer="1"/>
 </signal>
 <signal name="N$2">
 <contactref element="C1" pad="2"/>
 <contactref element="D1" pad="C"/>
 <contactref element="L1" pad="1"/>
 <contactref element="U$1" pad="8"/>
-<wire x1="27.7346" y1="15.24" x2="27.5846" y2="15.09" width="1.27" layer="1"/>
-<wire x1="27.5846" y1="15.09" x2="24.13" y2="15.09" width="1.27" layer="1"/>
 <wire x1="24.13" y1="15.09" x2="22.54" y2="16.68" width="1.27" layer="1"/>
 <wire x1="22.54" y1="16.68" x2="22.54" y2="17.78" width="1.27" layer="1"/>
 <wire x1="27.79" y1="11.43" x2="24.13" y2="15.09" width="1.27" layer="1"/>
-<wire x1="34.395" y1="11.43" x2="27.79" y2="11.43" width="1.27" layer="1"/>
+<wire x1="34.395" y1="11.43" x2="28.1454" y2="11.43" width="1.27" layer="1"/>
+<wire x1="29.21" y1="12.4946" x2="28.1454" y2="11.43" width="1.27" layer="1"/>
+<wire x1="28.1454" y1="11.43" x2="27.79" y2="11.43" width="1.27" layer="1"/>
 </signal>
 <signal name="12V">
 <contactref element="L1" pad="2"/>
@@ -1219,8 +1222,6 @@ design rules under a new name.</description>
 <contactref element="J1" pad="1"/>
 <contactref element="D2" pad="1"/>
 <contactref element="U$1" pad="4"/>
-<wire x1="30.8" y1="25.4" x2="40.64" y2="25.4" width="1.27" layer="1"/>
-<wire x1="40.64" y1="25.4" x2="40.64" y2="13.97" width="1.27" layer="1"/>
 <wire x1="40.64" y1="13.97" x2="43.18" y2="11.43" width="1.27" layer="1"/>
 <wire x1="43.18" y1="11.43" x2="44.345" y2="11.43" width="1.27" layer="1"/>
 <wire x1="49.53" y1="9.4712" x2="50.5512" y2="8.45" width="1.27" layer="1"/>
@@ -1231,6 +1232,9 @@ design rules under a new name.</description>
 <wire x1="44.345" y1="11.43" x2="45.615" y2="10.16" width="1.27" layer="1"/>
 <wire x1="48.8412" y1="10.16" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
 <wire x1="45.615" y1="10.16" x2="48.8412" y2="10.16" width="1.27" layer="1"/>
+<wire x1="30.8" y1="25.4" x2="36.83" y2="25.4" width="1.27" layer="1"/>
+<wire x1="36.83" y1="25.4" x2="40.64" y2="21.59" width="1.27" layer="1"/>
+<wire x1="40.64" y1="21.59" x2="40.64" y2="13.97" width="1.27" layer="1"/>
 </signal>
 <signal name="N$4">
 <contactref element="C2" pad="2"/>

+ 41 - 10
schematic/regulator.brd

@@ -1112,6 +1112,24 @@ design rules under a new name.</description>
 <attribute name="PACKAGE" value="DPAK-4" x="12.7" y="38.1" size="1.778" layer="28" rot="MR270" display="off"/>
 <attribute name="VALUE" x="21.59" y="41.91" size="1.2" layer="28" ratio="10" rot="MR270"/>
 </element>
+<element name="R9" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K" x="38.1" y="26.67" smashed="yes" rot="R90">
+<attribute name="NAME" x="38.1" y="29.21" size="1.27" layer="25" rot="R90"/>
+<attribute name="SPICEMODEL" value="NONE" x="38.1" y="26.67" size="1.778" layer="27" rot="R90" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="38.1" y="26.67" size="1.778" layer="27" rot="R90" display="off"/>
+<attribute name="VALUE" x="39.37" y="25.4" size="1.27" layer="27" rot="R90"/>
+</element>
+<element name="R10" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K" x="35.56" y="26.67" smashed="yes" rot="R270">
+<attribute name="NAME" x="35.56" y="29.21" size="1.27" layer="25" rot="R90"/>
+<attribute name="SPICEMODEL" value="NONE" x="35.56" y="26.67" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="35.56" y="26.67" size="1.778" layer="27" rot="R270" display="off"/>
+<attribute name="VALUE" x="34.29" y="27.94" size="1.27" layer="27" rot="R270"/>
+</element>
+<element name="R11" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" package="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K" x="33.02" y="26.67" smashed="yes" rot="R90">
+<attribute name="NAME" x="33.02" y="29.21" size="1.27" layer="25" rot="R90"/>
+<attribute name="SPICEMODEL" value="NONE" x="33.02" y="26.67" size="1.778" layer="27" rot="R90" display="off"/>
+<attribute name="SPICEPREFIX" value="R" x="33.02" y="26.67" size="1.778" layer="27" rot="R90" display="off"/>
+<attribute name="VALUE" x="33.02" y="25.4" size="1.27" layer="27" rot="R90"/>
+</element>
 </elements>
 <signals>
 <signal name="GND">
@@ -1144,10 +1162,10 @@ design rules under a new name.</description>
 <via x="46.99" y="17.78" extent="1-16" drill="0.35"/>
 <via x="45.72" y="19.05" extent="1-16" drill="0.35"/>
 <via x="44.45" y="20.32" extent="1-16" drill="0.35"/>
-<via x="43.18" y="24.13" extent="1-16" drill="0.35"/>
-<via x="41.91" y="25.4" extent="1-16" drill="0.35"/>
+<via x="44.45" y="25.4" extent="1-16" drill="0.35"/>
+<via x="43.18" y="26.67" extent="1-16" drill="0.35"/>
 <via x="44.45" y="22.86" extent="1-16" drill="0.35"/>
-<via x="40.64" y="26.67" extent="1-16" drill="0.35"/>
+<via x="41.91" y="27.94" extent="1-16" drill="0.35"/>
 <contactref element="R6" pad="2"/>
 <contactref element="R7" pad="1"/>
 <contactref element="D2" pad="2"/>
@@ -1157,19 +1175,20 @@ design rules under a new name.</description>
 <contactref element="U$1" pad="3"/>
 <contactref element="J4" pad="GND"/>
 <contactref element="Q4" pad="2"/>
-<via x="39.37" y="27.94" extent="1-16" drill="0.35"/>
+<via x="40.64" y="29.21" extent="1-16" drill="0.35"/>
 <via x="22.86" y="30.48" extent="1-16" drill="0.35"/>
 <via x="26.67" y="16.51" extent="1-16" drill="0.35"/>
 <via x="31.75" y="30.48" extent="1-16" drill="0.35"/>
 <via x="34.29" y="30.48" extent="1-16" drill="0.35"/>
 <via x="36.83" y="30.48" extent="1-16" drill="0.35"/>
-<via x="38.1" y="29.21" extent="1-16" drill="0.35"/>
+<via x="39.37" y="30.48" extent="1-16" drill="0.35"/>
 <via x="38.1" y="12.7" extent="1-16" drill="0.35"/>
 <via x="41.91" y="3.81" extent="1-16" drill="0.35"/>
 <via x="29.21" y="6.35" extent="1-16" drill="0.35"/>
 <via x="19.05" y="12.7" extent="1-16" drill="0.35"/>
 <via x="19.05" y="3.81" extent="1-16" drill="0.35"/>
 <via x="10.16" y="8.89" extent="1-16" drill="0.35"/>
+<contactref element="R11" pad="2"/>
 </signal>
 <signal name="VIN">
 <contactref element="R1" pad="1"/>
@@ -1229,8 +1248,6 @@ design rules under a new name.</description>
 <contactref element="C3" pad="1"/>
 <contactref element="J1" pad="1"/>
 <contactref element="D2" pad="1"/>
-<contactref element="U$1" pad="4"/>
-<wire x1="40.64" y1="13.97" x2="43.18" y2="11.43" width="1.27" layer="1"/>
 <wire x1="43.18" y1="11.43" x2="44.345" y2="11.43" width="1.27" layer="1"/>
 <wire x1="53.0912" y1="8.45" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
 <wire x1="49.53" y1="9.4712" x2="52.07" y2="9.4712" width="1.27" layer="1"/>
@@ -1240,9 +1257,10 @@ design rules under a new name.</description>
 <wire x1="59.69" y1="6.35" x2="58.42" y2="6.35" width="1.27" layer="1"/>
 <wire x1="46.3038" y1="9.4712" x2="44.345" y2="11.43" width="1.27" layer="1"/>
 <wire x1="46.3038" y1="9.4712" x2="49.53" y2="9.4712" width="1.27" layer="1"/>
-<wire x1="30.8" y1="25.4" x2="36.83" y2="25.4" width="1.27" layer="1"/>
-<wire x1="36.83" y1="25.4" x2="40.64" y2="21.59" width="1.27" layer="1"/>
-<wire x1="40.64" y1="21.59" x2="40.64" y2="13.97" width="1.27" layer="1"/>
+<contactref element="R9" pad="1"/>
+<wire x1="38.1" y1="25.248" x2="38.1" y2="23.978" width="0.8128" layer="1"/>
+<wire x1="44.345" y1="17.733" x2="38.1" y2="23.978" width="0.8128" layer="1"/>
+<wire x1="44.345" y1="17.733" x2="44.345" y2="11.43" width="0.8128" layer="1"/>
 </signal>
 <signal name="N$4">
 <contactref element="C2" pad="2"/>
@@ -1378,6 +1396,19 @@ design rules under a new name.</description>
 <wire x1="10.19" y1="38.1" x2="11.43" y2="38.1" width="2.54" layer="16"/>
 <wire x1="10.19" y1="38.1" x2="8.89" y2="38.1" width="2.54" layer="16"/>
 </signal>
+<signal name="N$6">
+<contactref element="R10" pad="1"/>
+<contactref element="R9" pad="2"/>
+<wire x1="35.56" y1="28.092" x2="38.1" y2="28.092" width="0.8128" layer="1"/>
+</signal>
+<signal name="N$9">
+<contactref element="U$1" pad="4"/>
+<contactref element="R11" pad="1"/>
+<contactref element="R10" pad="2"/>
+<wire x1="30.8" y1="25.4" x2="32.868" y2="25.4" width="0.8128" layer="1"/>
+<wire x1="32.868" y1="25.4" x2="33.02" y2="25.248" width="0.8128" layer="1"/>
+<wire x1="33.02" y1="25.248" x2="35.56" y2="25.248" width="0.8128" layer="1"/>
+</signal>
 </signals>
 <mfgpreviewcolors>
 <mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/>

+ 4 - 5
schematic/regulator.s#1

@@ -6728,7 +6728,7 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <wire x1="147.32" y1="104.14" x2="154.94" y2="104.14" width="0.1524" layer="91"/>
 <wire x1="182.88" y1="116.84" x2="182.88" y2="106.68" width="0.1524" layer="91"/>
 <pinref part="R1" gate="G$1" pin="1"/>
-<wire x1="182.88" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
+<wire x1="182.88" y1="116.84" x2="203.2" y2="116.84" width="0.1524" layer="91"/>
 <junction x="182.88" y="116.84"/>
 <wire x1="154.94" y1="104.14" x2="154.94" y2="116.84" width="0.1524" layer="91"/>
 <wire x1="154.94" y1="116.84" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
@@ -6737,14 +6737,13 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <junction x="160.02" y="116.84"/>
 <label x="203.2" y="116.84" size="1.778" layer="95"/>
 <wire x1="48.26" y1="58.42" x2="203.2" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="203.2" y1="58.42" x2="205.74" y2="58.42" width="0.1524" layer="91"/>
-<wire x1="205.74" y1="58.42" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
-<junction x="205.74" y="116.84"/>
+<wire x1="203.2" y1="58.42" x2="203.2" y2="116.84" width="0.1524" layer="91"/>
+<junction x="203.2" y="116.84"/>
 <pinref part="C4" gate="G$1" pin="P$1"/>
 <label x="147.32" y="104.14" size="1.778" layer="95"/>
 <pinref part="U$1" gate="G$1" pin="VIN"/>
 <pinref part="J4" gate="G$1" pin="P$2"/>
-<wire x1="210.82" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
+<wire x1="210.82" y1="116.84" x2="203.2" y2="116.84" width="0.1524" layer="91"/>
 <wire x1="203.2" y1="50.8" x2="203.2" y2="58.42" width="0.1524" layer="91"/>
 <junction x="203.2" y="58.42"/>
 </segment>

+ 6 - 8
schematic/regulator.s#3

@@ -6689,15 +6689,14 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <wire x1="78.74" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
 <junction x="91.44" y="66.04"/>
 <wire x1="48.26" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
-<wire x1="78.74" y1="7.62" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
 <pinref part="R8" gate="G$1" pin="2"/>
 <wire x1="5.08" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
 <junction x="5.08" y="55.88"/>
 <wire x1="200.66" y1="119.38" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
 <junction x="200.66" y="132.08"/>
-<wire x1="223.52" y1="132.08" x2="223.52" y2="12.7" width="0.1524" layer="91"/>
-<wire x1="223.52" y1="12.7" x2="190.5" y2="12.7" width="0.1524" layer="91"/>
-<wire x1="187.96" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
+<wire x1="223.52" y1="132.08" x2="223.52" y2="7.62" width="0.1524" layer="91"/>
+<wire x1="223.52" y1="7.62" x2="187.96" y2="7.62" width="0.1524" layer="91"/>
+<wire x1="187.96" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
 <wire x1="116.84" y1="99.06" x2="101.6" y2="99.06" width="0.1524" layer="91"/>
 <wire x1="101.6" y1="99.06" x2="101.6" y2="104.14" width="0.1524" layer="91"/>
 <wire x1="101.6" y1="104.14" x2="104.14" y2="104.14" width="0.1524" layer="91"/>
@@ -6706,17 +6705,16 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <junction x="101.6" y="99.06"/>
 <junction x="101.6" y="66.04"/>
 <label x="111.76" y="99.06" size="1.778" layer="95"/>
-<wire x1="78.74" y1="66.04" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
+<wire x1="78.74" y1="66.04" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
 <junction x="78.74" y="66.04"/>
-<junction x="78.74" y="12.7"/>
+<junction x="78.74" y="7.62"/>
 <pinref part="C4" gate="G$1" pin="P$2"/>
 <pinref part="U$1" gate="G$1" pin="SGND"/>
 <pinref part="U$1" gate="G$1" pin="GND"/>
 <pinref part="J4" gate="G$1" pin="P$1"/>
 <wire x1="200.66" y1="119.38" x2="210.82" y2="119.38" width="0.1524" layer="91"/>
 <pinref part="Q4" gate="G$1" pin="S"/>
-<wire x1="187.96" y1="33.02" x2="187.96" y2="12.7" width="0.1524" layer="91"/>
-<wire x1="187.96" y1="12.7" x2="190.5" y2="12.7" width="0.1524" layer="91"/>
+<wire x1="187.96" y1="33.02" x2="187.96" y2="7.62" width="0.1524" layer="91"/>
 </segment>
 </net>
 <net name="VIN" class="0">

+ 5 - 5
schematic/regulator.s#4

@@ -6622,9 +6622,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <attribute name="NAME" x="213.36" y="121.92" size="1.778" layer="95"/>
 <attribute name="VALUE" x="213.36" y="111.76" size="1.778" layer="96"/>
 </instance>
-<instance part="J6" gate="G$1" x="213.36" y="53.34" smashed="yes" rot="MR180">
-<attribute name="NAME" x="210.82" y="45.72" size="1.778" layer="95" rot="MR180"/>
-<attribute name="VALUE" x="208.28" y="55.88" size="1.778" layer="96" rot="MR180"/>
+<instance part="J6" gate="G$1" x="215.9" y="53.34" smashed="yes" rot="MR180">
+<attribute name="NAME" x="213.36" y="45.72" size="1.778" layer="95" rot="MR180"/>
+<attribute name="VALUE" x="210.82" y="55.88" size="1.778" layer="96" rot="MR180"/>
 </instance>
 <instance part="Q4" gate="G$1" x="185.42" y="38.1" smashed="yes">
 <attribute name="NAME" x="184.15" y="43.18" size="1.778" layer="95"/>
@@ -6722,7 +6722,7 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <net name="VIN" class="0">
 <segment>
 <pinref part="J6" gate="G$1" pin="P$2"/>
-<wire x1="208.28" y1="50.8" x2="203.2" y2="50.8" width="0.1524" layer="91"/>
+<wire x1="210.82" y1="50.8" x2="203.2" y2="50.8" width="0.1524" layer="91"/>
 <label x="203.2" y="50.8" size="1.778" layer="95"/>
 <pinref part="Q2" gate="G$1" pin="D"/>
 <wire x1="48.26" y1="50.8" x2="48.26" y2="58.42" width="0.1524" layer="91"/>
@@ -6956,7 +6956,7 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <net name="P$1" class="0">
 <segment>
 <pinref part="J6" gate="G$1" pin="P$1"/>
-<wire x1="208.28" y1="48.26" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
+<wire x1="210.82" y1="48.26" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
 <pinref part="Q4" gate="G$1" pin="D"/>
 <wire x1="187.96" y1="48.26" x2="187.96" y2="43.18" width="0.1524" layer="91"/>
 </segment>

+ 10 - 9
schematic/regulator.s#5

@@ -6622,9 +6622,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <attribute name="NAME" x="213.36" y="121.92" size="1.778" layer="95"/>
 <attribute name="VALUE" x="213.36" y="111.76" size="1.778" layer="96"/>
 </instance>
-<instance part="J6" gate="G$1" x="213.36" y="43.18" smashed="yes">
-<attribute name="NAME" x="210.82" y="50.8" size="1.778" layer="95"/>
-<attribute name="VALUE" x="208.28" y="40.64" size="1.778" layer="96"/>
+<instance part="J6" gate="G$1" x="213.36" y="53.34" smashed="yes" rot="MR180">
+<attribute name="NAME" x="210.82" y="45.72" size="1.778" layer="95" rot="MR180"/>
+<attribute name="VALUE" x="208.28" y="55.88" size="1.778" layer="96" rot="MR180"/>
 </instance>
 <instance part="Q4" gate="G$1" x="185.42" y="38.1" smashed="yes">
 <attribute name="NAME" x="184.15" y="43.18" size="1.778" layer="95"/>
@@ -6721,6 +6721,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 </net>
 <net name="VIN" class="0">
 <segment>
+<pinref part="J6" gate="G$1" pin="P$2"/>
+<wire x1="208.28" y1="50.8" x2="203.2" y2="50.8" width="0.1524" layer="91"/>
+<label x="203.2" y="50.8" size="1.778" layer="95"/>
 <pinref part="Q2" gate="G$1" pin="D"/>
 <wire x1="48.26" y1="50.8" x2="48.26" y2="58.42" width="0.1524" layer="91"/>
 <label x="53.34" y="53.34" size="1.778" layer="95"/>
@@ -6735,7 +6738,8 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <wire x1="160.02" y1="113.03" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
 <junction x="160.02" y="116.84"/>
 <label x="203.2" y="116.84" size="1.778" layer="95"/>
-<wire x1="48.26" y1="58.42" x2="205.74" y2="58.42" width="0.1524" layer="91"/>
+<wire x1="48.26" y1="58.42" x2="203.2" y2="58.42" width="0.1524" layer="91"/>
+<wire x1="203.2" y1="58.42" x2="205.74" y2="58.42" width="0.1524" layer="91"/>
 <wire x1="205.74" y1="58.42" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
 <junction x="205.74" y="116.84"/>
 <pinref part="C4" gate="G$1" pin="P$1"/>
@@ -6743,11 +6747,8 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <pinref part="U$1" gate="G$1" pin="VIN"/>
 <pinref part="J4" gate="G$1" pin="P$2"/>
 <wire x1="210.82" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
-</segment>
-<segment>
-<pinref part="J6" gate="G$1" pin="P$2"/>
-<wire x1="208.28" y1="45.72" x2="203.2" y2="45.72" width="0.1524" layer="91"/>
-<label x="203.2" y="43.18" size="1.778" layer="95"/>
+<wire x1="203.2" y1="50.8" x2="203.2" y2="58.42" width="0.1524" layer="91"/>
+<junction x="203.2" y="58.42"/>
 </segment>
 </net>
 <net name="N$1" class="0">

+ 2 - 2
schematic/regulator.s#6

@@ -6627,8 +6627,8 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <attribute name="VALUE" x="208.28" y="40.64" size="1.778" layer="96"/>
 </instance>
 <instance part="Q4" gate="G$1" x="185.42" y="38.1" smashed="yes">
-<attribute name="NAME" x="176.53" y="43.18" size="1.778" layer="95"/>
-<attribute name="VALUE" x="173.99" y="30.48" size="1.778" layer="96"/>
+<attribute name="NAME" x="184.15" y="43.18" size="1.778" layer="95"/>
+<attribute name="VALUE" x="184.15" y="30.48" size="1.778" layer="96"/>
 </instance>
 </instances>
 <busses>

+ 1 - 1
schematic/regulator.s#7

@@ -6520,7 +6520,7 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <part name="U$1" library="eScooter" deviceset="MAX5035" device="PDIP8" package3d_urn="urn:adsk.eagle:package:22059831/1"/>
 <part name="J4" library="eScooter" deviceset="XT60" device="" value="BATTERY"/>
 <part name="J6" library="eScooter" deviceset="XT60" device="" value="DRIVER POWER"/>
-<part name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" deviceset="FQD13N06LTM" device="" package3d_urn="urn:adsk.eagle:package:10893256/5"/>
+<part name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" deviceset="FQD13N06LTM" device="" package3d_urn="urn:adsk.eagle:package:10893256/5" value="IRFR3607PBF"/>
 </parts>
 <sheets>
 <sheet>

+ 167 - 8
schematic/regulator.s#8

@@ -6352,6 +6352,138 @@ dual in line package'</description>
 </deviceset>
 </devicesets>
 </library>
+<library name="Transistor" urn="urn:adsk.eagle:library:14522416">
+<description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Transistors &lt;/i&gt;&lt;/h3&gt;
+
+Visit us at &lt;a href="http://www.PCBLayout.com"&gt;PCBLayout.com&lt;/a&gt; for quick and hassle-free PCB Layout/Manufacturing ordering experience.
+&lt;BR&gt;
+&lt;BR&gt;
+This library has been generated by our experienced pcb layout engineers using current IPC and/or industry standards. We &lt;b&gt;believe&lt;/b&gt; the content to be accurate, complete and current. But, this content is provided as a courtesy and &lt;u&gt;user assumes all risk and responsiblity of it's usage&lt;/u&gt;.
+&lt;BR&gt;
+&lt;BR&gt;
+Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@PCBLayout.com&lt;/a&gt; if you have any questions/concerns regarding any of our content or services.</description>
+<packages>
+<package name="DPAK3" urn="urn:adsk.eagle:footprint:10893247/4" library_version="1">
+<description>DPAK, 2.29 mm pitch; 3 pin, 6.095 mm L X 6.54 mm W X 2.39 mm H body&lt;p&gt;&lt;i&gt;PCB Libraries Packages&lt;/i&gt;</description>
+<smd name="1" x="-2.29" y="-4.12" dx="3.08" dy="1.31" layer="1" roundness="37" rot="R270"/>
+<smd name="2" x="2.29" y="-4.12" dx="3.08" dy="1.31" layer="1" roundness="37" rot="R270"/>
+<smd name="3" x="0" y="2.51" dx="6.09" dy="5.63" layer="1" roundness="51"/>
+<wire x1="-2.765" y1="-3.3625" x2="-1.815" y2="-3.3625" width="0.025" layer="51"/>
+<wire x1="-1.815" y1="-3.3625" x2="-1.815" y2="-4.9525" width="0.025" layer="51"/>
+<wire x1="-1.815" y1="-4.9525" x2="-2.765" y2="-4.9525" width="0.025" layer="51"/>
+<wire x1="-2.765" y1="-4.9525" x2="-2.765" y2="-3.3625" width="0.025" layer="51"/>
+<wire x1="1.815" y1="-3.3625" x2="2.765" y2="-3.3625" width="0.025" layer="51"/>
+<wire x1="2.765" y1="-3.3625" x2="2.765" y2="-4.9525" width="0.025" layer="51"/>
+<wire x1="2.765" y1="-4.9525" x2="1.815" y2="-4.9525" width="0.025" layer="51"/>
+<wire x1="1.815" y1="-4.9525" x2="1.815" y2="-3.3625" width="0.025" layer="51"/>
+<wire x1="0" y1="-0.35" x2="0" y2="0.35" width="0.05" layer="39"/>
+<wire x1="-0.35" y1="0" x2="0.35" y2="0" width="0.05" layer="39"/>
+<wire x1="-3.37" y1="4.093" x2="-3.37" y2="-2.128" width="0.127" layer="51"/>
+<wire x1="-3.37" y1="-2.128" x2="3.37" y2="-2.128" width="0.127" layer="51"/>
+<wire x1="3.37" y1="-2.128" x2="3.37" y2="4.093" width="0.127" layer="51"/>
+<wire x1="3.37" y1="4.093" x2="-3.37" y2="4.093" width="0.127" layer="51"/>
+<wire x1="-3.37" y1="4.093" x2="-3.37" y2="-2.128" width="0.127" layer="21"/>
+<wire x1="-3.37" y1="-2.128" x2="3.37" y2="-2.128" width="0.127" layer="21"/>
+<wire x1="3.37" y1="-2.128" x2="3.37" y2="4.093" width="0.127" layer="21"/>
+<wire x1="-3.015" y1="4.3" x2="-3.57" y2="4.3" width="0.05" layer="39"/>
+<wire x1="-3.57" y1="4.3" x2="-3.57" y2="-2.33" width="0.05" layer="39"/>
+<wire x1="-3.57" y1="-2.33" x2="-3.145" y2="-2.33" width="0.05" layer="39"/>
+<wire x1="-3.145" y1="-2.33" x2="-3.145" y2="-5.86" width="0.05" layer="39"/>
+<wire x1="-3.145" y1="-5.86" x2="3.145" y2="-5.86" width="0.05" layer="39"/>
+<wire x1="3.145" y1="-5.86" x2="3.145" y2="-2.33" width="0.05" layer="39"/>
+<wire x1="3.145" y1="-2.33" x2="3.57" y2="-2.33" width="0.05" layer="39"/>
+<wire x1="3.57" y1="-2.33" x2="3.57" y2="4.3" width="0.05" layer="39"/>
+<wire x1="3.57" y1="4.3" x2="3.015" y2="4.3" width="0.05" layer="39"/>
+<wire x1="3.015" y1="4.3" x2="3.015" y2="5.755" width="0.05" layer="39"/>
+<wire x1="3.015" y1="5.755" x2="-3.015" y2="5.755" width="0.05" layer="39"/>
+<wire x1="-3.015" y1="5.755" x2="-3.015" y2="4.3" width="0.05" layer="39"/>
+<circle x="0" y="0" radius="0.25" width="0.05" layer="39"/>
+<circle x="-2.54" y="-6.35" radius="0.1" width="0.2" layer="21"/>
+<text x="-3.81" y="7.3375" size="1.2" layer="25" ratio="10">&gt;NAME</text>
+<text x="-3.81" y="-8.89" size="1.2" layer="27" ratio="10">&gt;VALUE</text>
+</package>
+</packages>
+<packages3d>
+<package3d name="DPAK4" urn="urn:adsk.eagle:package:10893256/5" type="model" library_version="1">
+<description>DPAK, 2.29 mm pitch; 3 pin, 6.095 mm L X 6.54 mm W X 2.39 mm H body&lt;p&gt;&lt;i&gt;PCB Libraries Packages&lt;/i&gt;</description>
+<packageinstances>
+<packageinstance name="DPAK3"/>
+</packageinstances>
+</package3d>
+</packages3d>
+<symbols>
+<symbol name="MOSFET_N" urn="urn:adsk.eagle:symbol:14521946/1" library_version="1">
+<wire x1="-1.016" y1="2.54" x2="-1.016" y2="-2.54" width="0.254" layer="94"/>
+<wire x1="-1.016" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
+<wire x1="2.54" y1="2.54" x2="2.54" y2="2.159" width="0.1524" layer="94"/>
+<wire x1="0.508" y1="-2.159" x2="2.54" y2="-2.159" width="0.1524" layer="94"/>
+<wire x1="2.54" y1="-2.159" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
+<wire x1="0.381" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
+<wire x1="3.302" y1="0.508" x2="3.81" y2="0.508" width="0.1524" layer="94"/>
+<wire x1="3.81" y1="0.508" x2="4.318" y2="0.508" width="0.1524" layer="94"/>
+<wire x1="3.81" y1="2.159" x2="2.54" y2="2.159" width="0.1524" layer="94"/>
+<wire x1="2.54" y1="2.159" x2="0.5334" y2="2.159" width="0.1524" layer="94"/>
+<wire x1="3.81" y1="0.508" x2="3.81" y2="2.159" width="0.1524" layer="94"/>
+<wire x1="3.81" y1="-2.159" x2="3.81" y2="-0.127" width="0.1524" layer="94"/>
+<wire x1="3.81" y1="-2.159" x2="2.54" y2="-2.159" width="0.1524" layer="94"/>
+<wire x1="2.54" y1="0" x2="2.54" y2="-2.159" width="0.1524" layer="94"/>
+<circle x="2.54" y="2.159" radius="0.127" width="0.4064" layer="94"/>
+<circle x="2.54" y="-2.159" radius="0.127" width="0.4064" layer="94"/>
+<text x="-8.89" y="5.08" size="1.778" layer="95">&gt;NAME</text>
+<text x="-11.43" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
+<text x="1.397" y="3.556" size="0.8128" layer="93">D</text>
+<text x="1.397" y="-4.318" size="0.8128" layer="93">S</text>
+<text x="-2.286" y="-1.778" size="0.8128" layer="93">G</text>
+<rectangle x1="-0.254" y1="-2.794" x2="0.508" y2="-1.27" layer="94"/>
+<rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.794" layer="94"/>
+<rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
+<pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
+<pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
+<pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
+<polygon width="0.1524" layer="94">
+<vertex x="3.81" y="0.508"/>
+<vertex x="3.302" y="-0.254"/>
+<vertex x="4.318" y="-0.254"/>
+</polygon>
+<polygon width="0.1524" layer="94">
+<vertex x="0.635" y="0"/>
+<vertex x="1.905" y="-0.508"/>
+<vertex x="1.905" y="0.508"/>
+</polygon>
+</symbol>
+</symbols>
+<devicesets>
+<deviceset name="FQD13N06LTM" urn="urn:adsk.eagle:component:14521953/3" prefix="Q" library_version="1">
+<description>&lt;h3&gt; MOSFET N-CH 60V 11A DPAK &lt;/h3&gt;
+&lt;BR&gt;
+&lt;a href="https://www.onsemi.com/pub/Collateral/FQU13N06L-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
+<gates>
+<gate name="G$1" symbol="MOSFET_N" x="0" y="0"/>
+</gates>
+<devices>
+<device name="" package="DPAK3">
+<connects>
+<connect gate="G$1" pin="D" pad="3"/>
+<connect gate="G$1" pin="G" pad="1"/>
+<connect gate="G$1" pin="S" pad="2"/>
+</connects>
+<package3dinstances>
+<package3dinstance package3d_urn="urn:adsk.eagle:package:10893256/5"/>
+</package3dinstances>
+<technologies>
+<technology name="">
+<attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
+<attribute name="DIGIKEY_PART_NUMBER" value="FQD13N06LTMCT-ND" constant="no"/>
+<attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
+<attribute name="MPN" value="FQD13N06LTM" constant="no"/>
+<attribute name="PACKAGE" value="DPAK-4" constant="no"/>
+</technology>
+</technologies>
+</device>
+</devices>
+</deviceset>
+</devicesets>
+</library>
 </libraries>
 <attributes>
 </attributes>
@@ -6388,6 +6520,7 @@ dual in line package'</description>
 <part name="U$1" library="eScooter" deviceset="MAX5035" device="PDIP8" package3d_urn="urn:adsk.eagle:package:22059831/1"/>
 <part name="J4" library="eScooter" deviceset="XT60" device="" value="BATTERY"/>
 <part name="J6" library="eScooter" deviceset="XT60" device="" value="DRIVER POWER"/>
+<part name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" deviceset="FQD13N06LTM" device="" package3d_urn="urn:adsk.eagle:package:10893256/5"/>
 </parts>
 <sheets>
 <sheet>
@@ -6489,9 +6622,13 @@ dual in line package'</description>
 <attribute name="NAME" x="213.36" y="121.92" size="1.778" layer="95"/>
 <attribute name="VALUE" x="213.36" y="111.76" size="1.778" layer="96"/>
 </instance>
-<instance part="J6" gate="G$1" x="215.9" y="10.16" smashed="yes">
-<attribute name="NAME" x="213.36" y="17.78" size="1.778" layer="95"/>
-<attribute name="VALUE" x="210.82" y="7.62" size="1.778" layer="96"/>
+<instance part="J6" gate="G$1" x="213.36" y="43.18" smashed="yes">
+<attribute name="NAME" x="210.82" y="50.8" size="1.778" layer="95"/>
+<attribute name="VALUE" x="208.28" y="40.64" size="1.778" layer="96"/>
+</instance>
+<instance part="Q4" gate="G$1" x="185.42" y="38.1" smashed="yes">
+<attribute name="NAME" x="176.53" y="43.18" size="1.778" layer="95"/>
+<attribute name="VALUE" x="173.99" y="30.48" size="1.778" layer="96"/>
 </instance>
 </instances>
 <busses>
@@ -6552,14 +6689,15 @@ dual in line package'</description>
 <wire x1="78.74" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
 <junction x="91.44" y="66.04"/>
 <wire x1="48.26" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
-<wire x1="78.74" y1="7.62" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
+<wire x1="78.74" y1="7.62" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
 <pinref part="R8" gate="G$1" pin="2"/>
 <wire x1="5.08" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
 <junction x="5.08" y="55.88"/>
 <wire x1="200.66" y1="119.38" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
 <junction x="200.66" y="132.08"/>
-<wire x1="223.52" y1="132.08" x2="223.52" y2="33.02" width="0.1524" layer="91"/>
-<wire x1="223.52" y1="33.02" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
+<wire x1="223.52" y1="132.08" x2="223.52" y2="12.7" width="0.1524" layer="91"/>
+<wire x1="223.52" y1="12.7" x2="190.5" y2="12.7" width="0.1524" layer="91"/>
+<wire x1="187.96" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
 <wire x1="116.84" y1="99.06" x2="101.6" y2="99.06" width="0.1524" layer="91"/>
 <wire x1="101.6" y1="99.06" x2="101.6" y2="104.14" width="0.1524" layer="91"/>
 <wire x1="101.6" y1="104.14" x2="104.14" y2="104.14" width="0.1524" layer="91"/>
@@ -6568,14 +6706,17 @@ dual in line package'</description>
 <junction x="101.6" y="99.06"/>
 <junction x="101.6" y="66.04"/>
 <label x="111.76" y="99.06" size="1.778" layer="95"/>
-<wire x1="78.74" y1="66.04" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
+<wire x1="78.74" y1="66.04" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
 <junction x="78.74" y="66.04"/>
-<junction x="78.74" y="33.02"/>
+<junction x="78.74" y="12.7"/>
 <pinref part="C4" gate="G$1" pin="P$2"/>
 <pinref part="U$1" gate="G$1" pin="SGND"/>
 <pinref part="U$1" gate="G$1" pin="GND"/>
 <pinref part="J4" gate="G$1" pin="P$1"/>
 <wire x1="200.66" y1="119.38" x2="210.82" y2="119.38" width="0.1524" layer="91"/>
+<pinref part="Q4" gate="G$1" pin="S"/>
+<wire x1="187.96" y1="33.02" x2="187.96" y2="12.7" width="0.1524" layer="91"/>
+<wire x1="187.96" y1="12.7" x2="190.5" y2="12.7" width="0.1524" layer="91"/>
 </segment>
 </net>
 <net name="VIN" class="0">
@@ -6603,6 +6744,11 @@ dual in line package'</description>
 <pinref part="J4" gate="G$1" pin="P$2"/>
 <wire x1="210.82" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
 </segment>
+<segment>
+<pinref part="J6" gate="G$1" pin="P$2"/>
+<wire x1="208.28" y1="45.72" x2="203.2" y2="45.72" width="0.1524" layer="91"/>
+<label x="203.2" y="43.18" size="1.778" layer="95"/>
+</segment>
 </net>
 <net name="N$1" class="0">
 <segment>
@@ -6764,6 +6910,11 @@ dual in line package'</description>
 <wire x1="50.8" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
 <label x="45.72" y="111.76" size="1.778" layer="95"/>
 </segment>
+<segment>
+<pinref part="Q4" gate="G$1" pin="G"/>
+<wire x1="182.88" y1="35.56" x2="170.18" y2="35.56" width="0.1524" layer="91"/>
+<label x="170.18" y="35.56" size="1.778" layer="95"/>
+</segment>
 </net>
 <net name="BAT" class="0">
 <segment>
@@ -6801,6 +6952,14 @@ dual in line package'</description>
 <pinref part="R7" gate="G$1" pin="2"/>
 </segment>
 </net>
+<net name="P$1" class="0">
+<segment>
+<pinref part="J6" gate="G$1" pin="P$1"/>
+<wire x1="208.28" y1="48.26" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
+<pinref part="Q4" gate="G$1" pin="D"/>
+<wire x1="187.96" y1="48.26" x2="187.96" y2="43.18" width="0.1524" layer="91"/>
+</segment>
+</net>
 </nets>
 </sheet>
 </sheets>

+ 2 - 2
schematic/regulator.s#9

@@ -6490,8 +6490,8 @@ dual in line package'</description>
 <attribute name="VALUE" x="213.36" y="111.76" size="1.778" layer="96"/>
 </instance>
 <instance part="J6" gate="G$1" x="215.9" y="10.16" smashed="yes">
-<attribute name="NAME" x="210.82" y="20.32" size="1.778" layer="95"/>
-<attribute name="VALUE" x="210.82" y="5.08" size="1.778" layer="96"/>
+<attribute name="NAME" x="213.36" y="17.78" size="1.778" layer="95"/>
+<attribute name="VALUE" x="210.82" y="7.62" size="1.778" layer="96"/>
 </instance>
 </instances>
 <busses>

+ 63 - 27
schematic/regulator.sch

@@ -6521,6 +6521,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <part name="J4" library="eScooter" deviceset="XT60" device="" value="BATTERY"/>
 <part name="J6" library="eScooter" deviceset="XT60" device="" value="DRIVER POWER"/>
 <part name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" deviceset="FQD13N06LTM" device="" package3d_urn="urn:adsk.eagle:package:10893256/5" value="IRFR3607PBF"/>
+<part name="R9" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K"/>
+<part name="R10" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K"/>
+<part name="R11" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
 </parts>
 <sheets>
 <sheet>
@@ -6543,9 +6546,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <attribute name="NAME" x="106.68" y="104.14" size="1.778" layer="95" rot="R90"/>
 <attribute name="VALUE" x="111.76" y="104.14" size="1.778" layer="96" rot="R90"/>
 </instance>
-<instance part="C3" gate="G$1" x="91.44" y="119.38" smashed="yes">
-<attribute name="NAME" x="92.583" y="119.8626" size="1.778" layer="95"/>
-<attribute name="VALUE" x="92.583" y="114.7826" size="1.778" layer="96"/>
+<instance part="C3" gate="G$1" x="83.82" y="119.38" smashed="yes">
+<attribute name="NAME" x="84.963" y="119.8626" size="1.778" layer="95"/>
+<attribute name="VALUE" x="84.963" y="114.7826" size="1.778" layer="96"/>
 </instance>
 <instance part="R1" gate="G$1" x="182.88" y="101.6" smashed="yes" rot="R270">
 <attribute name="NAME" x="179.2986" y="100.33" size="1.778" layer="95" rot="MR90"/>
@@ -6603,8 +6606,8 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <attribute name="NAME" x="23.9014" y="82.55" size="1.778" layer="95" rot="R90"/>
 <attribute name="VALUE" x="28.702" y="82.55" size="1.778" layer="96" rot="R90"/>
 </instance>
-<instance part="D2" gate="D$1" x="78.74" y="116.84" smashed="yes">
-<attribute name="NAME" x="81.28" y="121.92" size="1.778" layer="95"/>
+<instance part="D2" gate="D$1" x="73.66" y="116.84" smashed="yes">
+<attribute name="NAME" x="76.2" y="121.92" size="1.778" layer="95"/>
 </instance>
 <instance part="R8" gate="G$1" x="30.48" y="55.88" smashed="yes" rot="MR0">
 <attribute name="NAME" x="34.29" y="57.3786" size="1.778" layer="95" rot="MR0"/>
@@ -6630,6 +6633,18 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <attribute name="NAME" x="184.15" y="43.18" size="1.778" layer="95"/>
 <attribute name="VALUE" x="184.15" y="30.48" size="1.778" layer="96"/>
 </instance>
+<instance part="R9" gate="G$1" x="93.98" y="121.92" smashed="yes" rot="R270">
+<attribute name="NAME" x="90.3986" y="120.65" size="1.778" layer="95" rot="MR90"/>
+<attribute name="VALUE" x="95.758" y="120.65" size="1.778" layer="96" rot="MR90"/>
+</instance>
+<instance part="R10" gate="G$1" x="93.98" y="109.22" smashed="yes" rot="R270">
+<attribute name="NAME" x="90.3986" y="107.95" size="1.778" layer="95" rot="MR90"/>
+<attribute name="VALUE" x="95.758" y="107.95" size="1.778" layer="96" rot="MR90"/>
+</instance>
+<instance part="R11" gate="G$1" x="93.98" y="83.82" smashed="yes" rot="R270">
+<attribute name="NAME" x="90.3986" y="82.55" size="1.778" layer="95" rot="MR90"/>
+<attribute name="VALUE" x="95.758" y="82.55" size="1.778" layer="96" rot="MR90"/>
+</instance>
 </instances>
 <busses>
 </busses>
@@ -6670,8 +6685,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <pinref part="C3" gate="G$1" pin="-"/>
 <wire x1="187.96" y1="66.04" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
 <wire x1="160.02" y1="66.04" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
-<wire x1="101.6" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
-<wire x1="91.44" y1="66.04" x2="91.44" y2="114.3" width="0.1524" layer="91"/>
+<wire x1="101.6" y1="66.04" x2="93.98" y2="66.04" width="0.1524" layer="91"/>
+<wire x1="93.98" y1="66.04" x2="83.82" y2="66.04" width="0.1524" layer="91"/>
+<wire x1="83.82" y1="66.04" x2="83.82" y2="114.3" width="0.1524" layer="91"/>
 <pinref part="D1" gate="G$1" pin="A"/>
 <wire x1="152.4" y1="132.08" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
 <wire x1="200.66" y1="132.08" x2="223.52" y2="132.08" width="0.1524" layer="91"/>
@@ -6685,10 +6701,10 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <junction x="160.02" y="66.04"/>
 <label x="203.2" y="119.38" size="1.778" layer="95"/>
 <pinref part="D2" gate="D$1" pin="P$2"/>
-<wire x1="78.74" y1="109.22" x2="78.74" y2="66.04" width="0.1524" layer="91"/>
-<wire x1="78.74" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
-<junction x="91.44" y="66.04"/>
-<wire x1="48.26" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
+<wire x1="73.66" y1="109.22" x2="73.66" y2="66.04" width="0.1524" layer="91"/>
+<wire x1="73.66" y1="66.04" x2="83.82" y2="66.04" width="0.1524" layer="91"/>
+<junction x="83.82" y="66.04"/>
+<wire x1="48.26" y1="7.62" x2="73.66" y2="7.62" width="0.1524" layer="91"/>
 <pinref part="R8" gate="G$1" pin="2"/>
 <wire x1="5.08" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
 <junction x="5.08" y="55.88"/>
@@ -6696,7 +6712,7 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <junction x="200.66" y="132.08"/>
 <wire x1="223.52" y1="132.08" x2="223.52" y2="7.62" width="0.1524" layer="91"/>
 <wire x1="223.52" y1="7.62" x2="187.96" y2="7.62" width="0.1524" layer="91"/>
-<wire x1="187.96" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
+<wire x1="187.96" y1="7.62" x2="73.66" y2="7.62" width="0.1524" layer="91"/>
 <wire x1="116.84" y1="99.06" x2="101.6" y2="99.06" width="0.1524" layer="91"/>
 <wire x1="101.6" y1="99.06" x2="101.6" y2="104.14" width="0.1524" layer="91"/>
 <wire x1="101.6" y1="104.14" x2="104.14" y2="104.14" width="0.1524" layer="91"/>
@@ -6705,9 +6721,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <junction x="101.6" y="99.06"/>
 <junction x="101.6" y="66.04"/>
 <label x="111.76" y="99.06" size="1.778" layer="95"/>
-<wire x1="78.74" y1="66.04" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
-<junction x="78.74" y="66.04"/>
-<junction x="78.74" y="7.62"/>
+<wire x1="73.66" y1="66.04" x2="73.66" y2="7.62" width="0.1524" layer="91"/>
+<junction x="73.66" y="66.04"/>
+<junction x="73.66" y="7.62"/>
 <pinref part="C4" gate="G$1" pin="P$2"/>
 <pinref part="U$1" gate="G$1" pin="SGND"/>
 <pinref part="U$1" gate="G$1" pin="GND"/>
@@ -6715,6 +6731,9 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <wire x1="200.66" y1="119.38" x2="210.82" y2="119.38" width="0.1524" layer="91"/>
 <pinref part="Q4" gate="G$1" pin="S"/>
 <wire x1="187.96" y1="33.02" x2="187.96" y2="7.62" width="0.1524" layer="91"/>
+<pinref part="R11" gate="G$1" pin="2"/>
+<wire x1="93.98" y1="78.74" x2="93.98" y2="66.04" width="0.1524" layer="91"/>
+<junction x="93.98" y="66.04"/>
 </segment>
 </net>
 <net name="VIN" class="0">
@@ -6777,25 +6796,24 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <net name="12V" class="0">
 <segment>
 <pinref part="L1" gate="G$1" pin="2"/>
-<wire x1="111.76" y1="132.08" x2="99.06" y2="132.08" width="0.1524" layer="91"/>
-<wire x1="99.06" y1="132.08" x2="99.06" y2="93.98" width="0.1524" layer="91"/>
-<wire x1="99.06" y1="93.98" x2="116.84" y2="93.98" width="0.1524" layer="91"/>
-<wire x1="99.06" y1="132.08" x2="91.44" y2="132.08" width="0.1524" layer="91"/>
-<junction x="99.06" y="132.08"/>
-<wire x1="91.44" y1="132.08" x2="91.44" y2="121.92" width="0.1524" layer="91"/>
-<junction x="91.44" y="132.08"/>
+<wire x1="111.76" y1="132.08" x2="93.98" y2="132.08" width="0.1524" layer="91"/>
+<wire x1="93.98" y1="132.08" x2="83.82" y2="132.08" width="0.1524" layer="91"/>
+<wire x1="83.82" y1="132.08" x2="83.82" y2="121.92" width="0.1524" layer="91"/>
+<junction x="83.82" y="132.08"/>
 <pinref part="C3" gate="G$1" pin="+"/>
 <label x="86.36" y="132.08" size="1.778" layer="95"/>
 <pinref part="J1" gate="G$1" pin="1"/>
 <wire x1="50.8" y1="119.38" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
 <label x="45.72" y="119.38" size="1.778" layer="95"/>
-<wire x1="91.44" y1="132.08" x2="78.74" y2="132.08" width="0.1524" layer="91"/>
-<wire x1="78.74" y1="132.08" x2="40.64" y2="132.08" width="0.1524" layer="91"/>
+<wire x1="83.82" y1="132.08" x2="73.66" y2="132.08" width="0.1524" layer="91"/>
+<wire x1="73.66" y1="132.08" x2="40.64" y2="132.08" width="0.1524" layer="91"/>
 <wire x1="40.64" y1="132.08" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
 <pinref part="D2" gate="D$1" pin="P$1"/>
-<wire x1="78.74" y1="132.08" x2="78.74" y2="124.46" width="0.1524" layer="91"/>
-<junction x="78.74" y="132.08"/>
-<pinref part="U$1" gate="G$1" pin="FB"/>
+<wire x1="73.66" y1="132.08" x2="73.66" y2="124.46" width="0.1524" layer="91"/>
+<junction x="73.66" y="132.08"/>
+<pinref part="R9" gate="G$1" pin="1"/>
+<wire x1="93.98" y1="132.08" x2="93.98" y2="127" width="0.1524" layer="91"/>
+<junction x="93.98" y="132.08"/>
 </segment>
 </net>
 <net name="N$4" class="0">
@@ -6958,6 +6976,24 @@ Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@
 <wire x1="187.96" y1="48.26" x2="187.96" y2="43.18" width="0.1524" layer="91"/>
 </segment>
 </net>
+<net name="N$6" class="0">
+<segment>
+<pinref part="R10" gate="G$1" pin="1"/>
+<pinref part="R9" gate="G$1" pin="2"/>
+<wire x1="93.98" y1="114.3" x2="93.98" y2="116.84" width="0.1524" layer="91"/>
+</segment>
+</net>
+<net name="N$9" class="0">
+<segment>
+<pinref part="U$1" gate="G$1" pin="FB"/>
+<wire x1="116.84" y1="93.98" x2="93.98" y2="93.98" width="0.1524" layer="91"/>
+<pinref part="R11" gate="G$1" pin="1"/>
+<wire x1="93.98" y1="93.98" x2="93.98" y2="88.9" width="0.1524" layer="91"/>
+<pinref part="R10" gate="G$1" pin="2"/>
+<wire x1="93.98" y1="93.98" x2="93.98" y2="104.14" width="0.1524" layer="91"/>
+<junction x="93.98" y="93.98"/>
+</segment>
+</net>
 </nets>
 </sheet>
 </sheets>

BIN
schematic/regulator_schematic.pdf