Power_USB.kicad_sch 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid ab0ea55a-63b3-4ece-836d-2844713a821f)
  3. (paper "A4")
  4. (title_block
  5. (title "Greaseweazle F7 Lighting, USB PD")
  6. (date "2022-04-04")
  7. (rev "1.03")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  12. (property "Reference" "J" (id 0) (at 0 5.08 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Value" "Conn_01x04" (id 1) (at 0 -7.62 0)
  16. (effects (font (size 1.27 1.27)))
  17. )
  18. (property "Footprint" "" (id 2) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "Datasheet" "~" (id 3) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (symbol "Conn_01x04_1_1"
  34. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  35. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  36. (fill (type none))
  37. )
  38. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  39. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  40. (fill (type none))
  41. )
  42. (rectangle (start -1.27 0.127) (end 0 -0.127)
  43. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  44. (fill (type none))
  45. )
  46. (rectangle (start -1.27 2.667) (end 0 2.413)
  47. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  48. (fill (type none))
  49. )
  50. (rectangle (start -1.27 3.81) (end 1.27 -6.35)
  51. (stroke (width 0.254) (type default) (color 0 0 0 0))
  52. (fill (type background))
  53. )
  54. (pin passive line (at -5.08 2.54 0) (length 3.81)
  55. (name "Pin_1" (effects (font (size 1.27 1.27))))
  56. (number "1" (effects (font (size 1.27 1.27))))
  57. )
  58. (pin passive line (at -5.08 0 0) (length 3.81)
  59. (name "Pin_2" (effects (font (size 1.27 1.27))))
  60. (number "2" (effects (font (size 1.27 1.27))))
  61. )
  62. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  63. (name "Pin_3" (effects (font (size 1.27 1.27))))
  64. (number "3" (effects (font (size 1.27 1.27))))
  65. )
  66. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  67. (name "Pin_4" (effects (font (size 1.27 1.27))))
  68. (number "4" (effects (font (size 1.27 1.27))))
  69. )
  70. )
  71. )
  72. (symbol "Connector_Generic:Conn_02x06_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  73. (property "Reference" "J" (id 0) (at 1.27 7.62 0)
  74. (effects (font (size 1.27 1.27)))
  75. )
  76. (property "Value" "Conn_02x06_Odd_Even" (id 1) (at 1.27 -10.16 0)
  77. (effects (font (size 1.27 1.27)))
  78. )
  79. (property "Footprint" "" (id 2) (at 0 0 0)
  80. (effects (font (size 1.27 1.27)) hide)
  81. )
  82. (property "Datasheet" "~" (id 3) (at 0 0 0)
  83. (effects (font (size 1.27 1.27)) hide)
  84. )
  85. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  86. (effects (font (size 1.27 1.27)) hide)
  87. )
  88. (property "ki_description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  89. (effects (font (size 1.27 1.27)) hide)
  90. )
  91. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  92. (effects (font (size 1.27 1.27)) hide)
  93. )
  94. (symbol "Conn_02x06_Odd_Even_1_1"
  95. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  96. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  97. (fill (type none))
  98. )
  99. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  100. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  101. (fill (type none))
  102. )
  103. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  104. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  105. (fill (type none))
  106. )
  107. (rectangle (start -1.27 0.127) (end 0 -0.127)
  108. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  109. (fill (type none))
  110. )
  111. (rectangle (start -1.27 2.667) (end 0 2.413)
  112. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  113. (fill (type none))
  114. )
  115. (rectangle (start -1.27 5.207) (end 0 4.953)
  116. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  117. (fill (type none))
  118. )
  119. (rectangle (start -1.27 6.35) (end 3.81 -8.89)
  120. (stroke (width 0.254) (type default) (color 0 0 0 0))
  121. (fill (type background))
  122. )
  123. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  124. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  125. (fill (type none))
  126. )
  127. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  128. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  129. (fill (type none))
  130. )
  131. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  132. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  133. (fill (type none))
  134. )
  135. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  136. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  137. (fill (type none))
  138. )
  139. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  140. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  141. (fill (type none))
  142. )
  143. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  144. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  145. (fill (type none))
  146. )
  147. (pin passive line (at -5.08 5.08 0) (length 3.81)
  148. (name "Pin_1" (effects (font (size 1.27 1.27))))
  149. (number "1" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  152. (name "Pin_10" (effects (font (size 1.27 1.27))))
  153. (number "10" (effects (font (size 1.27 1.27))))
  154. )
  155. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  156. (name "Pin_11" (effects (font (size 1.27 1.27))))
  157. (number "11" (effects (font (size 1.27 1.27))))
  158. )
  159. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  160. (name "Pin_12" (effects (font (size 1.27 1.27))))
  161. (number "12" (effects (font (size 1.27 1.27))))
  162. )
  163. (pin passive line (at 7.62 5.08 180) (length 3.81)
  164. (name "Pin_2" (effects (font (size 1.27 1.27))))
  165. (number "2" (effects (font (size 1.27 1.27))))
  166. )
  167. (pin passive line (at -5.08 2.54 0) (length 3.81)
  168. (name "Pin_3" (effects (font (size 1.27 1.27))))
  169. (number "3" (effects (font (size 1.27 1.27))))
  170. )
  171. (pin passive line (at 7.62 2.54 180) (length 3.81)
  172. (name "Pin_4" (effects (font (size 1.27 1.27))))
  173. (number "4" (effects (font (size 1.27 1.27))))
  174. )
  175. (pin passive line (at -5.08 0 0) (length 3.81)
  176. (name "Pin_5" (effects (font (size 1.27 1.27))))
  177. (number "5" (effects (font (size 1.27 1.27))))
  178. )
  179. (pin passive line (at 7.62 0 180) (length 3.81)
  180. (name "Pin_6" (effects (font (size 1.27 1.27))))
  181. (number "6" (effects (font (size 1.27 1.27))))
  182. )
  183. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  184. (name "Pin_7" (effects (font (size 1.27 1.27))))
  185. (number "7" (effects (font (size 1.27 1.27))))
  186. )
  187. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  188. (name "Pin_8" (effects (font (size 1.27 1.27))))
  189. (number "8" (effects (font (size 1.27 1.27))))
  190. )
  191. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  192. (name "Pin_9" (effects (font (size 1.27 1.27))))
  193. (number "9" (effects (font (size 1.27 1.27))))
  194. )
  195. )
  196. )
  197. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  198. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  199. (effects (font (size 1.27 1.27)) (justify left))
  200. )
  201. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  202. (effects (font (size 1.27 1.27)) (justify left))
  203. )
  204. (property "Footprint" "" (id 2) (at 0 0 0)
  205. (effects (font (size 1.27 1.27)) hide)
  206. )
  207. (property "Datasheet" "~" (id 3) (at 0 0 0)
  208. (effects (font (size 1.27 1.27)) hide)
  209. )
  210. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  211. (effects (font (size 1.27 1.27)) hide)
  212. )
  213. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  214. (effects (font (size 1.27 1.27)) hide)
  215. )
  216. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  217. (effects (font (size 1.27 1.27)) hide)
  218. )
  219. (symbol "C_Small_0_1"
  220. (polyline
  221. (pts
  222. (xy -1.524 -0.508)
  223. (xy 1.524 -0.508)
  224. )
  225. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  226. (fill (type none))
  227. )
  228. (polyline
  229. (pts
  230. (xy -1.524 0.508)
  231. (xy 1.524 0.508)
  232. )
  233. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  234. (fill (type none))
  235. )
  236. )
  237. (symbol "C_Small_1_1"
  238. (pin passive line (at 0 2.54 270) (length 2.032)
  239. (name "~" (effects (font (size 1.27 1.27))))
  240. (number "1" (effects (font (size 1.27 1.27))))
  241. )
  242. (pin passive line (at 0 -2.54 90) (length 2.032)
  243. (name "~" (effects (font (size 1.27 1.27))))
  244. (number "2" (effects (font (size 1.27 1.27))))
  245. )
  246. )
  247. )
  248. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  249. (property "Reference" "D" (id 0) (at 0 2.54 0)
  250. (effects (font (size 1.27 1.27)))
  251. )
  252. (property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
  253. (effects (font (size 1.27 1.27)))
  254. )
  255. (property "Footprint" "" (id 2) (at 0 0 0)
  256. (effects (font (size 1.27 1.27)) hide)
  257. )
  258. (property "Datasheet" "~" (id 3) (at 0 0 0)
  259. (effects (font (size 1.27 1.27)) hide)
  260. )
  261. (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
  262. (effects (font (size 1.27 1.27)) hide)
  263. )
  264. (property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
  265. (effects (font (size 1.27 1.27)) hide)
  266. )
  267. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  268. (effects (font (size 1.27 1.27)) hide)
  269. )
  270. (symbol "D_Schottky_0_1"
  271. (polyline
  272. (pts
  273. (xy 1.27 0)
  274. (xy -1.27 0)
  275. )
  276. (stroke (width 0) (type default) (color 0 0 0 0))
  277. (fill (type none))
  278. )
  279. (polyline
  280. (pts
  281. (xy 1.27 1.27)
  282. (xy 1.27 -1.27)
  283. (xy -1.27 0)
  284. (xy 1.27 1.27)
  285. )
  286. (stroke (width 0.254) (type default) (color 0 0 0 0))
  287. (fill (type none))
  288. )
  289. (polyline
  290. (pts
  291. (xy -1.905 0.635)
  292. (xy -1.905 1.27)
  293. (xy -1.27 1.27)
  294. (xy -1.27 -1.27)
  295. (xy -0.635 -1.27)
  296. (xy -0.635 -0.635)
  297. )
  298. (stroke (width 0.254) (type default) (color 0 0 0 0))
  299. (fill (type none))
  300. )
  301. )
  302. (symbol "D_Schottky_1_1"
  303. (pin passive line (at -3.81 0 0) (length 2.54)
  304. (name "K" (effects (font (size 1.27 1.27))))
  305. (number "1" (effects (font (size 1.27 1.27))))
  306. )
  307. (pin passive line (at 3.81 0 180) (length 2.54)
  308. (name "A" (effects (font (size 1.27 1.27))))
  309. (number "2" (effects (font (size 1.27 1.27))))
  310. )
  311. )
  312. )
  313. (symbol "Device:Polyfuse_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  314. (property "Reference" "F" (id 0) (at -1.905 0 90)
  315. (effects (font (size 1.27 1.27)))
  316. )
  317. (property "Value" "Polyfuse_Small" (id 1) (at 1.905 0 90)
  318. (effects (font (size 1.27 1.27)))
  319. )
  320. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  321. (effects (font (size 1.27 1.27)) (justify left) hide)
  322. )
  323. (property "Datasheet" "~" (id 3) (at 0 0 0)
  324. (effects (font (size 1.27 1.27)) hide)
  325. )
  326. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  327. (effects (font (size 1.27 1.27)) hide)
  328. )
  329. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient, small symbol" (id 5) (at 0 0 0)
  330. (effects (font (size 1.27 1.27)) hide)
  331. )
  332. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  333. (effects (font (size 1.27 1.27)) hide)
  334. )
  335. (symbol "Polyfuse_Small_0_1"
  336. (rectangle (start -0.508 1.27) (end 0.508 -1.27)
  337. (stroke (width 0) (type default) (color 0 0 0 0))
  338. (fill (type none))
  339. )
  340. (polyline
  341. (pts
  342. (xy 0 2.54)
  343. (xy 0 -2.54)
  344. )
  345. (stroke (width 0) (type default) (color 0 0 0 0))
  346. (fill (type none))
  347. )
  348. (polyline
  349. (pts
  350. (xy -1.016 1.27)
  351. (xy -1.016 0.762)
  352. (xy 1.016 -0.762)
  353. (xy 1.016 -1.27)
  354. )
  355. (stroke (width 0) (type default) (color 0 0 0 0))
  356. (fill (type none))
  357. )
  358. )
  359. (symbol "Polyfuse_Small_1_1"
  360. (pin passive line (at 0 2.54 270) (length 0.635)
  361. (name "~" (effects (font (size 1.27 1.27))))
  362. (number "1" (effects (font (size 1.27 1.27))))
  363. )
  364. (pin passive line (at 0 -2.54 90) (length 0.635)
  365. (name "~" (effects (font (size 1.27 1.27))))
  366. (number "2" (effects (font (size 1.27 1.27))))
  367. )
  368. )
  369. )
  370. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  371. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  372. (effects (font (size 1.27 1.27)) (justify left))
  373. )
  374. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  375. (effects (font (size 1.27 1.27)) (justify left))
  376. )
  377. (property "Footprint" "" (id 2) (at 0 0 0)
  378. (effects (font (size 1.27 1.27)) hide)
  379. )
  380. (property "Datasheet" "~" (id 3) (at 0 0 0)
  381. (effects (font (size 1.27 1.27)) hide)
  382. )
  383. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  384. (effects (font (size 1.27 1.27)) hide)
  385. )
  386. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  387. (effects (font (size 1.27 1.27)) hide)
  388. )
  389. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  390. (effects (font (size 1.27 1.27)) hide)
  391. )
  392. (symbol "R_Small_0_1"
  393. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  394. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  395. (fill (type none))
  396. )
  397. )
  398. (symbol "R_Small_1_1"
  399. (pin passive line (at 0 2.54 270) (length 0.762)
  400. (name "~" (effects (font (size 1.27 1.27))))
  401. (number "1" (effects (font (size 1.27 1.27))))
  402. )
  403. (pin passive line (at 0 -2.54 90) (length 0.762)
  404. (name "~" (effects (font (size 1.27 1.27))))
  405. (number "2" (effects (font (size 1.27 1.27))))
  406. )
  407. )
  408. )
  409. (symbol "Greaseweazle:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  410. (property "Reference" "USB" (id 0) (at -5.08 16.51 0)
  411. (effects (font (size 1.524 1.524)))
  412. )
  413. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at -10.16 -1.27 90)
  414. (effects (font (size 1.524 1.524)))
  415. )
  416. (property "Footprint" "" (id 2) (at 0 0 0)
  417. (effects (font (size 1.524 1.524)) hide)
  418. )
  419. (property "Datasheet" "" (id 3) (at 0 0 0)
  420. (effects (font (size 1.524 1.524)) hide)
  421. )
  422. (symbol "HRO-TYPE-C-31-M-12_0_1"
  423. (rectangle (start -11.43 15.24) (end -8.89 -17.78)
  424. (stroke (width 0) (type default) (color 0 0 0 0))
  425. (fill (type background))
  426. )
  427. (rectangle (start 0 -17.78) (end -8.89 15.24)
  428. (stroke (width 0) (type default) (color 0 0 0 0))
  429. (fill (type background))
  430. )
  431. )
  432. (symbol "HRO-TYPE-C-31-M-12_1_1"
  433. (pin input line (at 2.54 13.97 180) (length 2.54)
  434. (name "GND" (effects (font (size 1.27 1.27))))
  435. (number "1" (effects (font (size 1.27 1.27))))
  436. )
  437. (pin input line (at 2.54 -8.89 180) (length 2.54)
  438. (name "CC2" (effects (font (size 1.27 1.27))))
  439. (number "10" (effects (font (size 1.27 1.27))))
  440. )
  441. (pin input line (at 2.54 -11.43 180) (length 2.54)
  442. (name "VBUS" (effects (font (size 1.27 1.27))))
  443. (number "11" (effects (font (size 1.27 1.27))))
  444. )
  445. (pin input line (at 2.54 -13.97 180) (length 2.54)
  446. (name "GND" (effects (font (size 1.27 1.27))))
  447. (number "12" (effects (font (size 1.27 1.27))))
  448. )
  449. (pin input line (at 2.54 -16.51 180) (length 2.54)
  450. (name "SHIELD" (effects (font (size 1.27 1.27))))
  451. (number "13" (effects (font (size 1.27 1.27))))
  452. )
  453. (pin input line (at 2.54 11.43 180) (length 2.54)
  454. (name "VBUS" (effects (font (size 1.27 1.27))))
  455. (number "2" (effects (font (size 1.27 1.27))))
  456. )
  457. (pin input line (at 2.54 8.89 180) (length 2.54)
  458. (name "SBU2" (effects (font (size 1.27 1.27))))
  459. (number "3" (effects (font (size 1.27 1.27))))
  460. )
  461. (pin input line (at 2.54 6.35 180) (length 2.54)
  462. (name "CC1" (effects (font (size 1.27 1.27))))
  463. (number "4" (effects (font (size 1.27 1.27))))
  464. )
  465. (pin input line (at 2.54 3.81 180) (length 2.54)
  466. (name "DN2" (effects (font (size 1.27 1.27))))
  467. (number "5" (effects (font (size 1.27 1.27))))
  468. )
  469. (pin input line (at 2.54 1.27 180) (length 2.54)
  470. (name "DP1" (effects (font (size 1.27 1.27))))
  471. (number "6" (effects (font (size 1.27 1.27))))
  472. )
  473. (pin input line (at 2.54 -1.27 180) (length 2.54)
  474. (name "DN1" (effects (font (size 1.27 1.27))))
  475. (number "7" (effects (font (size 1.27 1.27))))
  476. )
  477. (pin input line (at 2.54 -3.81 180) (length 2.54)
  478. (name "DP2" (effects (font (size 1.27 1.27))))
  479. (number "8" (effects (font (size 1.27 1.27))))
  480. )
  481. (pin input line (at 2.54 -6.35 180) (length 2.54)
  482. (name "SBU1" (effects (font (size 1.27 1.27))))
  483. (number "9" (effects (font (size 1.27 1.27))))
  484. )
  485. )
  486. )
  487. (symbol "Interface_USB:STUSB4500QTR" (in_bom yes) (on_board yes)
  488. (property "Reference" "U" (id 0) (at -12.7 21.59 0)
  489. (effects (font (size 1.27 1.27)))
  490. )
  491. (property "Value" "STUSB4500QTR" (id 1) (at 8.89 -21.59 0)
  492. (effects (font (size 1.27 1.27)))
  493. )
  494. (property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm" (id 2) (at 0 0 0)
  495. (effects (font (size 1.27 1.27)) hide)
  496. )
  497. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stusb4500.pdf" (id 3) (at 0 0 0)
  498. (effects (font (size 1.27 1.27)) hide)
  499. )
  500. (property "ki_keywords" "USB PD Type C Sink" (id 4) (at 0 0 0)
  501. (effects (font (size 1.27 1.27)) hide)
  502. )
  503. (property "ki_description" "Stand-alone USB PD controller (with sink Auto-run mode), QFN-24" (id 5) (at 0 0 0)
  504. (effects (font (size 1.27 1.27)) hide)
  505. )
  506. (property "ki_fp_filters" "QFN*4x4mm*P0.5mm*" (id 6) (at 0 0 0)
  507. (effects (font (size 1.27 1.27)) hide)
  508. )
  509. (symbol "STUSB4500QTR_0_1"
  510. (rectangle (start -12.7 20.32) (end 12.7 -20.32)
  511. (stroke (width 0.254) (type default) (color 0 0 0 0))
  512. (fill (type background))
  513. )
  514. )
  515. (symbol "STUSB4500QTR_1_1"
  516. (pin bidirectional line (at -15.24 10.16 0) (length 2.54)
  517. (name "CC1DB" (effects (font (size 1.27 1.27))))
  518. (number "1" (effects (font (size 1.27 1.27))))
  519. )
  520. (pin power_in line (at 0 -22.86 90) (length 2.54)
  521. (name "GND" (effects (font (size 1.27 1.27))))
  522. (number "10" (effects (font (size 1.27 1.27))))
  523. )
  524. (pin open_collector line (at 15.24 -12.7 180) (length 2.54)
  525. (name "ATTACH" (effects (font (size 1.27 1.27))))
  526. (number "11" (effects (font (size 1.27 1.27))))
  527. )
  528. (pin input line (at -15.24 -15.24 0) (length 2.54)
  529. (name "ADDR0" (effects (font (size 1.27 1.27))))
  530. (number "12" (effects (font (size 1.27 1.27))))
  531. )
  532. (pin input line (at -15.24 -17.78 0) (length 2.54)
  533. (name "ADDR1" (effects (font (size 1.27 1.27))))
  534. (number "13" (effects (font (size 1.27 1.27))))
  535. )
  536. (pin open_collector line (at 15.24 0 180) (length 2.54)
  537. (name "POWER_OK3" (effects (font (size 1.27 1.27))))
  538. (number "14" (effects (font (size 1.27 1.27))))
  539. )
  540. (pin open_collector line (at 15.24 -15.24 180) (length 2.54)
  541. (name "GPIO" (effects (font (size 1.27 1.27))))
  542. (number "15" (effects (font (size 1.27 1.27))))
  543. )
  544. (pin open_collector line (at 15.24 7.62 180) (length 2.54)
  545. (name "VBUS_EN_SNK" (effects (font (size 1.27 1.27))))
  546. (number "16" (effects (font (size 1.27 1.27))))
  547. )
  548. (pin open_collector line (at 15.24 -10.16 180) (length 2.54)
  549. (name "A_B_SIDE" (effects (font (size 1.27 1.27))))
  550. (number "17" (effects (font (size 1.27 1.27))))
  551. )
  552. (pin input line (at -15.24 -2.54 0) (length 2.54)
  553. (name "VBUS_VS_DISCH" (effects (font (size 1.27 1.27))))
  554. (number "18" (effects (font (size 1.27 1.27))))
  555. )
  556. (pin open_collector line (at -15.24 -12.7 0) (length 2.54)
  557. (name "ALERT" (effects (font (size 1.27 1.27))))
  558. (number "19" (effects (font (size 1.27 1.27))))
  559. )
  560. (pin bidirectional line (at -15.24 12.7 0) (length 2.54)
  561. (name "CC1" (effects (font (size 1.27 1.27))))
  562. (number "2" (effects (font (size 1.27 1.27))))
  563. )
  564. (pin open_collector line (at 15.24 2.54 180) (length 2.54)
  565. (name "POWER_OK2" (effects (font (size 1.27 1.27))))
  566. (number "20" (effects (font (size 1.27 1.27))))
  567. )
  568. (pin power_out line (at 5.08 22.86 270) (length 2.54)
  569. (name "VREG_1V2" (effects (font (size 1.27 1.27))))
  570. (number "21" (effects (font (size 1.27 1.27))))
  571. )
  572. (pin power_in line (at 0 22.86 270) (length 2.54)
  573. (name "VSYS" (effects (font (size 1.27 1.27))))
  574. (number "22" (effects (font (size 1.27 1.27))))
  575. )
  576. (pin power_out line (at 7.62 22.86 270) (length 2.54)
  577. (name "VREG_2V7" (effects (font (size 1.27 1.27))))
  578. (number "23" (effects (font (size 1.27 1.27))))
  579. )
  580. (pin power_in line (at -2.54 22.86 270) (length 2.54)
  581. (name "VDD" (effects (font (size 1.27 1.27))))
  582. (number "24" (effects (font (size 1.27 1.27))))
  583. )
  584. (pin passive line (at 0 -22.86 90) (length 2.54) hide
  585. (name "GND" (effects (font (size 1.27 1.27))))
  586. (number "25" (effects (font (size 1.27 1.27))))
  587. )
  588. (pin no_connect line (at -12.7 15.24 0) (length 2.54) hide
  589. (name "NC" (effects (font (size 1.27 1.27))))
  590. (number "3" (effects (font (size 1.27 1.27))))
  591. )
  592. (pin bidirectional line (at -15.24 5.08 0) (length 2.54)
  593. (name "CC2" (effects (font (size 1.27 1.27))))
  594. (number "4" (effects (font (size 1.27 1.27))))
  595. )
  596. (pin bidirectional line (at -15.24 2.54 0) (length 2.54)
  597. (name "CC2DB" (effects (font (size 1.27 1.27))))
  598. (number "5" (effects (font (size 1.27 1.27))))
  599. )
  600. (pin input line (at -15.24 17.78 0) (length 2.54)
  601. (name "RESET" (effects (font (size 1.27 1.27))))
  602. (number "6" (effects (font (size 1.27 1.27))))
  603. )
  604. (pin input line (at -15.24 -7.62 0) (length 2.54)
  605. (name "SCL" (effects (font (size 1.27 1.27))))
  606. (number "7" (effects (font (size 1.27 1.27))))
  607. )
  608. (pin bidirectional line (at -15.24 -10.16 0) (length 2.54)
  609. (name "SDA" (effects (font (size 1.27 1.27))))
  610. (number "8" (effects (font (size 1.27 1.27))))
  611. )
  612. (pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
  613. (name "DISCH" (effects (font (size 1.27 1.27))))
  614. (number "9" (effects (font (size 1.27 1.27))))
  615. )
  616. )
  617. )
  618. (symbol "Transistor_FET:AO3401A" (pin_names hide) (in_bom yes) (on_board yes)
  619. (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
  620. (effects (font (size 1.27 1.27)) (justify left))
  621. )
  622. (property "Value" "AO3401A" (id 1) (at 5.08 0 0)
  623. (effects (font (size 1.27 1.27)) (justify left))
  624. )
  625. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
  626. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  627. )
  628. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (id 3) (at 0 0 0)
  629. (effects (font (size 1.27 1.27)) (justify left) hide)
  630. )
  631. (property "ki_keywords" "P-Channel MOSFET" (id 4) (at 0 0 0)
  632. (effects (font (size 1.27 1.27)) hide)
  633. )
  634. (property "ki_description" "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23" (id 5) (at 0 0 0)
  635. (effects (font (size 1.27 1.27)) hide)
  636. )
  637. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  638. (effects (font (size 1.27 1.27)) hide)
  639. )
  640. (symbol "AO3401A_0_1"
  641. (polyline
  642. (pts
  643. (xy 0.254 0)
  644. (xy -2.54 0)
  645. )
  646. (stroke (width 0) (type default) (color 0 0 0 0))
  647. (fill (type none))
  648. )
  649. (polyline
  650. (pts
  651. (xy 0.254 1.905)
  652. (xy 0.254 -1.905)
  653. )
  654. (stroke (width 0.254) (type default) (color 0 0 0 0))
  655. (fill (type none))
  656. )
  657. (polyline
  658. (pts
  659. (xy 0.762 -1.27)
  660. (xy 0.762 -2.286)
  661. )
  662. (stroke (width 0.254) (type default) (color 0 0 0 0))
  663. (fill (type none))
  664. )
  665. (polyline
  666. (pts
  667. (xy 0.762 0.508)
  668. (xy 0.762 -0.508)
  669. )
  670. (stroke (width 0.254) (type default) (color 0 0 0 0))
  671. (fill (type none))
  672. )
  673. (polyline
  674. (pts
  675. (xy 0.762 2.286)
  676. (xy 0.762 1.27)
  677. )
  678. (stroke (width 0.254) (type default) (color 0 0 0 0))
  679. (fill (type none))
  680. )
  681. (polyline
  682. (pts
  683. (xy 2.54 2.54)
  684. (xy 2.54 1.778)
  685. )
  686. (stroke (width 0) (type default) (color 0 0 0 0))
  687. (fill (type none))
  688. )
  689. (polyline
  690. (pts
  691. (xy 2.54 -2.54)
  692. (xy 2.54 0)
  693. (xy 0.762 0)
  694. )
  695. (stroke (width 0) (type default) (color 0 0 0 0))
  696. (fill (type none))
  697. )
  698. (polyline
  699. (pts
  700. (xy 0.762 1.778)
  701. (xy 3.302 1.778)
  702. (xy 3.302 -1.778)
  703. (xy 0.762 -1.778)
  704. )
  705. (stroke (width 0) (type default) (color 0 0 0 0))
  706. (fill (type none))
  707. )
  708. (polyline
  709. (pts
  710. (xy 2.286 0)
  711. (xy 1.27 0.381)
  712. (xy 1.27 -0.381)
  713. (xy 2.286 0)
  714. )
  715. (stroke (width 0) (type default) (color 0 0 0 0))
  716. (fill (type outline))
  717. )
  718. (polyline
  719. (pts
  720. (xy 2.794 -0.508)
  721. (xy 2.921 -0.381)
  722. (xy 3.683 -0.381)
  723. (xy 3.81 -0.254)
  724. )
  725. (stroke (width 0) (type default) (color 0 0 0 0))
  726. (fill (type none))
  727. )
  728. (polyline
  729. (pts
  730. (xy 3.302 -0.381)
  731. (xy 2.921 0.254)
  732. (xy 3.683 0.254)
  733. (xy 3.302 -0.381)
  734. )
  735. (stroke (width 0) (type default) (color 0 0 0 0))
  736. (fill (type none))
  737. )
  738. (circle (center 1.651 0) (radius 2.794)
  739. (stroke (width 0.254) (type default) (color 0 0 0 0))
  740. (fill (type none))
  741. )
  742. (circle (center 2.54 -1.778) (radius 0.254)
  743. (stroke (width 0) (type default) (color 0 0 0 0))
  744. (fill (type outline))
  745. )
  746. (circle (center 2.54 1.778) (radius 0.254)
  747. (stroke (width 0) (type default) (color 0 0 0 0))
  748. (fill (type outline))
  749. )
  750. )
  751. (symbol "AO3401A_1_1"
  752. (pin input line (at -5.08 0 0) (length 2.54)
  753. (name "G" (effects (font (size 1.27 1.27))))
  754. (number "1" (effects (font (size 1.27 1.27))))
  755. )
  756. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  757. (name "S" (effects (font (size 1.27 1.27))))
  758. (number "2" (effects (font (size 1.27 1.27))))
  759. )
  760. (pin passive line (at 2.54 5.08 270) (length 2.54)
  761. (name "D" (effects (font (size 1.27 1.27))))
  762. (number "3" (effects (font (size 1.27 1.27))))
  763. )
  764. )
  765. )
  766. (symbol "Transistor_FET:BSS138" (pin_names hide) (in_bom yes) (on_board yes)
  767. (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
  768. (effects (font (size 1.27 1.27)) (justify left))
  769. )
  770. (property "Value" "BSS138" (id 1) (at 5.08 0 0)
  771. (effects (font (size 1.27 1.27)) (justify left))
  772. )
  773. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
  774. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  775. )
  776. (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" (id 3) (at 0 0 0)
  777. (effects (font (size 1.27 1.27)) (justify left) hide)
  778. )
  779. (property "ki_keywords" "N-Channel MOSFET" (id 4) (at 0 0 0)
  780. (effects (font (size 1.27 1.27)) hide)
  781. )
  782. (property "ki_description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" (id 5) (at 0 0 0)
  783. (effects (font (size 1.27 1.27)) hide)
  784. )
  785. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  786. (effects (font (size 1.27 1.27)) hide)
  787. )
  788. (symbol "BSS138_0_1"
  789. (polyline
  790. (pts
  791. (xy 0.254 0)
  792. (xy -2.54 0)
  793. )
  794. (stroke (width 0) (type default) (color 0 0 0 0))
  795. (fill (type none))
  796. )
  797. (polyline
  798. (pts
  799. (xy 0.254 1.905)
  800. (xy 0.254 -1.905)
  801. )
  802. (stroke (width 0.254) (type default) (color 0 0 0 0))
  803. (fill (type none))
  804. )
  805. (polyline
  806. (pts
  807. (xy 0.762 -1.27)
  808. (xy 0.762 -2.286)
  809. )
  810. (stroke (width 0.254) (type default) (color 0 0 0 0))
  811. (fill (type none))
  812. )
  813. (polyline
  814. (pts
  815. (xy 0.762 0.508)
  816. (xy 0.762 -0.508)
  817. )
  818. (stroke (width 0.254) (type default) (color 0 0 0 0))
  819. (fill (type none))
  820. )
  821. (polyline
  822. (pts
  823. (xy 0.762 2.286)
  824. (xy 0.762 1.27)
  825. )
  826. (stroke (width 0.254) (type default) (color 0 0 0 0))
  827. (fill (type none))
  828. )
  829. (polyline
  830. (pts
  831. (xy 2.54 2.54)
  832. (xy 2.54 1.778)
  833. )
  834. (stroke (width 0) (type default) (color 0 0 0 0))
  835. (fill (type none))
  836. )
  837. (polyline
  838. (pts
  839. (xy 2.54 -2.54)
  840. (xy 2.54 0)
  841. (xy 0.762 0)
  842. )
  843. (stroke (width 0) (type default) (color 0 0 0 0))
  844. (fill (type none))
  845. )
  846. (polyline
  847. (pts
  848. (xy 0.762 -1.778)
  849. (xy 3.302 -1.778)
  850. (xy 3.302 1.778)
  851. (xy 0.762 1.778)
  852. )
  853. (stroke (width 0) (type default) (color 0 0 0 0))
  854. (fill (type none))
  855. )
  856. (polyline
  857. (pts
  858. (xy 1.016 0)
  859. (xy 2.032 0.381)
  860. (xy 2.032 -0.381)
  861. (xy 1.016 0)
  862. )
  863. (stroke (width 0) (type default) (color 0 0 0 0))
  864. (fill (type outline))
  865. )
  866. (polyline
  867. (pts
  868. (xy 2.794 0.508)
  869. (xy 2.921 0.381)
  870. (xy 3.683 0.381)
  871. (xy 3.81 0.254)
  872. )
  873. (stroke (width 0) (type default) (color 0 0 0 0))
  874. (fill (type none))
  875. )
  876. (polyline
  877. (pts
  878. (xy 3.302 0.381)
  879. (xy 2.921 -0.254)
  880. (xy 3.683 -0.254)
  881. (xy 3.302 0.381)
  882. )
  883. (stroke (width 0) (type default) (color 0 0 0 0))
  884. (fill (type none))
  885. )
  886. (circle (center 1.651 0) (radius 2.794)
  887. (stroke (width 0.254) (type default) (color 0 0 0 0))
  888. (fill (type none))
  889. )
  890. (circle (center 2.54 -1.778) (radius 0.254)
  891. (stroke (width 0) (type default) (color 0 0 0 0))
  892. (fill (type outline))
  893. )
  894. (circle (center 2.54 1.778) (radius 0.254)
  895. (stroke (width 0) (type default) (color 0 0 0 0))
  896. (fill (type outline))
  897. )
  898. )
  899. (symbol "BSS138_1_1"
  900. (pin input line (at -5.08 0 0) (length 2.54)
  901. (name "G" (effects (font (size 1.27 1.27))))
  902. (number "1" (effects (font (size 1.27 1.27))))
  903. )
  904. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  905. (name "S" (effects (font (size 1.27 1.27))))
  906. (number "2" (effects (font (size 1.27 1.27))))
  907. )
  908. (pin passive line (at 2.54 5.08 270) (length 2.54)
  909. (name "D" (effects (font (size 1.27 1.27))))
  910. (number "3" (effects (font (size 1.27 1.27))))
  911. )
  912. )
  913. )
  914. (symbol "Transistor_FET:IRF7404" (pin_names hide) (in_bom yes) (on_board yes)
  915. (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
  916. (effects (font (size 1.27 1.27)) (justify left))
  917. )
  918. (property "Value" "IRF7404" (id 1) (at 5.08 0 0)
  919. (effects (font (size 1.27 1.27)) (justify left))
  920. )
  921. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 5.08 -1.905 0)
  922. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  923. )
  924. (property "Datasheet" "http://www.infineon.com/dgdl/irf7404.pdf?fileId=5546d462533600a4015355fa2b5b1b9e" (id 3) (at 0 0 90)
  925. (effects (font (size 1.27 1.27)) (justify left) hide)
  926. )
  927. (property "ki_keywords" "P-Channel MOSFET" (id 4) (at 0 0 0)
  928. (effects (font (size 1.27 1.27)) hide)
  929. )
  930. (property "ki_description" "-6.7A Id, -20V Vds, P-Channel HEXFET Power MOSFET, SO-8" (id 5) (at 0 0 0)
  931. (effects (font (size 1.27 1.27)) hide)
  932. )
  933. (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
  934. (effects (font (size 1.27 1.27)) hide)
  935. )
  936. (symbol "IRF7404_0_1"
  937. (polyline
  938. (pts
  939. (xy 0.254 0)
  940. (xy -2.54 0)
  941. )
  942. (stroke (width 0) (type default) (color 0 0 0 0))
  943. (fill (type none))
  944. )
  945. (polyline
  946. (pts
  947. (xy 0.254 1.905)
  948. (xy 0.254 -1.905)
  949. )
  950. (stroke (width 0.254) (type default) (color 0 0 0 0))
  951. (fill (type none))
  952. )
  953. (polyline
  954. (pts
  955. (xy 0.762 -1.27)
  956. (xy 0.762 -2.286)
  957. )
  958. (stroke (width 0.254) (type default) (color 0 0 0 0))
  959. (fill (type none))
  960. )
  961. (polyline
  962. (pts
  963. (xy 0.762 0.508)
  964. (xy 0.762 -0.508)
  965. )
  966. (stroke (width 0.254) (type default) (color 0 0 0 0))
  967. (fill (type none))
  968. )
  969. (polyline
  970. (pts
  971. (xy 0.762 2.286)
  972. (xy 0.762 1.27)
  973. )
  974. (stroke (width 0.254) (type default) (color 0 0 0 0))
  975. (fill (type none))
  976. )
  977. (polyline
  978. (pts
  979. (xy 2.54 2.54)
  980. (xy 2.54 1.778)
  981. )
  982. (stroke (width 0) (type default) (color 0 0 0 0))
  983. (fill (type none))
  984. )
  985. (polyline
  986. (pts
  987. (xy 2.54 -2.54)
  988. (xy 2.54 0)
  989. (xy 0.762 0)
  990. )
  991. (stroke (width 0) (type default) (color 0 0 0 0))
  992. (fill (type none))
  993. )
  994. (polyline
  995. (pts
  996. (xy 0.762 1.778)
  997. (xy 3.302 1.778)
  998. (xy 3.302 -1.778)
  999. (xy 0.762 -1.778)
  1000. )
  1001. (stroke (width 0) (type default) (color 0 0 0 0))
  1002. (fill (type none))
  1003. )
  1004. (polyline
  1005. (pts
  1006. (xy 2.286 0)
  1007. (xy 1.27 0.381)
  1008. (xy 1.27 -0.381)
  1009. (xy 2.286 0)
  1010. )
  1011. (stroke (width 0) (type default) (color 0 0 0 0))
  1012. (fill (type outline))
  1013. )
  1014. (polyline
  1015. (pts
  1016. (xy 2.794 -0.508)
  1017. (xy 2.921 -0.381)
  1018. (xy 3.683 -0.381)
  1019. (xy 3.81 -0.254)
  1020. )
  1021. (stroke (width 0) (type default) (color 0 0 0 0))
  1022. (fill (type none))
  1023. )
  1024. (polyline
  1025. (pts
  1026. (xy 3.302 -0.381)
  1027. (xy 2.921 0.254)
  1028. (xy 3.683 0.254)
  1029. (xy 3.302 -0.381)
  1030. )
  1031. (stroke (width 0) (type default) (color 0 0 0 0))
  1032. (fill (type none))
  1033. )
  1034. (circle (center 1.651 0) (radius 2.794)
  1035. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1036. (fill (type none))
  1037. )
  1038. (circle (center 2.54 -1.778) (radius 0.254)
  1039. (stroke (width 0) (type default) (color 0 0 0 0))
  1040. (fill (type outline))
  1041. )
  1042. (circle (center 2.54 1.778) (radius 0.254)
  1043. (stroke (width 0) (type default) (color 0 0 0 0))
  1044. (fill (type outline))
  1045. )
  1046. )
  1047. (symbol "IRF7404_1_1"
  1048. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  1049. (name "S" (effects (font (size 1.27 1.27))))
  1050. (number "1" (effects (font (size 1.27 1.27))))
  1051. )
  1052. (pin passive line (at 2.54 -5.08 90) (length 2.54) hide
  1053. (name "S" (effects (font (size 1.27 1.27))))
  1054. (number "2" (effects (font (size 1.27 1.27))))
  1055. )
  1056. (pin passive line (at 2.54 -5.08 90) (length 2.54) hide
  1057. (name "S" (effects (font (size 1.27 1.27))))
  1058. (number "3" (effects (font (size 1.27 1.27))))
  1059. )
  1060. (pin passive line (at -5.08 0 0) (length 2.54)
  1061. (name "G" (effects (font (size 1.27 1.27))))
  1062. (number "4" (effects (font (size 1.27 1.27))))
  1063. )
  1064. (pin passive line (at 2.54 5.08 270) (length 2.54) hide
  1065. (name "D" (effects (font (size 1.27 1.27))))
  1066. (number "5" (effects (font (size 1.27 1.27))))
  1067. )
  1068. (pin passive line (at 2.54 5.08 270) (length 2.54) hide
  1069. (name "D" (effects (font (size 1.27 1.27))))
  1070. (number "6" (effects (font (size 1.27 1.27))))
  1071. )
  1072. (pin passive line (at 2.54 5.08 270) (length 2.54) hide
  1073. (name "D" (effects (font (size 1.27 1.27))))
  1074. (number "7" (effects (font (size 1.27 1.27))))
  1075. )
  1076. (pin passive line (at 2.54 5.08 270) (length 2.54)
  1077. (name "D" (effects (font (size 1.27 1.27))))
  1078. (number "8" (effects (font (size 1.27 1.27))))
  1079. )
  1080. )
  1081. )
  1082. (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1083. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1084. (effects (font (size 1.27 1.27)) hide)
  1085. )
  1086. (property "Value" "+12V" (id 1) (at 0 3.556 0)
  1087. (effects (font (size 1.27 1.27)))
  1088. )
  1089. (property "Footprint" "" (id 2) (at 0 0 0)
  1090. (effects (font (size 1.27 1.27)) hide)
  1091. )
  1092. (property "Datasheet" "" (id 3) (at 0 0 0)
  1093. (effects (font (size 1.27 1.27)) hide)
  1094. )
  1095. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1096. (effects (font (size 1.27 1.27)) hide)
  1097. )
  1098. (property "ki_description" "Power symbol creates a global label with name \"+12V\"" (id 5) (at 0 0 0)
  1099. (effects (font (size 1.27 1.27)) hide)
  1100. )
  1101. (symbol "+12V_0_1"
  1102. (polyline
  1103. (pts
  1104. (xy -0.762 1.27)
  1105. (xy 0 2.54)
  1106. )
  1107. (stroke (width 0) (type default) (color 0 0 0 0))
  1108. (fill (type none))
  1109. )
  1110. (polyline
  1111. (pts
  1112. (xy 0 0)
  1113. (xy 0 2.54)
  1114. )
  1115. (stroke (width 0) (type default) (color 0 0 0 0))
  1116. (fill (type none))
  1117. )
  1118. (polyline
  1119. (pts
  1120. (xy 0 2.54)
  1121. (xy 0.762 1.27)
  1122. )
  1123. (stroke (width 0) (type default) (color 0 0 0 0))
  1124. (fill (type none))
  1125. )
  1126. )
  1127. (symbol "+12V_1_1"
  1128. (pin power_in line (at 0 0 90) (length 0) hide
  1129. (name "+12V" (effects (font (size 1.27 1.27))))
  1130. (number "1" (effects (font (size 1.27 1.27))))
  1131. )
  1132. )
  1133. )
  1134. (symbol "power:+24V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1135. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1136. (effects (font (size 1.27 1.27)) hide)
  1137. )
  1138. (property "Value" "+24V" (id 1) (at 0 3.556 0)
  1139. (effects (font (size 1.27 1.27)))
  1140. )
  1141. (property "Footprint" "" (id 2) (at 0 0 0)
  1142. (effects (font (size 1.27 1.27)) hide)
  1143. )
  1144. (property "Datasheet" "" (id 3) (at 0 0 0)
  1145. (effects (font (size 1.27 1.27)) hide)
  1146. )
  1147. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1148. (effects (font (size 1.27 1.27)) hide)
  1149. )
  1150. (property "ki_description" "Power symbol creates a global label with name \"+24V\"" (id 5) (at 0 0 0)
  1151. (effects (font (size 1.27 1.27)) hide)
  1152. )
  1153. (symbol "+24V_0_1"
  1154. (polyline
  1155. (pts
  1156. (xy -0.762 1.27)
  1157. (xy 0 2.54)
  1158. )
  1159. (stroke (width 0) (type default) (color 0 0 0 0))
  1160. (fill (type none))
  1161. )
  1162. (polyline
  1163. (pts
  1164. (xy 0 0)
  1165. (xy 0 2.54)
  1166. )
  1167. (stroke (width 0) (type default) (color 0 0 0 0))
  1168. (fill (type none))
  1169. )
  1170. (polyline
  1171. (pts
  1172. (xy 0 2.54)
  1173. (xy 0.762 1.27)
  1174. )
  1175. (stroke (width 0) (type default) (color 0 0 0 0))
  1176. (fill (type none))
  1177. )
  1178. )
  1179. (symbol "+24V_1_1"
  1180. (pin power_in line (at 0 0 90) (length 0) hide
  1181. (name "+24V" (effects (font (size 1.27 1.27))))
  1182. (number "1" (effects (font (size 1.27 1.27))))
  1183. )
  1184. )
  1185. )
  1186. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1187. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1188. (effects (font (size 1.27 1.27)) hide)
  1189. )
  1190. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  1191. (effects (font (size 1.27 1.27)))
  1192. )
  1193. (property "Footprint" "" (id 2) (at 0 0 0)
  1194. (effects (font (size 1.27 1.27)) hide)
  1195. )
  1196. (property "Datasheet" "" (id 3) (at 0 0 0)
  1197. (effects (font (size 1.27 1.27)) hide)
  1198. )
  1199. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1200. (effects (font (size 1.27 1.27)) hide)
  1201. )
  1202. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  1203. (effects (font (size 1.27 1.27)) hide)
  1204. )
  1205. (symbol "+3V3_0_1"
  1206. (polyline
  1207. (pts
  1208. (xy -0.762 1.27)
  1209. (xy 0 2.54)
  1210. )
  1211. (stroke (width 0) (type default) (color 0 0 0 0))
  1212. (fill (type none))
  1213. )
  1214. (polyline
  1215. (pts
  1216. (xy 0 0)
  1217. (xy 0 2.54)
  1218. )
  1219. (stroke (width 0) (type default) (color 0 0 0 0))
  1220. (fill (type none))
  1221. )
  1222. (polyline
  1223. (pts
  1224. (xy 0 2.54)
  1225. (xy 0.762 1.27)
  1226. )
  1227. (stroke (width 0) (type default) (color 0 0 0 0))
  1228. (fill (type none))
  1229. )
  1230. )
  1231. (symbol "+3V3_1_1"
  1232. (pin power_in line (at 0 0 90) (length 0) hide
  1233. (name "+3V3" (effects (font (size 1.27 1.27))))
  1234. (number "1" (effects (font (size 1.27 1.27))))
  1235. )
  1236. )
  1237. )
  1238. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1239. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1240. (effects (font (size 1.27 1.27)) hide)
  1241. )
  1242. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1243. (effects (font (size 1.27 1.27)))
  1244. )
  1245. (property "Footprint" "" (id 2) (at 0 0 0)
  1246. (effects (font (size 1.27 1.27)) hide)
  1247. )
  1248. (property "Datasheet" "" (id 3) (at 0 0 0)
  1249. (effects (font (size 1.27 1.27)) hide)
  1250. )
  1251. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1252. (effects (font (size 1.27 1.27)) hide)
  1253. )
  1254. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1255. (effects (font (size 1.27 1.27)) hide)
  1256. )
  1257. (symbol "+5V_0_1"
  1258. (polyline
  1259. (pts
  1260. (xy -0.762 1.27)
  1261. (xy 0 2.54)
  1262. )
  1263. (stroke (width 0) (type default) (color 0 0 0 0))
  1264. (fill (type none))
  1265. )
  1266. (polyline
  1267. (pts
  1268. (xy 0 0)
  1269. (xy 0 2.54)
  1270. )
  1271. (stroke (width 0) (type default) (color 0 0 0 0))
  1272. (fill (type none))
  1273. )
  1274. (polyline
  1275. (pts
  1276. (xy 0 2.54)
  1277. (xy 0.762 1.27)
  1278. )
  1279. (stroke (width 0) (type default) (color 0 0 0 0))
  1280. (fill (type none))
  1281. )
  1282. )
  1283. (symbol "+5V_1_1"
  1284. (pin power_in line (at 0 0 90) (length 0) hide
  1285. (name "+5V" (effects (font (size 1.27 1.27))))
  1286. (number "1" (effects (font (size 1.27 1.27))))
  1287. )
  1288. )
  1289. )
  1290. (symbol "power:+5VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1291. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1292. (effects (font (size 1.27 1.27)) hide)
  1293. )
  1294. (property "Value" "+5VA" (id 1) (at 0 3.556 0)
  1295. (effects (font (size 1.27 1.27)))
  1296. )
  1297. (property "Footprint" "" (id 2) (at 0 0 0)
  1298. (effects (font (size 1.27 1.27)) hide)
  1299. )
  1300. (property "Datasheet" "" (id 3) (at 0 0 0)
  1301. (effects (font (size 1.27 1.27)) hide)
  1302. )
  1303. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1304. (effects (font (size 1.27 1.27)) hide)
  1305. )
  1306. (property "ki_description" "Power symbol creates a global label with name \"+5VA\"" (id 5) (at 0 0 0)
  1307. (effects (font (size 1.27 1.27)) hide)
  1308. )
  1309. (symbol "+5VA_0_1"
  1310. (polyline
  1311. (pts
  1312. (xy -0.762 1.27)
  1313. (xy 0 2.54)
  1314. )
  1315. (stroke (width 0) (type default) (color 0 0 0 0))
  1316. (fill (type none))
  1317. )
  1318. (polyline
  1319. (pts
  1320. (xy 0 0)
  1321. (xy 0 2.54)
  1322. )
  1323. (stroke (width 0) (type default) (color 0 0 0 0))
  1324. (fill (type none))
  1325. )
  1326. (polyline
  1327. (pts
  1328. (xy 0 2.54)
  1329. (xy 0.762 1.27)
  1330. )
  1331. (stroke (width 0) (type default) (color 0 0 0 0))
  1332. (fill (type none))
  1333. )
  1334. )
  1335. (symbol "+5VA_1_1"
  1336. (pin power_in line (at 0 0 90) (length 0) hide
  1337. (name "+5VA" (effects (font (size 1.27 1.27))))
  1338. (number "1" (effects (font (size 1.27 1.27))))
  1339. )
  1340. )
  1341. )
  1342. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1343. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1344. (effects (font (size 1.27 1.27)) hide)
  1345. )
  1346. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1347. (effects (font (size 1.27 1.27)))
  1348. )
  1349. (property "Footprint" "" (id 2) (at 0 0 0)
  1350. (effects (font (size 1.27 1.27)) hide)
  1351. )
  1352. (property "Datasheet" "" (id 3) (at 0 0 0)
  1353. (effects (font (size 1.27 1.27)) hide)
  1354. )
  1355. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1356. (effects (font (size 1.27 1.27)) hide)
  1357. )
  1358. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1359. (effects (font (size 1.27 1.27)) hide)
  1360. )
  1361. (symbol "GND_0_1"
  1362. (polyline
  1363. (pts
  1364. (xy 0 0)
  1365. (xy 0 -1.27)
  1366. (xy 1.27 -1.27)
  1367. (xy 0 -2.54)
  1368. (xy -1.27 -1.27)
  1369. (xy 0 -1.27)
  1370. )
  1371. (stroke (width 0) (type default) (color 0 0 0 0))
  1372. (fill (type none))
  1373. )
  1374. )
  1375. (symbol "GND_1_1"
  1376. (pin power_in line (at 0 0 270) (length 0) hide
  1377. (name "GND" (effects (font (size 1.27 1.27))))
  1378. (number "1" (effects (font (size 1.27 1.27))))
  1379. )
  1380. )
  1381. )
  1382. (symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1383. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1384. (effects (font (size 1.27 1.27)) hide)
  1385. )
  1386. (property "Value" "VCC" (id 1) (at 0 3.81 0)
  1387. (effects (font (size 1.27 1.27)))
  1388. )
  1389. (property "Footprint" "" (id 2) (at 0 0 0)
  1390. (effects (font (size 1.27 1.27)) hide)
  1391. )
  1392. (property "Datasheet" "" (id 3) (at 0 0 0)
  1393. (effects (font (size 1.27 1.27)) hide)
  1394. )
  1395. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1396. (effects (font (size 1.27 1.27)) hide)
  1397. )
  1398. (property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
  1399. (effects (font (size 1.27 1.27)) hide)
  1400. )
  1401. (symbol "VCC_0_1"
  1402. (polyline
  1403. (pts
  1404. (xy -0.762 1.27)
  1405. (xy 0 2.54)
  1406. )
  1407. (stroke (width 0) (type default) (color 0 0 0 0))
  1408. (fill (type none))
  1409. )
  1410. (polyline
  1411. (pts
  1412. (xy 0 0)
  1413. (xy 0 2.54)
  1414. )
  1415. (stroke (width 0) (type default) (color 0 0 0 0))
  1416. (fill (type none))
  1417. )
  1418. (polyline
  1419. (pts
  1420. (xy 0 2.54)
  1421. (xy 0.762 1.27)
  1422. )
  1423. (stroke (width 0) (type default) (color 0 0 0 0))
  1424. (fill (type none))
  1425. )
  1426. )
  1427. (symbol "VCC_1_1"
  1428. (pin power_in line (at 0 0 90) (length 0) hide
  1429. (name "VCC" (effects (font (size 1.27 1.27))))
  1430. (number "1" (effects (font (size 1.27 1.27))))
  1431. )
  1432. )
  1433. )
  1434. (symbol "power:VPP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1435. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1436. (effects (font (size 1.27 1.27)) hide)
  1437. )
  1438. (property "Value" "VPP" (id 1) (at 0 3.81 0)
  1439. (effects (font (size 1.27 1.27)))
  1440. )
  1441. (property "Footprint" "" (id 2) (at 0 0 0)
  1442. (effects (font (size 1.27 1.27)) hide)
  1443. )
  1444. (property "Datasheet" "" (id 3) (at 0 0 0)
  1445. (effects (font (size 1.27 1.27)) hide)
  1446. )
  1447. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1448. (effects (font (size 1.27 1.27)) hide)
  1449. )
  1450. (property "ki_description" "Power symbol creates a global label with name \"VPP\"" (id 5) (at 0 0 0)
  1451. (effects (font (size 1.27 1.27)) hide)
  1452. )
  1453. (symbol "VPP_0_1"
  1454. (polyline
  1455. (pts
  1456. (xy -0.762 1.27)
  1457. (xy 0 2.54)
  1458. )
  1459. (stroke (width 0) (type default) (color 0 0 0 0))
  1460. (fill (type none))
  1461. )
  1462. (polyline
  1463. (pts
  1464. (xy 0 0)
  1465. (xy 0 2.54)
  1466. )
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (fill (type none))
  1469. )
  1470. (polyline
  1471. (pts
  1472. (xy 0 2.54)
  1473. (xy 0.762 1.27)
  1474. )
  1475. (stroke (width 0) (type default) (color 0 0 0 0))
  1476. (fill (type none))
  1477. )
  1478. )
  1479. (symbol "VPP_1_1"
  1480. (pin power_in line (at 0 0 90) (length 0) hide
  1481. (name "VPP" (effects (font (size 1.27 1.27))))
  1482. (number "1" (effects (font (size 1.27 1.27))))
  1483. )
  1484. )
  1485. )
  1486. )
  1487. (junction (at 41.91 170.18) (diameter 0) (color 0 0 0 0)
  1488. (uuid 009b0d62-e9ea-4825-9fdf-befd291c76ce)
  1489. )
  1490. (junction (at 87.63 74.93) (diameter 0) (color 0 0 0 0)
  1491. (uuid 073c8287-235c-4712-a9a0-60a07a1119d5)
  1492. )
  1493. (junction (at 120.65 154.94) (diameter 0) (color 0 0 0 0)
  1494. (uuid 3388a811-b444-4ecc-a564-b22a1b731ab4)
  1495. )
  1496. (junction (at 87.63 48.26) (diameter 0) (color 0 0 0 0)
  1497. (uuid 33891c62-a79f-4243-b776-6be292690ac3)
  1498. )
  1499. (junction (at 97.79 154.94) (diameter 0) (color 0 0 0 0)
  1500. (uuid 37f8ba3f-cca4-4b16-b699-07a704844fc9)
  1501. )
  1502. (junction (at 142.24 93.98) (diameter 0) (color 0 0 0 0)
  1503. (uuid 3b19a97f-624a-48d9-8072-15bdeede0fff)
  1504. )
  1505. (junction (at 152.4 85.09) (diameter 0) (color 0 0 0 0)
  1506. (uuid 4aee84d1-0859-48ac-a053-5a981ee1b24a)
  1507. )
  1508. (junction (at 132.08 85.09) (diameter 0) (color 0 0 0 0)
  1509. (uuid 4c717b47-484c-4d70-8fcd-83c406ff2d17)
  1510. )
  1511. (junction (at 183.515 126.746) (diameter 0) (color 0 0 0 0)
  1512. (uuid 4d941e67-9267-4292-99b0-325e8e563990)
  1513. )
  1514. (junction (at 167.132 85.09) (diameter 0) (color 0 0 0 0)
  1515. (uuid 4f918147-2e16-4e60-b4c1-f85fb8e00df3)
  1516. )
  1517. (junction (at 158.75 85.09) (diameter 0) (color 0 0 0 0)
  1518. (uuid 5290e0d7-1f24-4c0b-91ff-28c5a304ab9a)
  1519. )
  1520. (junction (at 218.567 126.111) (diameter 0) (color 0 0 0 0)
  1521. (uuid 68ad1943-a2b1-48ee-8405-0cf8161545c5)
  1522. )
  1523. (junction (at 233.68 136.525) (diameter 0) (color 0 0 0 0)
  1524. (uuid 6972b62d-d9b2-4d54-8a52-0d0c46312835)
  1525. )
  1526. (junction (at 179.07 85.09) (diameter 0) (color 0 0 0 0)
  1527. (uuid 7c3df708-fb44-40cc-b435-cd67e8cec48a)
  1528. )
  1529. (junction (at 48.26 53.34) (diameter 0) (color 0 0 0 0)
  1530. (uuid 7ce4aab5-8271-4432-a4b1-bff168293b45)
  1531. )
  1532. (junction (at 113.03 154.94) (diameter 0) (color 0 0 0 0)
  1533. (uuid 8aa8d47e-f495-4049-8ac9-7f2ac3205412)
  1534. )
  1535. (junction (at 218.567 136.525) (diameter 0) (color 0 0 0 0)
  1536. (uuid 924625bb-1f37-48d3-8acb-a7f6bd1f5bcb)
  1537. )
  1538. (junction (at 105.41 154.94) (diameter 0) (color 0 0 0 0)
  1539. (uuid a46a2b22-69cf-45fb-b1d2-32ac89bbd3c8)
  1540. )
  1541. (junction (at 43.18 58.42) (diameter 0) (color 0 0 0 0)
  1542. (uuid a4911204-1308-4d17-90a9-1ff5f9c57c9b)
  1543. )
  1544. (junction (at 132.08 93.98) (diameter 0) (color 0 0 0 0)
  1545. (uuid bbb99edd-f016-43ea-b1c7-0bcdd1915ee8)
  1546. )
  1547. (junction (at 63.5 48.26) (diameter 0) (color 0 0 0 0)
  1548. (uuid c2e901e5-a4cd-4374-af38-0566255ecbea)
  1549. )
  1550. (junction (at 183.515 137.16) (diameter 0) (color 0 0 0 0)
  1551. (uuid c6099708-ad18-4ca0-8362-0511d6cf6394)
  1552. )
  1553. (junction (at 57.15 59.69) (diameter 0) (color 0 0 0 0)
  1554. (uuid d337c492-7429-4618-b378-df29f72737e3)
  1555. )
  1556. (junction (at 109.22 154.94) (diameter 0) (color 0 0 0 0)
  1557. (uuid d33c6077-a8ec-48ca-b0e0-97f3539ef54c)
  1558. )
  1559. (junction (at 250.571 132.334) (diameter 0) (color 0 0 0 0)
  1560. (uuid d39c186e-19ed-479b-94b1-f3e066711992)
  1561. )
  1562. (junction (at 198.628 137.16) (diameter 0) (color 0 0 0 0)
  1563. (uuid d663b2fc-8b3c-4b1d-abc8-732f4dfe6222)
  1564. )
  1565. (junction (at 90.17 154.94) (diameter 0) (color 0 0 0 0)
  1566. (uuid e1c71a89-4e45-4a56-a6ef-342af5f92d5c)
  1567. )
  1568. (junction (at 128.27 154.94) (diameter 0) (color 0 0 0 0)
  1569. (uuid e8e598ff-c991-433d-8dd6-c9fce2fe1eaa)
  1570. )
  1571. (junction (at 250.571 141.224) (diameter 0) (color 0 0 0 0)
  1572. (uuid f4fa4291-4134-4a5c-849d-95338b27bc47)
  1573. )
  1574. (junction (at 71.12 127) (diameter 0) (color 0 0 0 0)
  1575. (uuid f66bb685-9833-454c-bf31-b96598f50347)
  1576. )
  1577. (no_connect (at 40.64 33.02) (uuid 24a492d9-25a9-4fba-b51b-3effb576b351))
  1578. (no_connect (at 40.64 48.26) (uuid 45484f82-420e-44d0-a58e-382bb939dac5))
  1579. (no_connect (at 40.64 40.64) (uuid 665081dc-8354-4d41-8855-bde8901aee4c))
  1580. (no_connect (at 40.64 45.72) (uuid 97cc05bf-4ed5-449c-b0c8-131e5126a7ac))
  1581. (no_connect (at 40.64 38.1) (uuid d7df1f01-3f56-437b-a452-e88ad90a9805))
  1582. (no_connect (at 40.64 43.18) (uuid e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6))
  1583. (wire (pts (xy 58.42 170.18) (xy 58.42 173.99))
  1584. (stroke (width 0) (type default) (color 0 0 0 0))
  1585. (uuid 017667a9-f5de-49c7-af53-4f9af2f3a311)
  1586. )
  1587. (wire (pts (xy 43.18 58.42) (xy 43.18 60.96))
  1588. (stroke (width 0) (type default) (color 0 0 0 0))
  1589. (uuid 01c59306-91a3-452b-92b5-9af8f8f257d6)
  1590. )
  1591. (wire (pts (xy 55.88 157.48) (xy 58.42 157.48))
  1592. (stroke (width 0) (type default) (color 0 0 0 0))
  1593. (uuid 08926936-9ea4-4894-afca-caca47f3c238)
  1594. )
  1595. (wire (pts (xy 97.79 86.36) (xy 97.79 74.93))
  1596. (stroke (width 0) (type default) (color 0 0 0 0))
  1597. (uuid 0ab1512b-eb91-4574-b11f-326e0ff10082)
  1598. )
  1599. (wire (pts (xy 218.567 129.159) (xy 218.567 126.111))
  1600. (stroke (width 0) (type default) (color 0 0 0 0))
  1601. (uuid 0c55348f-9353-4951-94c5-3432e038817c)
  1602. )
  1603. (wire (pts (xy 184.15 33.02) (xy 184.15 40.64))
  1604. (stroke (width 0) (type default) (color 0 0 0 0))
  1605. (uuid 0df798c0-963e-4340-a737-18e50763521e)
  1606. )
  1607. (wire (pts (xy 74.93 91.44) (xy 72.39 91.44))
  1608. (stroke (width 0) (type default) (color 0 0 0 0))
  1609. (uuid 105d44ff-63b9-4299-9078-473af583971a)
  1610. )
  1611. (wire (pts (xy 132.08 100.33) (xy 132.08 101.6))
  1612. (stroke (width 0) (type default) (color 0 0 0 0))
  1613. (uuid 133d5403-9be3-4603-824b-d3b76147e745)
  1614. )
  1615. (wire (pts (xy 167.132 85.09) (xy 179.07 85.09))
  1616. (stroke (width 0) (type default) (color 0 0 0 0))
  1617. (uuid 14773532-e888-4675-abbf-60f7f47b7ccc)
  1618. )
  1619. (wire (pts (xy 218.567 123.952) (xy 218.567 126.111))
  1620. (stroke (width 0) (type default) (color 0 0 0 0))
  1621. (uuid 148c4da6-f2ae-4cc4-a331-d595ea4a6134)
  1622. )
  1623. (wire (pts (xy 194.31 33.02) (xy 194.31 35.56))
  1624. (stroke (width 0) (type default) (color 0 0 0 0))
  1625. (uuid 159c8092-f459-40eb-b409-c2cace814e6e)
  1626. )
  1627. (wire (pts (xy 132.08 93.98) (xy 142.24 93.98))
  1628. (stroke (width 0) (type default) (color 0 0 0 0))
  1629. (uuid 15a0f067-831a-4ddb-bdef-5fb7df267d8f)
  1630. )
  1631. (wire (pts (xy 179.07 91.44) (xy 179.07 92.71))
  1632. (stroke (width 0) (type default) (color 0 0 0 0))
  1633. (uuid 15e1670d-9e79-4a5e-88ad-fbbb238a3e8a)
  1634. )
  1635. (wire (pts (xy 81.28 81.28) (xy 81.28 82.55))
  1636. (stroke (width 0) (type default) (color 0 0 0 0))
  1637. (uuid 18208121-3872-4be3-a687-40854be3e1c8)
  1638. )
  1639. (wire (pts (xy 247.142 132.334) (xy 250.571 132.334))
  1640. (stroke (width 0) (type default) (color 0 0 0 0))
  1641. (uuid 184035a5-61e5-4004-8fe3-fe95542a68b5)
  1642. )
  1643. (wire (pts (xy 142.24 93.98) (xy 142.24 92.71))
  1644. (stroke (width 0) (type default) (color 0 0 0 0))
  1645. (uuid 1ab4dceb-24cc-4050-aa74-e8fbb39d3760)
  1646. )
  1647. (wire (pts (xy 55.88 165.1) (xy 58.42 165.1))
  1648. (stroke (width 0) (type default) (color 0 0 0 0))
  1649. (uuid 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
  1650. )
  1651. (wire (pts (xy 233.68 136.525) (xy 235.331 136.525))
  1652. (stroke (width 0) (type default) (color 0 0 0 0))
  1653. (uuid 2066d7d6-b3b3-4755-b38c-f5993d1934b6)
  1654. )
  1655. (wire (pts (xy 105.41 124.46) (xy 106.68 124.46))
  1656. (stroke (width 0) (type default) (color 0 0 0 0))
  1657. (uuid 21ca1c08-b8a3-4bdc-9356-70a4d86ee444)
  1658. )
  1659. (wire (pts (xy 230.759 136.525) (xy 233.68 136.525))
  1660. (stroke (width 0) (type default) (color 0 0 0 0))
  1661. (uuid 23f079a5-cb9a-4d2d-88a8-fbf3fd3e260f)
  1662. )
  1663. (wire (pts (xy 48.26 53.34) (xy 52.07 53.34))
  1664. (stroke (width 0) (type default) (color 0 0 0 0))
  1665. (uuid 24fd922c-d488-4d61-b6dc-9d3e359ccc82)
  1666. )
  1667. (wire (pts (xy 183.515 126.746) (xy 190.627 126.746))
  1668. (stroke (width 0) (type default) (color 0 0 0 0))
  1669. (uuid 250bea98-9040-430f-9568-43681382afa7)
  1670. )
  1671. (wire (pts (xy 71.12 124.46) (xy 71.12 127))
  1672. (stroke (width 0) (type default) (color 0 0 0 0))
  1673. (uuid 2765a021-71f1-4136-b72b-81c2c6882946)
  1674. )
  1675. (wire (pts (xy 128.27 162.56) (xy 128.27 166.37))
  1676. (stroke (width 0) (type default) (color 0 0 0 0))
  1677. (uuid 27e3c71f-5a63-4710-8adf-b600b805ce02)
  1678. )
  1679. (wire (pts (xy 105.41 109.22) (xy 106.68 109.22))
  1680. (stroke (width 0) (type default) (color 0 0 0 0))
  1681. (uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
  1682. )
  1683. (wire (pts (xy 60.96 43.18) (xy 60.96 59.69))
  1684. (stroke (width 0) (type default) (color 0 0 0 0))
  1685. (uuid 2ad4b4ba-3abd-4313-bed9-1edce936a95e)
  1686. )
  1687. (wire (pts (xy 132.08 85.09) (xy 137.16 85.09))
  1688. (stroke (width 0) (type default) (color 0 0 0 0))
  1689. (uuid 2b7c4f37-42c0-4571-a44b-b808484d3d74)
  1690. )
  1691. (wire (pts (xy 120.65 154.94) (xy 120.65 157.48))
  1692. (stroke (width 0) (type default) (color 0 0 0 0))
  1693. (uuid 2ba21493-929b-4122-ac0f-7aeaf8602cef)
  1694. )
  1695. (wire (pts (xy 72.39 106.68) (xy 72.39 104.14))
  1696. (stroke (width 0) (type default) (color 0 0 0 0))
  1697. (uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
  1698. )
  1699. (wire (pts (xy 109.22 73.66) (xy 109.22 76.2))
  1700. (stroke (width 0) (type default) (color 0 0 0 0))
  1701. (uuid 2cd2fee2-51b2-4fcd-8c94-c435e6791358)
  1702. )
  1703. (wire (pts (xy 82.55 154.94) (xy 90.17 154.94))
  1704. (stroke (width 0) (type default) (color 0 0 0 0))
  1705. (uuid 2f4c659c-2ccb-4fb1-808e-7868af588a89)
  1706. )
  1707. (wire (pts (xy 194.31 35.56) (xy 228.6 35.56))
  1708. (stroke (width 0) (type default) (color 0 0 0 0))
  1709. (uuid 2ff1eef4-c959-45e1-8edc-bfa0a58f8f61)
  1710. )
  1711. (wire (pts (xy 40.64 162.56) (xy 43.18 162.56))
  1712. (stroke (width 0) (type default) (color 0 0 0 0))
  1713. (uuid 3273ec61-4a33-41c2-82bf-cde7c8587c1b)
  1714. )
  1715. (wire (pts (xy 233.68 136.525) (xy 233.68 134.366))
  1716. (stroke (width 0) (type default) (color 0 0 0 0))
  1717. (uuid 34f5f09a-8750-4357-8f74-cc2638b9286b)
  1718. )
  1719. (wire (pts (xy 152.4 93.98) (xy 152.4 91.44))
  1720. (stroke (width 0) (type default) (color 0 0 0 0))
  1721. (uuid 3675ad1a-972f-4046-b23a-e6ca04304035)
  1722. )
  1723. (wire (pts (xy 87.63 86.36) (xy 87.63 74.93))
  1724. (stroke (width 0) (type default) (color 0 0 0 0))
  1725. (uuid 3768cce7-1e64-480e-bb38-0c6794a852ac)
  1726. )
  1727. (wire (pts (xy 198.628 137.16) (xy 198.628 135.001))
  1728. (stroke (width 0) (type default) (color 0 0 0 0))
  1729. (uuid 37bf0919-f2db-44da-80eb-4de6a926c238)
  1730. )
  1731. (wire (pts (xy 198.12 78.74) (xy 198.12 85.09))
  1732. (stroke (width 0) (type default) (color 0 0 0 0))
  1733. (uuid 39614f9f-2df5-492b-a093-45b7a48e295d)
  1734. )
  1735. (wire (pts (xy 87.63 74.93) (xy 81.28 74.93))
  1736. (stroke (width 0) (type default) (color 0 0 0 0))
  1737. (uuid 3d213c37-de80-490e-9f45-2814d3fc958b)
  1738. )
  1739. (wire (pts (xy 109.22 154.94) (xy 113.03 154.94))
  1740. (stroke (width 0) (type default) (color 0 0 0 0))
  1741. (uuid 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0)
  1742. )
  1743. (wire (pts (xy 224.79 46.99) (xy 224.79 43.18))
  1744. (stroke (width 0) (type default) (color 0 0 0 0))
  1745. (uuid 3f206607-332e-4c96-8963-5302804f476f)
  1746. )
  1747. (wire (pts (xy 72.39 99.06) (xy 74.93 99.06))
  1748. (stroke (width 0) (type default) (color 0 0 0 0))
  1749. (uuid 41ab46ed-40f5-461d-81aa-1f02dc069a49)
  1750. )
  1751. (wire (pts (xy 109.22 152.4) (xy 109.22 154.94))
  1752. (stroke (width 0) (type default) (color 0 0 0 0))
  1753. (uuid 44e77d57-d16f-4723-a95f-1ac45276c458)
  1754. )
  1755. (wire (pts (xy 41.91 170.18) (xy 43.18 170.18))
  1756. (stroke (width 0) (type default) (color 0 0 0 0))
  1757. (uuid 45836d49-cd5f-417d-b0f6-c8b43d196a36)
  1758. )
  1759. (wire (pts (xy 120.65 154.94) (xy 128.27 154.94))
  1760. (stroke (width 0) (type default) (color 0 0 0 0))
  1761. (uuid 47957453-fce7-4d98-833c-e34bb8a852a5)
  1762. )
  1763. (wire (pts (xy 113.03 154.94) (xy 113.03 157.48))
  1764. (stroke (width 0) (type default) (color 0 0 0 0))
  1765. (uuid 4b534cd1-c414-4029-9164-e46766faf60e)
  1766. )
  1767. (wire (pts (xy 55.88 170.18) (xy 58.42 170.18))
  1768. (stroke (width 0) (type default) (color 0 0 0 0))
  1769. (uuid 4c144ffa-02d0-42da-aef1-f5175cbde9c0)
  1770. )
  1771. (wire (pts (xy 105.41 162.56) (xy 105.41 166.37))
  1772. (stroke (width 0) (type default) (color 0 0 0 0))
  1773. (uuid 4c6a1dad-7acf-4a52-99b0-316025d1ab04)
  1774. )
  1775. (wire (pts (xy 105.41 111.76) (xy 158.75 111.76))
  1776. (stroke (width 0) (type default) (color 0 0 0 0))
  1777. (uuid 4d55ddc7-73be-49f7-98ea-a0ba474cbdb0)
  1778. )
  1779. (wire (pts (xy 74.93 106.68) (xy 72.39 106.68))
  1780. (stroke (width 0) (type default) (color 0 0 0 0))
  1781. (uuid 4e7a230a-c1a4-4455-81ee-277835acf4a2)
  1782. )
  1783. (wire (pts (xy 48.26 30.48) (xy 48.26 53.34))
  1784. (stroke (width 0) (type default) (color 0 0 0 0))
  1785. (uuid 4ef07d45-f940-4cb6-bb96-2ddec13fd099)
  1786. )
  1787. (wire (pts (xy 180.848 137.16) (xy 183.515 137.16))
  1788. (stroke (width 0) (type default) (color 0 0 0 0))
  1789. (uuid 4f25c4fc-14cf-4558-b7ac-f20737640555)
  1790. )
  1791. (wire (pts (xy 72.39 104.14) (xy 74.93 104.14))
  1792. (stroke (width 0) (type default) (color 0 0 0 0))
  1793. (uuid 51f5536d-48d2-4807-be44-93f427952b0e)
  1794. )
  1795. (wire (pts (xy 270.51 21.59) (xy 270.51 22.86))
  1796. (stroke (width 0) (type default) (color 0 0 0 0))
  1797. (uuid 5206328f-de7d-41ba-bad8-f1768b7701cb)
  1798. )
  1799. (wire (pts (xy 113.03 162.56) (xy 113.03 166.37))
  1800. (stroke (width 0) (type default) (color 0 0 0 0))
  1801. (uuid 53ae21b8-f187-4817-8c27-1f06278d249b)
  1802. )
  1803. (wire (pts (xy 21.59 167.64) (xy 43.18 167.64))
  1804. (stroke (width 0) (type default) (color 0 0 0 0))
  1805. (uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
  1806. )
  1807. (wire (pts (xy 190.627 126.746) (xy 190.627 129.54))
  1808. (stroke (width 0) (type default) (color 0 0 0 0))
  1809. (uuid 54ee85ea-0b8d-457e-945f-ff9eebceba3f)
  1810. )
  1811. (wire (pts (xy 97.79 154.94) (xy 105.41 154.94))
  1812. (stroke (width 0) (type default) (color 0 0 0 0))
  1813. (uuid 5626e5e1-59f4-4773-828e-16057ddc3518)
  1814. )
  1815. (wire (pts (xy 179.07 85.09) (xy 186.69 85.09))
  1816. (stroke (width 0) (type default) (color 0 0 0 0))
  1817. (uuid 567a04d6-5dce-4e5f-9e8e-f34010ecea5b)
  1818. )
  1819. (wire (pts (xy 41.91 170.18) (xy 41.91 172.72))
  1820. (stroke (width 0) (type default) (color 0 0 0 0))
  1821. (uuid 583b0bf3-0699-44db-b975-a241ad040fa4)
  1822. )
  1823. (wire (pts (xy 218.567 126.111) (xy 225.679 126.111))
  1824. (stroke (width 0) (type default) (color 0 0 0 0))
  1825. (uuid 5851c22a-0a3a-467d-aed0-8c6fce901c20)
  1826. )
  1827. (wire (pts (xy 123.19 48.26) (xy 123.19 85.09))
  1828. (stroke (width 0) (type default) (color 0 0 0 0))
  1829. (uuid 59058a09-f800-497d-b8e1-cdf9632c6766)
  1830. )
  1831. (wire (pts (xy 71.12 127) (xy 71.12 129.54))
  1832. (stroke (width 0) (type default) (color 0 0 0 0))
  1833. (uuid 5c1d6842-15a5-4f73-b198-8836681840a1)
  1834. )
  1835. (wire (pts (xy 74.93 116.84) (xy 73.66 116.84))
  1836. (stroke (width 0) (type default) (color 0 0 0 0))
  1837. (uuid 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
  1838. )
  1839. (wire (pts (xy 250.571 132.334) (xy 250.571 133.604))
  1840. (stroke (width 0) (type default) (color 0 0 0 0))
  1841. (uuid 5e8d48cb-7ace-4432-87c8-faa9d821d187)
  1842. )
  1843. (wire (pts (xy 135.89 162.56) (xy 135.89 166.37))
  1844. (stroke (width 0) (type default) (color 0 0 0 0))
  1845. (uuid 5fba7ff8-02f1-4ac0-93c4-5bd7becbcf63)
  1846. )
  1847. (wire (pts (xy 113.03 154.94) (xy 120.65 154.94))
  1848. (stroke (width 0) (type default) (color 0 0 0 0))
  1849. (uuid 60960af7-b938-44a8-82b5-e9c36f2e6817)
  1850. )
  1851. (wire (pts (xy 82.55 162.56) (xy 82.55 166.37))
  1852. (stroke (width 0) (type default) (color 0 0 0 0))
  1853. (uuid 617498ce-8469-4f4b-9f2b-09a2437561eb)
  1854. )
  1855. (wire (pts (xy 167.132 94.488) (xy 167.132 97.028))
  1856. (stroke (width 0) (type default) (color 0 0 0 0))
  1857. (uuid 62c288bf-3974-4ba8-8b30-3ae083dadfa8)
  1858. )
  1859. (wire (pts (xy 40.64 170.18) (xy 41.91 170.18))
  1860. (stroke (width 0) (type default) (color 0 0 0 0))
  1861. (uuid 62cbcc21-2cec-41ab-be06-499e1a78d7e7)
  1862. )
  1863. (wire (pts (xy 52.07 48.26) (xy 63.5 48.26))
  1864. (stroke (width 0) (type default) (color 0 0 0 0))
  1865. (uuid 637c5908-9371-4d80-a19b-036e111ef5cd)
  1866. )
  1867. (wire (pts (xy 63.5 111.76) (xy 67.31 111.76))
  1868. (stroke (width 0) (type default) (color 0 0 0 0))
  1869. (uuid 644ebc55-9b92-49bd-8dfa-8a3a0dd8d76d)
  1870. )
  1871. (wire (pts (xy 183.515 134.874) (xy 183.515 137.16))
  1872. (stroke (width 0) (type default) (color 0 0 0 0))
  1873. (uuid 6560c77a-cee3-4766-bcdc-bf5c86e9fd52)
  1874. )
  1875. (wire (pts (xy 273.177 132.334) (xy 273.177 129.794))
  1876. (stroke (width 0) (type default) (color 0 0 0 0))
  1877. (uuid 65d9b961-bc4e-4d65-8bba-2130377e8825)
  1878. )
  1879. (wire (pts (xy 250.571 141.224) (xy 260.731 141.224))
  1880. (stroke (width 0) (type default) (color 0 0 0 0))
  1881. (uuid 6664b3ab-88e7-4c73-806a-7feabadfff56)
  1882. )
  1883. (wire (pts (xy 73.66 119.38) (xy 74.93 119.38))
  1884. (stroke (width 0) (type default) (color 0 0 0 0))
  1885. (uuid 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f)
  1886. )
  1887. (wire (pts (xy 90.17 132.08) (xy 90.17 133.35))
  1888. (stroke (width 0) (type default) (color 0 0 0 0))
  1889. (uuid 6a25c4e1-7129-430c-892b-6eecb6ffdb47)
  1890. )
  1891. (wire (pts (xy 183.515 129.794) (xy 183.515 126.746))
  1892. (stroke (width 0) (type default) (color 0 0 0 0))
  1893. (uuid 6cc1ea7d-55f6-4369-b048-791f13cffb50)
  1894. )
  1895. (wire (pts (xy 184.15 40.64) (xy 204.47 40.64))
  1896. (stroke (width 0) (type default) (color 0 0 0 0))
  1897. (uuid 6d646c30-feab-4e3e-adf0-5427b73b5f08)
  1898. )
  1899. (wire (pts (xy 128.27 154.94) (xy 135.89 154.94))
  1900. (stroke (width 0) (type default) (color 0 0 0 0))
  1901. (uuid 6e508bf2-c65e-4107-867d-a3cf9a86c69e)
  1902. )
  1903. (wire (pts (xy 247.142 130.81) (xy 247.142 132.334))
  1904. (stroke (width 0) (type default) (color 0 0 0 0))
  1905. (uuid 6ee39fd0-d42f-4ce6-88eb-bc72843e6747)
  1906. )
  1907. (wire (pts (xy 132.08 93.98) (xy 132.08 95.25))
  1908. (stroke (width 0) (type default) (color 0 0 0 0))
  1909. (uuid 6f78c1fb-f693-4737-b750-74e50c35a564)
  1910. )
  1911. (wire (pts (xy 105.41 101.6) (xy 132.08 101.6))
  1912. (stroke (width 0) (type default) (color 0 0 0 0))
  1913. (uuid 6fddc16f-ccc1-4ade-884c-d6efda461da8)
  1914. )
  1915. (wire (pts (xy 183.515 124.587) (xy 183.515 126.746))
  1916. (stroke (width 0) (type default) (color 0 0 0 0))
  1917. (uuid 70032097-9ebd-4b53-aafd-1777fcf209b8)
  1918. )
  1919. (wire (pts (xy 158.75 99.06) (xy 158.75 111.76))
  1920. (stroke (width 0) (type default) (color 0 0 0 0))
  1921. (uuid 71079b24-2e2e-494b-a607-86ccdae75c6e)
  1922. )
  1923. (wire (pts (xy 128.27 154.94) (xy 128.27 157.48))
  1924. (stroke (width 0) (type default) (color 0 0 0 0))
  1925. (uuid 73a6ec8e-8641-4014-be28-4611d398be32)
  1926. )
  1927. (wire (pts (xy 97.79 157.48) (xy 97.79 154.94))
  1928. (stroke (width 0) (type default) (color 0 0 0 0))
  1929. (uuid 7700fef1-de5b-4197-be2d-18385e1e18f9)
  1930. )
  1931. (wire (pts (xy 40.64 157.48) (xy 43.18 157.48))
  1932. (stroke (width 0) (type default) (color 0 0 0 0))
  1933. (uuid 778b0e81-d70b-4705-ae45-b4c475c88dab)
  1934. )
  1935. (wire (pts (xy 87.63 48.26) (xy 87.63 74.93))
  1936. (stroke (width 0) (type default) (color 0 0 0 0))
  1937. (uuid 7c11b885-29b4-4eb2-b782-dde8e3724f0c)
  1938. )
  1939. (wire (pts (xy 40.64 50.8) (xy 57.15 50.8))
  1940. (stroke (width 0) (type default) (color 0 0 0 0))
  1941. (uuid 80ace02d-cb21-4f08-bc25-572a9e56ff99)
  1942. )
  1943. (wire (pts (xy 26.67 163.83) (xy 26.67 165.1))
  1944. (stroke (width 0) (type default) (color 0 0 0 0))
  1945. (uuid 81ab7ed7-7160-4650-b711-4daa2902dc8b)
  1946. )
  1947. (wire (pts (xy 183.515 137.16) (xy 185.547 137.16))
  1948. (stroke (width 0) (type default) (color 0 0 0 0))
  1949. (uuid 83a37461-717b-405d-8cb1-aaf70165d7e3)
  1950. )
  1951. (wire (pts (xy 63.5 48.26) (xy 87.63 48.26))
  1952. (stroke (width 0) (type default) (color 0 0 0 0))
  1953. (uuid 844f01a0-ac23-4a99-910e-4e91c579bb2b)
  1954. )
  1955. (wire (pts (xy 135.89 154.94) (xy 135.89 157.48))
  1956. (stroke (width 0) (type default) (color 0 0 0 0))
  1957. (uuid 846ce0b5-f99e-4df4-8803-62f82ae6f3e3)
  1958. )
  1959. (wire (pts (xy 105.41 119.38) (xy 106.68 119.38))
  1960. (stroke (width 0) (type default) (color 0 0 0 0))
  1961. (uuid 848901d5-fdee-4920-a04d-fbc03c912e79)
  1962. )
  1963. (wire (pts (xy 109.22 81.28) (xy 109.22 82.55))
  1964. (stroke (width 0) (type default) (color 0 0 0 0))
  1965. (uuid 84d5cf13-52aa-4648-82e7-8be6e886a6b2)
  1966. )
  1967. (wire (pts (xy 198.12 71.12) (xy 198.12 73.66))
  1968. (stroke (width 0) (type default) (color 0 0 0 0))
  1969. (uuid 85621d90-361e-49b6-9449-b54a16cce021)
  1970. )
  1971. (wire (pts (xy 132.08 85.09) (xy 132.08 86.36))
  1972. (stroke (width 0) (type default) (color 0 0 0 0))
  1973. (uuid 85d211d4-76e7-4e49-a9c8-2e1cc8ab5805)
  1974. )
  1975. (wire (pts (xy 40.64 35.56) (xy 60.96 35.56))
  1976. (stroke (width 0) (type default) (color 0 0 0 0))
  1977. (uuid 86143bb0-7899-4df8-b1df-baa3c0ac7889)
  1978. )
  1979. (wire (pts (xy 41.91 177.8) (xy 41.91 179.07))
  1980. (stroke (width 0) (type default) (color 0 0 0 0))
  1981. (uuid 868b5d0d-f911-4724-9580-d9e69eb9f709)
  1982. )
  1983. (wire (pts (xy 189.23 33.02) (xy 189.23 38.1))
  1984. (stroke (width 0) (type default) (color 0 0 0 0))
  1985. (uuid 86f6faec-7eee-404c-a73a-2ae625f33d8c)
  1986. )
  1987. (wire (pts (xy 90.17 162.56) (xy 90.17 166.37))
  1988. (stroke (width 0) (type default) (color 0 0 0 0))
  1989. (uuid 87a32952-c8e5-40ba-af1d-1a8829a6c906)
  1990. )
  1991. (wire (pts (xy 55.88 167.64) (xy 58.42 167.64))
  1992. (stroke (width 0) (type default) (color 0 0 0 0))
  1993. (uuid 897277a3-b7ce-4d18-8c5f-1c984a246298)
  1994. )
  1995. (wire (pts (xy 40.64 53.34) (xy 48.26 53.34))
  1996. (stroke (width 0) (type default) (color 0 0 0 0))
  1997. (uuid 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0)
  1998. )
  1999. (wire (pts (xy 40.64 27.94) (xy 62.23 27.94))
  2000. (stroke (width 0) (type default) (color 0 0 0 0))
  2001. (uuid 8afe1dbf-1187-4362-8af8-a90ca839a6b3)
  2002. )
  2003. (wire (pts (xy 167.132 85.09) (xy 167.132 86.868))
  2004. (stroke (width 0) (type default) (color 0 0 0 0))
  2005. (uuid 8ef2a10b-6ba8-40c6-b6f1-cf8788edfa83)
  2006. )
  2007. (wire (pts (xy 120.65 162.56) (xy 120.65 166.37))
  2008. (stroke (width 0) (type default) (color 0 0 0 0))
  2009. (uuid 900cb6c8-1d05-4537-a4f0-9a7cc1a2ea1c)
  2010. )
  2011. (wire (pts (xy 105.41 154.94) (xy 105.41 157.48))
  2012. (stroke (width 0) (type default) (color 0 0 0 0))
  2013. (uuid 909d0bdd-8a15-40f2-9dfd-be4a5d2d6b25)
  2014. )
  2015. (wire (pts (xy 72.39 96.52) (xy 74.93 96.52))
  2016. (stroke (width 0) (type default) (color 0 0 0 0))
  2017. (uuid 92574e8a-729f-48de-afcb-97b4f5e826f8)
  2018. )
  2019. (wire (pts (xy 250.571 132.334) (xy 255.651 132.334))
  2020. (stroke (width 0) (type default) (color 0 0 0 0))
  2021. (uuid 929d24e8-8fe4-429e-bba3-cdfa11602801)
  2022. )
  2023. (wire (pts (xy 152.4 85.09) (xy 152.4 86.36))
  2024. (stroke (width 0) (type default) (color 0 0 0 0))
  2025. (uuid 92ec60c8-e914-4456-8d37-4b88fc0eb9c6)
  2026. )
  2027. (wire (pts (xy 218.567 134.239) (xy 218.567 136.525))
  2028. (stroke (width 0) (type default) (color 0 0 0 0))
  2029. (uuid 93ca7382-d465-4176-8ad7-4f087aa34d04)
  2030. )
  2031. (wire (pts (xy 97.79 74.93) (xy 101.6 74.93))
  2032. (stroke (width 0) (type default) (color 0 0 0 0))
  2033. (uuid 9a458d6a-a84c-4faf-913e-90bab231d3f8)
  2034. )
  2035. (wire (pts (xy 87.63 48.26) (xy 123.19 48.26))
  2036. (stroke (width 0) (type default) (color 0 0 0 0))
  2037. (uuid 9ed54841-4bec-491f-817d-b7e8b25ca06c)
  2038. )
  2039. (wire (pts (xy 250.571 138.684) (xy 250.571 141.224))
  2040. (stroke (width 0) (type default) (color 0 0 0 0))
  2041. (uuid 9f5d479d-4bbc-4b00-a8c8-c5e48ce14cd4)
  2042. )
  2043. (wire (pts (xy 95.25 86.36) (xy 95.25 73.66))
  2044. (stroke (width 0) (type default) (color 0 0 0 0))
  2045. (uuid a1d977e9-aa2c-4b7a-b2e3-8ff3b816e1f2)
  2046. )
  2047. (wire (pts (xy 270.51 30.48) (xy 270.51 31.75))
  2048. (stroke (width 0) (type default) (color 0 0 0 0))
  2049. (uuid a311f3c6-42e3-4584-9725-4a62ff91b6e3)
  2050. )
  2051. (wire (pts (xy 101.6 74.93) (xy 101.6 76.2))
  2052. (stroke (width 0) (type default) (color 0 0 0 0))
  2053. (uuid a4a80e68-9a9c-4dac-84a7-a9f3c47a0961)
  2054. )
  2055. (wire (pts (xy 233.68 124.206) (xy 233.68 129.286))
  2056. (stroke (width 0) (type default) (color 0 0 0 0))
  2057. (uuid a5cdf2a6-c819-4bd5-96ad-4821312c80b3)
  2058. )
  2059. (wire (pts (xy 55.88 160.02) (xy 58.42 160.02))
  2060. (stroke (width 0) (type default) (color 0 0 0 0))
  2061. (uuid a7c83b25-afbd-4974-8870-387db8f81a5c)
  2062. )
  2063. (wire (pts (xy 225.679 126.111) (xy 225.679 128.905))
  2064. (stroke (width 0) (type default) (color 0 0 0 0))
  2065. (uuid a8eced18-e207-4010-b49f-63d36f7b817e)
  2066. )
  2067. (wire (pts (xy 142.24 93.98) (xy 144.78 93.98))
  2068. (stroke (width 0) (type default) (color 0 0 0 0))
  2069. (uuid aaf0fd50-bb22-4408-be5a-88f5ba4193be)
  2070. )
  2071. (wire (pts (xy 260.731 141.224) (xy 260.731 139.954))
  2072. (stroke (width 0) (type default) (color 0 0 0 0))
  2073. (uuid abe1a5c5-be1f-4ffb-aa79-9cbbc3178fde)
  2074. )
  2075. (wire (pts (xy 158.75 85.09) (xy 167.132 85.09))
  2076. (stroke (width 0) (type default) (color 0 0 0 0))
  2077. (uuid b14aea3f-7e9b-4416-ac0e-1c7beb3cd27c)
  2078. )
  2079. (wire (pts (xy 224.79 43.18) (xy 228.6 43.18))
  2080. (stroke (width 0) (type default) (color 0 0 0 0))
  2081. (uuid b20fb198-6b0b-4cab-9ba8-ea9b46e8088f)
  2082. )
  2083. (wire (pts (xy 72.39 96.52) (xy 72.39 99.06))
  2084. (stroke (width 0) (type default) (color 0 0 0 0))
  2085. (uuid b6924901-677d-424a-a3f4-52c8dd1fa5f5)
  2086. )
  2087. (wire (pts (xy 74.93 124.46) (xy 71.12 124.46))
  2088. (stroke (width 0) (type default) (color 0 0 0 0))
  2089. (uuid b83b087e-7ec9-44e7-a1c9-81d5d26bbf79)
  2090. )
  2091. (wire (pts (xy 152.4 85.09) (xy 158.75 85.09))
  2092. (stroke (width 0) (type default) (color 0 0 0 0))
  2093. (uuid bb673c7a-d2b0-45b0-bfe2-0b113c092a77)
  2094. )
  2095. (wire (pts (xy 57.15 59.69) (xy 57.15 60.96))
  2096. (stroke (width 0) (type default) (color 0 0 0 0))
  2097. (uuid bc01f3e7-a131-4f66-8abc-cc13e855d5e5)
  2098. )
  2099. (wire (pts (xy 215.9 136.525) (xy 218.567 136.525))
  2100. (stroke (width 0) (type default) (color 0 0 0 0))
  2101. (uuid bf1b6178-966c-4001-aebe-eacb189d4d88)
  2102. )
  2103. (wire (pts (xy 209.55 40.64) (xy 228.6 40.64))
  2104. (stroke (width 0) (type default) (color 0 0 0 0))
  2105. (uuid c1d41740-a2ba-439a-8fc6-5497befb9509)
  2106. )
  2107. (wire (pts (xy 81.28 74.93) (xy 81.28 76.2))
  2108. (stroke (width 0) (type default) (color 0 0 0 0))
  2109. (uuid c202ddee-78ab-4ebb-beca-559aaf118430)
  2110. )
  2111. (wire (pts (xy 195.707 137.16) (xy 198.628 137.16))
  2112. (stroke (width 0) (type default) (color 0 0 0 0))
  2113. (uuid c28a4ef4-6cdc-4adf-9c46-846b71f2ae0f)
  2114. )
  2115. (wire (pts (xy 62.23 27.94) (xy 62.23 29.21))
  2116. (stroke (width 0) (type default) (color 0 0 0 0))
  2117. (uuid c8b93f12-bc5c-4ce5-b954-377d903895f1)
  2118. )
  2119. (wire (pts (xy 198.628 137.16) (xy 200.279 137.16))
  2120. (stroke (width 0) (type default) (color 0 0 0 0))
  2121. (uuid c9fd3ebb-5143-42e5-a01e-79101538302d)
  2122. )
  2123. (wire (pts (xy 249.174 141.224) (xy 250.571 141.224))
  2124. (stroke (width 0) (type default) (color 0 0 0 0))
  2125. (uuid cb236765-2f36-45ef-aef4-4d53c8e8815b)
  2126. )
  2127. (wire (pts (xy 218.567 136.525) (xy 220.599 136.525))
  2128. (stroke (width 0) (type default) (color 0 0 0 0))
  2129. (uuid cbe4f757-13c1-49fa-a85b-a3e2b86e5281)
  2130. )
  2131. (wire (pts (xy 60.96 59.69) (xy 57.15 59.69))
  2132. (stroke (width 0) (type default) (color 0 0 0 0))
  2133. (uuid cd2580a0-9e4c-4895-a13c-3b2ee33bafc4)
  2134. )
  2135. (wire (pts (xy 63.5 48.26) (xy 63.5 111.76))
  2136. (stroke (width 0) (type default) (color 0 0 0 0))
  2137. (uuid cfec88d2-05ea-4320-9be6-2559d89ee700)
  2138. )
  2139. (wire (pts (xy 52.07 53.34) (xy 52.07 48.26))
  2140. (stroke (width 0) (type default) (color 0 0 0 0))
  2141. (uuid d554632b-6dd0-47f8-b59b-3ce25177ca3e)
  2142. )
  2143. (wire (pts (xy 90.17 81.28) (xy 90.17 86.36))
  2144. (stroke (width 0) (type default) (color 0 0 0 0))
  2145. (uuid d5b0938b-9efb-4b58-8ac4-d92da9ed2e30)
  2146. )
  2147. (wire (pts (xy 71.12 127) (xy 74.93 127))
  2148. (stroke (width 0) (type default) (color 0 0 0 0))
  2149. (uuid d70bfdec-de0f-45e5-9452-2cd5d12b83b9)
  2150. )
  2151. (wire (pts (xy 73.66 121.92) (xy 74.93 121.92))
  2152. (stroke (width 0) (type default) (color 0 0 0 0))
  2153. (uuid d8f24303-7e52-49a9-9e82-8d60c3aaa009)
  2154. )
  2155. (wire (pts (xy 158.75 85.09) (xy 158.75 93.98))
  2156. (stroke (width 0) (type default) (color 0 0 0 0))
  2157. (uuid d9ad01c4-9416-4b1f-8447-afc1d446fa8a)
  2158. )
  2159. (wire (pts (xy 26.67 165.1) (xy 43.18 165.1))
  2160. (stroke (width 0) (type default) (color 0 0 0 0))
  2161. (uuid dbbbcbf5-ed09-4c20-902c-70f108158aba)
  2162. )
  2163. (wire (pts (xy 57.15 58.42) (xy 57.15 59.69))
  2164. (stroke (width 0) (type default) (color 0 0 0 0))
  2165. (uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1)
  2166. )
  2167. (wire (pts (xy 101.6 81.28) (xy 101.6 82.55))
  2168. (stroke (width 0) (type default) (color 0 0 0 0))
  2169. (uuid de2abbd8-9b48-47ba-b77e-4c65ca048af6)
  2170. )
  2171. (wire (pts (xy 132.08 91.44) (xy 132.08 93.98))
  2172. (stroke (width 0) (type default) (color 0 0 0 0))
  2173. (uuid de5c2064-b9e1-4057-a8cc-9308019ef4d3)
  2174. )
  2175. (wire (pts (xy 90.17 154.94) (xy 97.79 154.94))
  2176. (stroke (width 0) (type default) (color 0 0 0 0))
  2177. (uuid e20929e2-2c15-4a75-b1ed-9caa9bd27df7)
  2178. )
  2179. (wire (pts (xy 95.25 73.66) (xy 109.22 73.66))
  2180. (stroke (width 0) (type default) (color 0 0 0 0))
  2181. (uuid e5889358-36b5-4652-9d71-4d4aa652a144)
  2182. )
  2183. (wire (pts (xy 105.41 106.68) (xy 106.68 106.68))
  2184. (stroke (width 0) (type default) (color 0 0 0 0))
  2185. (uuid e6bf257d-5112-423c-b70a-adf8446f29da)
  2186. )
  2187. (wire (pts (xy 198.628 124.841) (xy 198.628 129.921))
  2188. (stroke (width 0) (type default) (color 0 0 0 0))
  2189. (uuid e8cae240-ed54-4f27-86d4-40255dc6a7bb)
  2190. )
  2191. (wire (pts (xy 265.811 132.334) (xy 273.177 132.334))
  2192. (stroke (width 0) (type default) (color 0 0 0 0))
  2193. (uuid e9f6bbf2-ea0f-4572-b5fe-66cc6291cddc)
  2194. )
  2195. (wire (pts (xy 72.39 111.76) (xy 74.93 111.76))
  2196. (stroke (width 0) (type default) (color 0 0 0 0))
  2197. (uuid eb83440d-aa8b-4a1e-9e93-00cf0de78de9)
  2198. )
  2199. (wire (pts (xy 90.17 157.48) (xy 90.17 154.94))
  2200. (stroke (width 0) (type default) (color 0 0 0 0))
  2201. (uuid ebadfd51-5a1d-4821-b341-8a1acb4abb01)
  2202. )
  2203. (wire (pts (xy 55.88 162.56) (xy 58.42 162.56))
  2204. (stroke (width 0) (type default) (color 0 0 0 0))
  2205. (uuid ed612f6d-67c1-4198-976d-84139f8d99bc)
  2206. )
  2207. (wire (pts (xy 123.19 85.09) (xy 132.08 85.09))
  2208. (stroke (width 0) (type default) (color 0 0 0 0))
  2209. (uuid ed9596e5-f4f2-4fc2-bb34-16ad21b3b120)
  2210. )
  2211. (wire (pts (xy 147.32 85.09) (xy 152.4 85.09))
  2212. (stroke (width 0) (type default) (color 0 0 0 0))
  2213. (uuid edb2db40-12f7-45b3-a514-2a1299ac0231)
  2214. )
  2215. (wire (pts (xy 40.64 58.42) (xy 43.18 58.42))
  2216. (stroke (width 0) (type default) (color 0 0 0 0))
  2217. (uuid f240e733-157e-4a15-812f-78f42d8a8322)
  2218. )
  2219. (wire (pts (xy 21.59 166.37) (xy 21.59 167.64))
  2220. (stroke (width 0) (type default) (color 0 0 0 0))
  2221. (uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
  2222. )
  2223. (wire (pts (xy 179.07 85.09) (xy 179.07 86.36))
  2224. (stroke (width 0) (type default) (color 0 0 0 0))
  2225. (uuid f364b99f-4502-4cba-a96d-4ed35ad108b5)
  2226. )
  2227. (wire (pts (xy 194.31 85.09) (xy 198.12 85.09))
  2228. (stroke (width 0) (type default) (color 0 0 0 0))
  2229. (uuid f413d088-6fb9-4a8a-88fd-666ff68b7fdf)
  2230. )
  2231. (wire (pts (xy 40.64 160.02) (xy 43.18 160.02))
  2232. (stroke (width 0) (type default) (color 0 0 0 0))
  2233. (uuid f565cf54-67ba-4424-8d47-087433645499)
  2234. )
  2235. (wire (pts (xy 149.86 93.98) (xy 152.4 93.98))
  2236. (stroke (width 0) (type default) (color 0 0 0 0))
  2237. (uuid f58fca4c-73af-416f-b236-f3bb62b8fd00)
  2238. )
  2239. (wire (pts (xy 105.41 121.92) (xy 106.68 121.92))
  2240. (stroke (width 0) (type default) (color 0 0 0 0))
  2241. (uuid f5a3f95b-1a53-41b4-b208-bf168c9d9c6d)
  2242. )
  2243. (wire (pts (xy 82.55 157.48) (xy 82.55 154.94))
  2244. (stroke (width 0) (type default) (color 0 0 0 0))
  2245. (uuid f6a5cab3-78e5-4acf-8c67-f401df2846d0)
  2246. )
  2247. (wire (pts (xy 189.23 38.1) (xy 228.6 38.1))
  2248. (stroke (width 0) (type default) (color 0 0 0 0))
  2249. (uuid f9211667-7b12-4b75-9ad5-a05daed4fec9)
  2250. )
  2251. (wire (pts (xy 97.79 162.56) (xy 97.79 166.37))
  2252. (stroke (width 0) (type default) (color 0 0 0 0))
  2253. (uuid f931f973-5615-451c-bb04-9a02aede6e6f)
  2254. )
  2255. (wire (pts (xy 43.18 55.88) (xy 43.18 58.42))
  2256. (stroke (width 0) (type default) (color 0 0 0 0))
  2257. (uuid fc13962a-a464-4fa2-b9a6-4c26667104ee)
  2258. )
  2259. (wire (pts (xy 40.64 55.88) (xy 43.18 55.88))
  2260. (stroke (width 0) (type default) (color 0 0 0 0))
  2261. (uuid fd34aa56-ded2-4e97-965a-a39457716f0c)
  2262. )
  2263. (wire (pts (xy 40.64 30.48) (xy 48.26 30.48))
  2264. (stroke (width 0) (type default) (color 0 0 0 0))
  2265. (uuid fe1ad3bd-92cc-4e1c-8cc9-a77278095945)
  2266. )
  2267. (wire (pts (xy 105.41 154.94) (xy 109.22 154.94))
  2268. (stroke (width 0) (type default) (color 0 0 0 0))
  2269. (uuid fe9bdc33-eab1-4bdc-9603-57decb38d2a2)
  2270. )
  2271. (label "A_B_SIDE" (at 105.41 166.37 270)
  2272. (effects (font (size 1.27 1.27)) (justify right bottom))
  2273. (uuid 02491520-945f-40c4-9160-4e5db9ac115d)
  2274. )
  2275. (label "SCL" (at 58.42 165.1 0)
  2276. (effects (font (size 1.27 1.27)) (justify left bottom))
  2277. (uuid 0ef46f11-6681-411e-ba9c-97446f926c88)
  2278. )
  2279. (label "USB_POWER" (at 123.19 48.26 0)
  2280. (effects (font (size 1.27 1.27)) (justify left bottom))
  2281. (uuid 1cbbfee4-06dd-44ee-af91-d336edf2459c)
  2282. )
  2283. (label "POWER_PDO2" (at 58.42 167.64 0)
  2284. (effects (font (size 1 1)) (justify left bottom))
  2285. (uuid 1d9dc91c-3457-4ca5-8e42-43be60ae0831)
  2286. )
  2287. (label "SDA" (at 58.42 162.56 0)
  2288. (effects (font (size 1.27 1.27)) (justify left bottom))
  2289. (uuid 20202fcf-8c54-4f66-98a7-71644c94d4bd)
  2290. )
  2291. (label "POWER_PDO3" (at 106.68 109.22 0)
  2292. (effects (font (size 1.27 1.27)) (justify left bottom))
  2293. (uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890)
  2294. )
  2295. (label "RST" (at 72.39 91.44 180)
  2296. (effects (font (size 1.27 1.27)) (justify right bottom))
  2297. (uuid 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a)
  2298. )
  2299. (label "CC1" (at 41.91 35.56 0)
  2300. (effects (font (size 1.27 1.27)) (justify left bottom))
  2301. (uuid 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0)
  2302. )
  2303. (label "A_B_SIDE" (at 106.68 119.38 0)
  2304. (effects (font (size 1.27 1.27)) (justify left bottom))
  2305. (uuid 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31)
  2306. )
  2307. (label "SCL" (at 73.66 116.84 180)
  2308. (effects (font (size 1.27 1.27)) (justify right bottom))
  2309. (uuid 3d3d9119-ad2c-4559-b2b1-12ed3d4fc7b8)
  2310. )
  2311. (label "SCL" (at 200.279 137.16 0)
  2312. (effects (font (size 1.27 1.27)) (justify left bottom))
  2313. (uuid 42424f2d-5671-4182-88eb-4d9b58e5496c)
  2314. )
  2315. (label "ATTACH" (at 40.64 162.56 180)
  2316. (effects (font (size 1.27 1.27)) (justify right bottom))
  2317. (uuid 4f3dc5bc-04e8-4dcc-91dd-8782e84f321d)
  2318. )
  2319. (label "CC2" (at 41.91 50.8 0)
  2320. (effects (font (size 1.27 1.27)) (justify left bottom))
  2321. (uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9)
  2322. )
  2323. (label "SDA" (at 73.66 119.38 180)
  2324. (effects (font (size 1.27 1.27)) (justify right bottom))
  2325. (uuid 64c39506-17ea-4b7f-9f0a-c03150e3c023)
  2326. )
  2327. (label "SDA" (at 235.331 136.525 0)
  2328. (effects (font (size 1.27 1.27)) (justify left bottom))
  2329. (uuid 73754aa8-3d2c-47f8-8c80-8d41e2aaca98)
  2330. )
  2331. (label "GPIO" (at 106.68 124.46 0)
  2332. (effects (font (size 1.27 1.27)) (justify left bottom))
  2333. (uuid 784e3230-2053-4bc9-a786-5ac2bd0df0f5)
  2334. )
  2335. (label "SDA" (at 90.17 166.37 270)
  2336. (effects (font (size 1.27 1.27)) (justify right bottom))
  2337. (uuid 7e90deb5-aef9-4d2b-a440-4cb0dbfaaa93)
  2338. )
  2339. (label "ATTACH" (at 113.03 166.37 270)
  2340. (effects (font (size 1.27 1.27)) (justify right bottom))
  2341. (uuid 83d85a81-e014-4ee9-9433-a9a045c80893)
  2342. )
  2343. (label "ALERT" (at 40.64 157.48 180)
  2344. (effects (font (size 1.27 1.27)) (justify right bottom))
  2345. (uuid 905b154b-e92b-469d-b2e2-340d67daddb7)
  2346. )
  2347. (label "ATTACH" (at 106.68 121.92 0)
  2348. (effects (font (size 1.27 1.27)) (justify left bottom))
  2349. (uuid 926b329f-cd0d-410a-bc4a-e36446f8965a)
  2350. )
  2351. (label "POWER_PDO2" (at 135.89 166.37 270)
  2352. (effects (font (size 1.27 1.27)) (justify right bottom))
  2353. (uuid 9c2a29da-c83f-4ec8-bbcf-9d775812af04)
  2354. )
  2355. (label "GPIO" (at 58.42 157.48 0)
  2356. (effects (font (size 1.27 1.27)) (justify left bottom))
  2357. (uuid b1731e91-7698-42fa-ad60-5c60fdd0e1fc)
  2358. )
  2359. (label "POWER_PDO3" (at 128.27 166.37 270)
  2360. (effects (font (size 1.27 1.27)) (justify right bottom))
  2361. (uuid b500fd76-a613-4f44-aac4-99213e86ff44)
  2362. )
  2363. (label "ALERT" (at 97.79 166.37 270)
  2364. (effects (font (size 1.27 1.27)) (justify right bottom))
  2365. (uuid bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3)
  2366. )
  2367. (label "GPIO" (at 120.65 166.37 270)
  2368. (effects (font (size 1.27 1.27)) (justify right bottom))
  2369. (uuid c0c62e93-8e84-4f2b-96ae-e90b55e0550a)
  2370. )
  2371. (label "RST" (at 40.64 170.18 180)
  2372. (effects (font (size 1.27 1.27)) (justify right bottom))
  2373. (uuid c2211bf7-6ed0-4800-9f21-d6a078bedba2)
  2374. )
  2375. (label "POWER_PDO3" (at 58.42 160.02 0)
  2376. (effects (font (size 1.27 1.27)) (justify left bottom))
  2377. (uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc)
  2378. )
  2379. (label "CC2" (at 72.39 104.14 180)
  2380. (effects (font (size 1.27 1.27)) (justify right bottom))
  2381. (uuid d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1)
  2382. )
  2383. (label "USB_POWER" (at 270.51 21.59 180)
  2384. (effects (font (size 1.27 1.27)) (justify right bottom))
  2385. (uuid dd4f23cd-8f89-457c-8b93-3828f8c20a8d)
  2386. )
  2387. (label "A_B_SIDE" (at 40.64 160.02 180)
  2388. (effects (font (size 1.27 1.27)) (justify right bottom))
  2389. (uuid dfba7148-cad3-4f40-9835-b1394bd30a2c)
  2390. )
  2391. (label "POWER_PDO2" (at 106.68 106.68 0)
  2392. (effects (font (size 1.27 1.27)) (justify left bottom))
  2393. (uuid f1c2e9b0-6f9f-485b-b482-d408df476d0f)
  2394. )
  2395. (label "SCL" (at 82.55 166.37 270)
  2396. (effects (font (size 1.27 1.27)) (justify right bottom))
  2397. (uuid faa605d9-8c1c-4d31-b7c1-3dc31a22eb34)
  2398. )
  2399. (label "ALERT" (at 73.66 121.92 180)
  2400. (effects (font (size 1 1)) (justify right bottom))
  2401. (uuid fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942)
  2402. )
  2403. (label "CC1" (at 72.39 96.52 180)
  2404. (effects (font (size 1.27 1.27)) (justify right bottom))
  2405. (uuid fe4068b9-89da-4c59-ba51-b5949772f5d8)
  2406. )
  2407. (global_label "prog_stusb" (shape input) (at 249.174 141.224 180) (fields_autoplaced)
  2408. (effects (font (size 1.27 1.27)) (justify right))
  2409. (uuid 5b3dbea3-bb5e-4c90-a86d-943b944fe624)
  2410. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 236.5688 141.1446 0)
  2411. (effects (font (size 1.27 1.27)) (justify right) hide)
  2412. )
  2413. )
  2414. (global_label "SCL_3V3" (shape input) (at 180.848 137.16 180) (fields_autoplaced)
  2415. (effects (font (size 1.27 1.27)) (justify right))
  2416. (uuid 6e56d71f-1303-4b70-95c8-6c6af36860c8)
  2417. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 170.5409 137.0806 0)
  2418. (effects (font (size 1.27 1.27)) (justify right) hide)
  2419. )
  2420. )
  2421. (global_label "SDA_3V3" (shape input) (at 215.9 136.525 180) (fields_autoplaced)
  2422. (effects (font (size 1.27 1.27)) (justify right))
  2423. (uuid bb56712b-4b0e-4149-b9f9-30060a5cb443)
  2424. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.5325 136.4456 0)
  2425. (effects (font (size 1.27 1.27)) (justify right) hide)
  2426. )
  2427. )
  2428. (symbol (lib_id "Device:Polyfuse_Small") (at 207.01 40.64 270) (unit 1)
  2429. (in_bom yes) (on_board yes)
  2430. (uuid 00000000-0000-0000-0000-00006110f4b4)
  2431. (property "Reference" "F8" (id 0) (at 209.55 39.37 90))
  2432. (property "Value" "Polyfuse 4.2A" (id 1) (at 194.31 39.37 90))
  2433. (property "Footprint" "Greaseweazle:Fuse_2018Metric" (id 2) (at 201.93 41.91 0)
  2434. (effects (font (size 1.27 1.27)) (justify left) hide)
  2435. )
  2436. (property "Datasheet" "~" (id 3) (at 207.01 40.64 0)
  2437. (effects (font (size 1.27 1.27)) hide)
  2438. )
  2439. (property "LCSC" "C21007" (id 4) (at 207.01 40.64 0)
  2440. (effects (font (size 1.27 1.27)) hide)
  2441. )
  2442. (pin "1" (uuid dc27d331-c243-40ab-8815-68c702f3aa36))
  2443. (pin "2" (uuid 879bb4e1-00e9-4bf5-a03c-0a7f5a77af5e))
  2444. )
  2445. (symbol (lib_id "power:+3V3") (at 184.15 33.02 0) (unit 1)
  2446. (in_bom yes) (on_board yes)
  2447. (uuid 00000000-0000-0000-0000-000061117579)
  2448. (property "Reference" "#PWR0165" (id 0) (at 184.15 36.83 0)
  2449. (effects (font (size 1.27 1.27)) hide)
  2450. )
  2451. (property "Value" "+3V3" (id 1) (at 184.531 28.6258 0))
  2452. (property "Footprint" "" (id 2) (at 184.15 33.02 0)
  2453. (effects (font (size 1.27 1.27)) hide)
  2454. )
  2455. (property "Datasheet" "" (id 3) (at 184.15 33.02 0)
  2456. (effects (font (size 1.27 1.27)) hide)
  2457. )
  2458. (pin "1" (uuid 247da9e8-616c-4371-925c-b395a31672d4))
  2459. )
  2460. (symbol (lib_id "Interface_USB:STUSB4500QTR") (at 90.17 109.22 0) (unit 1)
  2461. (in_bom yes) (on_board yes)
  2462. (uuid 00000000-0000-0000-0000-00006190f976)
  2463. (property "Reference" "U5" (id 0) (at 79.121 87.376 0))
  2464. (property "Value" "STUSB4500QTR" (id 1) (at 111.76 91.44 0))
  2465. (property "Footprint" "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm" (id 2) (at 90.17 109.22 0)
  2466. (effects (font (size 1.27 1.27)) hide)
  2467. )
  2468. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stusb4500.pdf" (id 3) (at 90.17 109.22 0)
  2469. (effects (font (size 1.27 1.27)) hide)
  2470. )
  2471. (property "LCSC" "C2678061" (id 4) (at 90.17 109.22 0)
  2472. (effects (font (size 1.27 1.27)) hide)
  2473. )
  2474. (pin "1" (uuid 3425781b-b72a-4954-9433-1cbb7c4d37ee))
  2475. (pin "10" (uuid 7332b70c-32c5-45a0-9316-fe688f88c3a3))
  2476. (pin "11" (uuid 0ce614e7-4f80-4594-bb07-45c431a8062d))
  2477. (pin "12" (uuid 856f6596-24c7-47ce-af05-4c96cf721881))
  2478. (pin "13" (uuid 8a641105-b9b5-4388-8b5f-d9d79a37df9e))
  2479. (pin "14" (uuid 2517d16b-4459-463e-9fa2-f4efc59d103a))
  2480. (pin "15" (uuid 280d6ee7-c046-40fc-a967-6565f9d6dce3))
  2481. (pin "16" (uuid 31fecab9-7718-482e-a805-7f68b0ac4f39))
  2482. (pin "17" (uuid 00a9b116-8a00-448f-8431-b4f00f716a8e))
  2483. (pin "18" (uuid f5ffbd3a-4751-40bb-bddd-4dbbb8192fe0))
  2484. (pin "19" (uuid 7f341189-b6f7-43e6-9a31-48b5891ebcde))
  2485. (pin "2" (uuid 6eb7084b-0ba1-4274-9ddd-603e6fe8a9a5))
  2486. (pin "20" (uuid cfc573fe-64e9-4db5-b8e0-c9045ef2b8ac))
  2487. (pin "21" (uuid 2ea3534b-0ba3-4060-8f70-34b855bf632d))
  2488. (pin "22" (uuid 525631a9-5f23-4181-b914-82576d59bea2))
  2489. (pin "23" (uuid 51a747e5-05b8-4d11-9d3e-96caab03c602))
  2490. (pin "24" (uuid 9afb93d1-5951-49fd-9681-cbf222c9e95f))
  2491. (pin "25" (uuid 85b5c0cd-6a7a-40c7-bfc2-5f9eeaf37f43))
  2492. (pin "3" (uuid fd68f558-f35f-4a16-8a4c-69b64e022f42))
  2493. (pin "4" (uuid 7f3ec87c-d4d9-4b56-b196-bf3063352aa2))
  2494. (pin "5" (uuid fe98f590-74ff-4a1b-97e4-6871b434549d))
  2495. (pin "6" (uuid 5727a7c1-f49b-4049-83a9-c38ae4150771))
  2496. (pin "7" (uuid 3fffdda7-2cb2-4ca6-863e-97949f232ff4))
  2497. (pin "8" (uuid 00f7c378-3be3-4c65-9b4f-8ad6a600bf4e))
  2498. (pin "9" (uuid 01e730ab-c3cc-48e0-8a71-4eeacc0ef825))
  2499. )
  2500. (symbol (lib_id "Greaseweazle:HRO-TYPE-C-31-M-12") (at 38.1 41.91 0) (unit 1)
  2501. (in_bom yes) (on_board yes)
  2502. (uuid 00000000-0000-0000-0000-000061910067)
  2503. (property "Reference" "USB2" (id 0) (at 33.8582 21.6662 0)
  2504. (effects (font (size 1.524 1.524)))
  2505. )
  2506. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 33.8582 24.3586 0)
  2507. (effects (font (size 1.524 1.524)))
  2508. )
  2509. (property "Footprint" "Greaseweazle:HRO-TYPE-C-31-M-12" (id 2) (at 38.1 41.91 0)
  2510. (effects (font (size 1.524 1.524)) hide)
  2511. )
  2512. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 38.1 41.91 0)
  2513. (effects (font (size 1.524 1.524)) hide)
  2514. )
  2515. (property "LCSC" "C165948" (id 4) (at 38.1 41.91 0)
  2516. (effects (font (size 1.27 1.27)) hide)
  2517. )
  2518. (pin "1" (uuid 70dfcaf7-07a6-40b0-aafd-6ce06d6e794c))
  2519. (pin "10" (uuid 2c5f3129-e0cd-43fe-afad-b677bf741a53))
  2520. (pin "11" (uuid 0241efd6-9329-48ae-8fe4-c21ea77b31b9))
  2521. (pin "12" (uuid 0e08892b-78f5-4149-9c6a-9bbbed3be1af))
  2522. (pin "13" (uuid de259ffa-59cd-469e-b575-5591576e5458))
  2523. (pin "2" (uuid a0e5c0cb-7588-45ea-acb1-dd37d343d9d3))
  2524. (pin "3" (uuid e27b6e6b-25d1-44de-964a-41a2587836fb))
  2525. (pin "4" (uuid 9ebacb1b-5b44-4808-b397-43e5fde29992))
  2526. (pin "5" (uuid 96aac173-132c-4500-8c5d-c048ae4f7cf8))
  2527. (pin "6" (uuid 9a76b45a-d66b-4c4b-a4de-b85725542dc2))
  2528. (pin "7" (uuid 58a5e6e6-7ccc-4601-b0bf-4655fd255447))
  2529. (pin "8" (uuid 1e966ab5-195d-40a3-95e8-1d2df0efca23))
  2530. (pin "9" (uuid 657f54aa-c1d8-4eb3-a91d-c296f458123e))
  2531. )
  2532. (symbol (lib_id "Connector_Generic:Conn_01x04") (at 233.68 38.1 0) (unit 1)
  2533. (in_bom yes) (on_board yes)
  2534. (uuid 00000000-0000-0000-0000-000061bef97d)
  2535. (property "Reference" "J4" (id 0) (at 235.712 37.0332 0)
  2536. (effects (font (size 1.27 1.27)) (justify left))
  2537. )
  2538. (property "Value" "Power Connector" (id 1) (at 235.712 39.3446 0)
  2539. (effects (font (size 1.27 1.27)) (justify left))
  2540. )
  2541. (property "Footprint" "Connector_Phoenix_MC:PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal" (id 2) (at 233.68 38.1 0)
  2542. (effects (font (size 1.27 1.27)) hide)
  2543. )
  2544. (property "Datasheet" "~" (id 3) (at 233.68 38.1 0)
  2545. (effects (font (size 1.27 1.27)) hide)
  2546. )
  2547. (pin "1" (uuid a101fd62-6ae4-41dd-91e6-aa5095ef2017))
  2548. (pin "2" (uuid dbbb11b7-cd69-43c0-8928-d98f48baee20))
  2549. (pin "3" (uuid b092272b-afc2-4b95-b23e-48c3d3080f6e))
  2550. (pin "4" (uuid c3a7841a-e0c6-42f0-b8cf-d4212abf8c31))
  2551. )
  2552. (symbol (lib_id "Device:D_Schottky") (at 270.51 26.67 270) (unit 1)
  2553. (in_bom yes) (on_board yes)
  2554. (uuid 00000000-0000-0000-0000-000061bf0f20)
  2555. (property "Reference" "D5" (id 0) (at 272.542 25.5016 90)
  2556. (effects (font (size 1.27 1.27)) (justify left))
  2557. )
  2558. (property "Value" "1N5819W" (id 1) (at 272.542 27.813 90)
  2559. (effects (font (size 1.27 1.27)) (justify left))
  2560. )
  2561. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 270.51 26.67 0)
  2562. (effects (font (size 1.27 1.27)) hide)
  2563. )
  2564. (property "Datasheet" "~" (id 3) (at 270.51 26.67 0)
  2565. (effects (font (size 1.27 1.27)) hide)
  2566. )
  2567. (property "LCSC" "C963381" (id 4) (at 270.51 26.67 90)
  2568. (effects (font (size 1.27 1.27)) hide)
  2569. )
  2570. (pin "1" (uuid 43226f66-a442-4737-ad4f-5492fd291113))
  2571. (pin "2" (uuid 1edb0f9c-cfbd-4b8a-9d25-20425905b4e8))
  2572. )
  2573. (symbol (lib_id "power:GND") (at 270.51 31.75 0) (unit 1)
  2574. (in_bom yes) (on_board yes)
  2575. (uuid 00000000-0000-0000-0000-000061bf280e)
  2576. (property "Reference" "#PWR0123" (id 0) (at 270.51 38.1 0)
  2577. (effects (font (size 1.27 1.27)) hide)
  2578. )
  2579. (property "Value" "GND" (id 1) (at 270.637 36.1442 0))
  2580. (property "Footprint" "" (id 2) (at 270.51 31.75 0)
  2581. (effects (font (size 1.27 1.27)) hide)
  2582. )
  2583. (property "Datasheet" "" (id 3) (at 270.51 31.75 0)
  2584. (effects (font (size 1.27 1.27)) hide)
  2585. )
  2586. (pin "1" (uuid a7edeba6-32fb-4467-bbf0-7758a1631d6e))
  2587. )
  2588. (symbol (lib_id "Device:D_Schottky") (at 57.15 54.61 270) (unit 1)
  2589. (in_bom yes) (on_board yes)
  2590. (uuid 00000000-0000-0000-0000-000061bf640d)
  2591. (property "Reference" "D3" (id 0) (at 53.213 52.197 90)
  2592. (effects (font (size 1.27 1.27)) (justify left))
  2593. )
  2594. (property "Value" "1N5819W" (id 1) (at 47.244 57.023 90)
  2595. (effects (font (size 1.27 1.27)) (justify left))
  2596. )
  2597. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 57.15 54.61 0)
  2598. (effects (font (size 1.27 1.27)) hide)
  2599. )
  2600. (property "Datasheet" "~" (id 3) (at 57.15 54.61 0)
  2601. (effects (font (size 1.27 1.27)) hide)
  2602. )
  2603. (property "LCSC" "C963381" (id 4) (at 57.15 54.61 90)
  2604. (effects (font (size 1.27 1.27)) hide)
  2605. )
  2606. (pin "1" (uuid 7051d2c8-93ab-4918-b6b7-0f4e2e438db7))
  2607. (pin "2" (uuid 49587fee-650a-490d-bdcd-c8e019b1dec1))
  2608. )
  2609. (symbol (lib_id "power:GND") (at 57.15 60.96 0) (unit 1)
  2610. (in_bom yes) (on_board yes)
  2611. (uuid 00000000-0000-0000-0000-000061bf71ab)
  2612. (property "Reference" "#PWR0124" (id 0) (at 57.15 67.31 0)
  2613. (effects (font (size 1.27 1.27)) hide)
  2614. )
  2615. (property "Value" "GND" (id 1) (at 57.277 65.3542 0))
  2616. (property "Footprint" "" (id 2) (at 57.15 60.96 0)
  2617. (effects (font (size 1.27 1.27)) hide)
  2618. )
  2619. (property "Datasheet" "" (id 3) (at 57.15 60.96 0)
  2620. (effects (font (size 1.27 1.27)) hide)
  2621. )
  2622. (pin "1" (uuid d7ba9663-96f1-4770-b9d0-0cb89858a01d))
  2623. )
  2624. (symbol (lib_id "Device:D_Schottky") (at 60.96 39.37 270) (unit 1)
  2625. (in_bom yes) (on_board yes)
  2626. (uuid 00000000-0000-0000-0000-000061bf74de)
  2627. (property "Reference" "D4" (id 0) (at 62.992 38.2016 90)
  2628. (effects (font (size 1.27 1.27)) (justify left))
  2629. )
  2630. (property "Value" "1N5819W" (id 1) (at 62.992 40.513 90)
  2631. (effects (font (size 1.27 1.27)) (justify left))
  2632. )
  2633. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 60.96 39.37 0)
  2634. (effects (font (size 1.27 1.27)) hide)
  2635. )
  2636. (property "Datasheet" "~" (id 3) (at 60.96 39.37 0)
  2637. (effects (font (size 1.27 1.27)) hide)
  2638. )
  2639. (property "LCSC" "C963381" (id 4) (at 60.96 39.37 90)
  2640. (effects (font (size 1.27 1.27)) hide)
  2641. )
  2642. (pin "1" (uuid e887b3f4-2774-4892-a871-9d5ac568e5bc))
  2643. (pin "2" (uuid 02d56d2c-b6b5-4ca1-9051-cd7f181a6d0c))
  2644. )
  2645. (symbol (lib_id "power:GND") (at 43.18 60.96 0) (unit 1)
  2646. (in_bom yes) (on_board yes)
  2647. (uuid 00000000-0000-0000-0000-000061bf8580)
  2648. (property "Reference" "#PWR0125" (id 0) (at 43.18 67.31 0)
  2649. (effects (font (size 1.27 1.27)) hide)
  2650. )
  2651. (property "Value" "GND" (id 1) (at 43.307 65.3542 0))
  2652. (property "Footprint" "" (id 2) (at 43.18 60.96 0)
  2653. (effects (font (size 1.27 1.27)) hide)
  2654. )
  2655. (property "Datasheet" "" (id 3) (at 43.18 60.96 0)
  2656. (effects (font (size 1.27 1.27)) hide)
  2657. )
  2658. (pin "1" (uuid d0240a6f-e390-4a0b-99a5-203a64802880))
  2659. )
  2660. (symbol (lib_id "power:GND") (at 62.23 29.21 0) (unit 1)
  2661. (in_bom yes) (on_board yes)
  2662. (uuid 00000000-0000-0000-0000-000061bf9eea)
  2663. (property "Reference" "#PWR0127" (id 0) (at 62.23 35.56 0)
  2664. (effects (font (size 1.27 1.27)) hide)
  2665. )
  2666. (property "Value" "GND" (id 1) (at 62.357 33.6042 0))
  2667. (property "Footprint" "" (id 2) (at 62.23 29.21 0)
  2668. (effects (font (size 1.27 1.27)) hide)
  2669. )
  2670. (property "Datasheet" "" (id 3) (at 62.23 29.21 0)
  2671. (effects (font (size 1.27 1.27)) hide)
  2672. )
  2673. (pin "1" (uuid 0b105dc7-5a90-4740-ad34-e83153f60b6b))
  2674. )
  2675. (symbol (lib_id "Device:R_Small") (at 69.85 111.76 270) (unit 1)
  2676. (in_bom yes) (on_board yes)
  2677. (uuid 00000000-0000-0000-0000-000061c03140)
  2678. (property "Reference" "R24" (id 0) (at 69.85 106.7816 90))
  2679. (property "Value" "1k" (id 1) (at 69.85 109.093 90))
  2680. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 69.85 111.76 0)
  2681. (effects (font (size 1.27 1.27)) hide)
  2682. )
  2683. (property "Datasheet" "~" (id 3) (at 69.85 111.76 0)
  2684. (effects (font (size 1.27 1.27)) hide)
  2685. )
  2686. (property "LCSC" "C11702" (id 4) (at 69.85 111.76 0)
  2687. (effects (font (size 1.27 1.27)) hide)
  2688. )
  2689. (pin "1" (uuid 351450a8-d1bf-47eb-ab4a-aa5c0db224b2))
  2690. (pin "2" (uuid 472eaa08-2758-4150-8990-0a853005dbd4))
  2691. )
  2692. (symbol (lib_id "power:GND") (at 71.12 129.54 0) (unit 1)
  2693. (in_bom yes) (on_board yes)
  2694. (uuid 00000000-0000-0000-0000-000061c052fd)
  2695. (property "Reference" "#PWR0122" (id 0) (at 71.12 135.89 0)
  2696. (effects (font (size 1.27 1.27)) hide)
  2697. )
  2698. (property "Value" "GND" (id 1) (at 71.247 133.9342 0))
  2699. (property "Footprint" "" (id 2) (at 71.12 129.54 0)
  2700. (effects (font (size 1.27 1.27)) hide)
  2701. )
  2702. (property "Datasheet" "" (id 3) (at 71.12 129.54 0)
  2703. (effects (font (size 1.27 1.27)) hide)
  2704. )
  2705. (pin "1" (uuid b9cd5083-35b7-4825-b507-5e62dfe30344))
  2706. )
  2707. (symbol (lib_id "power:GND") (at 90.17 133.35 0) (unit 1)
  2708. (in_bom yes) (on_board yes)
  2709. (uuid 00000000-0000-0000-0000-000061c054d5)
  2710. (property "Reference" "#PWR0126" (id 0) (at 90.17 139.7 0)
  2711. (effects (font (size 1.27 1.27)) hide)
  2712. )
  2713. (property "Value" "GND" (id 1) (at 90.297 137.7442 0))
  2714. (property "Footprint" "" (id 2) (at 90.17 133.35 0)
  2715. (effects (font (size 1.27 1.27)) hide)
  2716. )
  2717. (property "Datasheet" "" (id 3) (at 90.17 133.35 0)
  2718. (effects (font (size 1.27 1.27)) hide)
  2719. )
  2720. (pin "1" (uuid 0ac59ec9-f84b-4350-87e7-948612180aba))
  2721. )
  2722. (symbol (lib_id "Connector_Generic:Conn_02x06_Odd_Even") (at 48.26 162.56 0) (unit 1)
  2723. (in_bom yes) (on_board yes)
  2724. (uuid 00000000-0000-0000-0000-000061c0ccd0)
  2725. (property "Reference" "J9" (id 0) (at 49.53 151.9682 0))
  2726. (property "Value" "STUBS4500 Programming" (id 1) (at 49.53 154.2796 0))
  2727. (property "Footprint" "Connector_IDC:IDC-Header_2x06_P2.54mm_Vertical" (id 2) (at 48.26 162.56 0)
  2728. (effects (font (size 1.27 1.27)) hide)
  2729. )
  2730. (property "Datasheet" "~" (id 3) (at 48.26 162.56 0)
  2731. (effects (font (size 1.27 1.27)) hide)
  2732. )
  2733. (property "LCSC" "C692422" (id 4) (at 48.26 162.56 0)
  2734. (effects (font (size 1.27 1.27)) hide)
  2735. )
  2736. (pin "1" (uuid 2574a326-aa1d-4bcf-8364-fd35d10db213))
  2737. (pin "10" (uuid 8755b135-b5fe-48fe-9109-8ce3dfbe8780))
  2738. (pin "11" (uuid 3cf2c000-3616-426b-9ac8-59ed474077aa))
  2739. (pin "12" (uuid 5ff401c7-a87a-4fd1-8ae5-e1647154fc0a))
  2740. (pin "2" (uuid 8c85ec13-abe0-4b12-ab81-6c818fa62378))
  2741. (pin "3" (uuid f444e37b-3d38-4c66-800c-5059b12af8ff))
  2742. (pin "4" (uuid 2c8071c1-775f-4994-9467-a1572822bf14))
  2743. (pin "5" (uuid 35b67105-7f40-4c15-8a2d-b22ff18d73f8))
  2744. (pin "6" (uuid 63f1733c-ffca-486b-85c9-2aa8d5877607))
  2745. (pin "7" (uuid 5471880f-ef2b-4e4a-ae8b-fdeb22a70e42))
  2746. (pin "8" (uuid 54bd9890-ae76-46bb-a9b9-ec3f1200f8c3))
  2747. (pin "9" (uuid 7b967791-0f40-4fbf-b968-1468ecc9dd52))
  2748. )
  2749. (symbol (lib_id "power:GND") (at 58.42 173.99 0) (unit 1)
  2750. (in_bom yes) (on_board yes)
  2751. (uuid 00000000-0000-0000-0000-000061c163d3)
  2752. (property "Reference" "#PWR0128" (id 0) (at 58.42 180.34 0)
  2753. (effects (font (size 1.27 1.27)) hide)
  2754. )
  2755. (property "Value" "GND" (id 1) (at 58.547 178.3842 0))
  2756. (property "Footprint" "" (id 2) (at 58.42 173.99 0)
  2757. (effects (font (size 1.27 1.27)) hide)
  2758. )
  2759. (property "Datasheet" "" (id 3) (at 58.42 173.99 0)
  2760. (effects (font (size 1.27 1.27)) hide)
  2761. )
  2762. (pin "1" (uuid 3ef4f3e9-c1df-4c54-b445-6c8cd5c51b5e))
  2763. )
  2764. (symbol (lib_id "Device:R_Small") (at 41.91 175.26 0) (unit 1)
  2765. (in_bom yes) (on_board yes)
  2766. (uuid 00000000-0000-0000-0000-000061c1d791)
  2767. (property "Reference" "R25" (id 0) (at 43.4086 174.0916 0)
  2768. (effects (font (size 1.27 1.27)) (justify left))
  2769. )
  2770. (property "Value" "100k" (id 1) (at 43.4086 176.403 0)
  2771. (effects (font (size 1.27 1.27)) (justify left))
  2772. )
  2773. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 41.91 175.26 0)
  2774. (effects (font (size 1.27 1.27)) hide)
  2775. )
  2776. (property "Datasheet" "~" (id 3) (at 41.91 175.26 0)
  2777. (effects (font (size 1.27 1.27)) hide)
  2778. )
  2779. (property "LCSC" "C25741" (id 4) (at 41.91 175.26 0)
  2780. (effects (font (size 1.27 1.27)) hide)
  2781. )
  2782. (pin "1" (uuid e5e3f63f-284f-4ff7-858d-7cbcb1353a79))
  2783. (pin "2" (uuid dd8c595a-45eb-454b-9db9-381ded66c4f6))
  2784. )
  2785. (symbol (lib_id "power:GND") (at 41.91 179.07 0) (unit 1)
  2786. (in_bom yes) (on_board yes)
  2787. (uuid 00000000-0000-0000-0000-000061c1eb9a)
  2788. (property "Reference" "#PWR0129" (id 0) (at 41.91 185.42 0)
  2789. (effects (font (size 1.27 1.27)) hide)
  2790. )
  2791. (property "Value" "GND" (id 1) (at 42.037 183.4642 0))
  2792. (property "Footprint" "" (id 2) (at 41.91 179.07 0)
  2793. (effects (font (size 1.27 1.27)) hide)
  2794. )
  2795. (property "Datasheet" "" (id 3) (at 41.91 179.07 0)
  2796. (effects (font (size 1.27 1.27)) hide)
  2797. )
  2798. (pin "1" (uuid b258ea18-121e-4ca6-bc82-91226ab47be3))
  2799. )
  2800. (symbol (lib_id "power:VPP") (at 21.59 166.37 0) (unit 1)
  2801. (in_bom yes) (on_board yes)
  2802. (uuid 00000000-0000-0000-0000-000061c2bef0)
  2803. (property "Reference" "#PWR0133" (id 0) (at 21.59 170.18 0)
  2804. (effects (font (size 1.27 1.27)) hide)
  2805. )
  2806. (property "Value" "VPP" (id 1) (at 21.971 161.9758 0))
  2807. (property "Footprint" "" (id 2) (at 21.59 166.37 0)
  2808. (effects (font (size 1.27 1.27)) hide)
  2809. )
  2810. (property "Datasheet" "" (id 3) (at 21.59 166.37 0)
  2811. (effects (font (size 1.27 1.27)) hide)
  2812. )
  2813. (pin "1" (uuid 3de65d8a-b334-4013-a0d3-ed5faa0d0163))
  2814. )
  2815. (symbol (lib_id "power:VCC") (at 26.67 163.83 0) (unit 1)
  2816. (in_bom yes) (on_board yes)
  2817. (uuid 00000000-0000-0000-0000-000061c2dece)
  2818. (property "Reference" "#PWR0134" (id 0) (at 26.67 167.64 0)
  2819. (effects (font (size 1.27 1.27)) hide)
  2820. )
  2821. (property "Value" "VCC" (id 1) (at 27.051 159.4358 0))
  2822. (property "Footprint" "" (id 2) (at 26.67 163.83 0)
  2823. (effects (font (size 1.27 1.27)) hide)
  2824. )
  2825. (property "Datasheet" "" (id 3) (at 26.67 163.83 0)
  2826. (effects (font (size 1.27 1.27)) hide)
  2827. )
  2828. (pin "1" (uuid 59faa9aa-7048-4002-b2ef-9e3b32f5a376))
  2829. )
  2830. (symbol (lib_id "power:VPP") (at 109.22 152.4 0) (unit 1)
  2831. (in_bom yes) (on_board yes)
  2832. (uuid 00000000-0000-0000-0000-000061c30b1a)
  2833. (property "Reference" "#PWR0135" (id 0) (at 109.22 156.21 0)
  2834. (effects (font (size 1.27 1.27)) hide)
  2835. )
  2836. (property "Value" "VPP" (id 1) (at 109.601 148.0058 0))
  2837. (property "Footprint" "" (id 2) (at 109.22 152.4 0)
  2838. (effects (font (size 1.27 1.27)) hide)
  2839. )
  2840. (property "Datasheet" "" (id 3) (at 109.22 152.4 0)
  2841. (effects (font (size 1.27 1.27)) hide)
  2842. )
  2843. (pin "1" (uuid 670d398b-a026-4319-88ef-354daf94f43b))
  2844. )
  2845. (symbol (lib_id "Device:R_Small") (at 97.79 160.02 0) (unit 1)
  2846. (in_bom yes) (on_board yes)
  2847. (uuid 00000000-0000-0000-0000-000061c31387)
  2848. (property "Reference" "R28" (id 0) (at 99.2886 158.8516 0)
  2849. (effects (font (size 1.27 1.27)) (justify left))
  2850. )
  2851. (property "Value" "100k" (id 1) (at 99.2886 161.163 0)
  2852. (effects (font (size 1.27 1.27)) (justify left))
  2853. )
  2854. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 160.02 0)
  2855. (effects (font (size 1.27 1.27)) hide)
  2856. )
  2857. (property "Datasheet" "~" (id 3) (at 97.79 160.02 0)
  2858. (effects (font (size 1.27 1.27)) hide)
  2859. )
  2860. (property "LCSC" "C25741" (id 4) (at 97.79 160.02 0)
  2861. (effects (font (size 1.27 1.27)) hide)
  2862. )
  2863. (pin "1" (uuid 30b89d76-f430-4e58-b88d-70e26cfa2473))
  2864. (pin "2" (uuid c61333a2-ac62-4c51-b905-5dd1680b0464))
  2865. )
  2866. (symbol (lib_id "Device:R_Small") (at 105.41 160.02 0) (unit 1)
  2867. (in_bom yes) (on_board yes)
  2868. (uuid 00000000-0000-0000-0000-000061c36c80)
  2869. (property "Reference" "R29" (id 0) (at 106.9086 158.8516 0)
  2870. (effects (font (size 1.27 1.27)) (justify left))
  2871. )
  2872. (property "Value" "100k" (id 1) (at 106.9086 161.163 0)
  2873. (effects (font (size 1.27 1.27)) (justify left))
  2874. )
  2875. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 105.41 160.02 0)
  2876. (effects (font (size 1.27 1.27)) hide)
  2877. )
  2878. (property "Datasheet" "~" (id 3) (at 105.41 160.02 0)
  2879. (effects (font (size 1.27 1.27)) hide)
  2880. )
  2881. (property "LCSC" "C25741" (id 4) (at 105.41 160.02 0)
  2882. (effects (font (size 1.27 1.27)) hide)
  2883. )
  2884. (pin "1" (uuid 50ab4f70-9c2a-4718-9da2-f05f2b8c29a2))
  2885. (pin "2" (uuid 59861efe-7796-4de9-b230-98b5e8569710))
  2886. )
  2887. (symbol (lib_id "Device:R_Small") (at 113.03 160.02 0) (unit 1)
  2888. (in_bom yes) (on_board yes)
  2889. (uuid 00000000-0000-0000-0000-000061c39cf4)
  2890. (property "Reference" "R30" (id 0) (at 114.5286 158.8516 0)
  2891. (effects (font (size 1.27 1.27)) (justify left))
  2892. )
  2893. (property "Value" "100k" (id 1) (at 114.5286 161.163 0)
  2894. (effects (font (size 1.27 1.27)) (justify left))
  2895. )
  2896. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 113.03 160.02 0)
  2897. (effects (font (size 1.27 1.27)) hide)
  2898. )
  2899. (property "Datasheet" "~" (id 3) (at 113.03 160.02 0)
  2900. (effects (font (size 1.27 1.27)) hide)
  2901. )
  2902. (property "LCSC" "C25741" (id 4) (at 113.03 160.02 0)
  2903. (effects (font (size 1.27 1.27)) hide)
  2904. )
  2905. (pin "1" (uuid 20a59c7b-b4aa-4975-885b-f7190a1646ff))
  2906. (pin "2" (uuid c8177731-2a31-4518-bb2d-b94975c52a86))
  2907. )
  2908. (symbol (lib_id "Device:R_Small") (at 120.65 160.02 0) (unit 1)
  2909. (in_bom yes) (on_board yes)
  2910. (uuid 00000000-0000-0000-0000-000061c3b934)
  2911. (property "Reference" "R31" (id 0) (at 122.1486 158.8516 0)
  2912. (effects (font (size 1.27 1.27)) (justify left))
  2913. )
  2914. (property "Value" "100k" (id 1) (at 122.1486 161.163 0)
  2915. (effects (font (size 1.27 1.27)) (justify left))
  2916. )
  2917. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 120.65 160.02 0)
  2918. (effects (font (size 1.27 1.27)) hide)
  2919. )
  2920. (property "Datasheet" "~" (id 3) (at 120.65 160.02 0)
  2921. (effects (font (size 1.27 1.27)) hide)
  2922. )
  2923. (property "LCSC" "C25741" (id 4) (at 120.65 160.02 0)
  2924. (effects (font (size 1.27 1.27)) hide)
  2925. )
  2926. (pin "1" (uuid 85e37170-979a-475e-962f-5046f82a0f98))
  2927. (pin "2" (uuid ec826a7a-ba93-4097-b8c9-e0bdbe8c97f8))
  2928. )
  2929. (symbol (lib_id "Device:R_Small") (at 128.27 160.02 0) (unit 1)
  2930. (in_bom yes) (on_board yes)
  2931. (uuid 00000000-0000-0000-0000-000061c3df7b)
  2932. (property "Reference" "R32" (id 0) (at 129.7686 158.8516 0)
  2933. (effects (font (size 1.27 1.27)) (justify left))
  2934. )
  2935. (property "Value" "100k" (id 1) (at 129.7686 161.163 0)
  2936. (effects (font (size 1.27 1.27)) (justify left))
  2937. )
  2938. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 128.27 160.02 0)
  2939. (effects (font (size 1.27 1.27)) hide)
  2940. )
  2941. (property "Datasheet" "~" (id 3) (at 128.27 160.02 0)
  2942. (effects (font (size 1.27 1.27)) hide)
  2943. )
  2944. (property "LCSC" "C25741" (id 4) (at 128.27 160.02 0)
  2945. (effects (font (size 1.27 1.27)) hide)
  2946. )
  2947. (pin "1" (uuid 607343c6-61f2-466a-b4c9-bdcadbc06ac8))
  2948. (pin "2" (uuid 9fc3e7de-917d-471e-9baf-20e418f20549))
  2949. )
  2950. (symbol (lib_id "Device:R_Small") (at 135.89 160.02 0) (unit 1)
  2951. (in_bom yes) (on_board yes)
  2952. (uuid 00000000-0000-0000-0000-000061c4031d)
  2953. (property "Reference" "R33" (id 0) (at 137.3886 158.8516 0)
  2954. (effects (font (size 1.27 1.27)) (justify left))
  2955. )
  2956. (property "Value" "100k" (id 1) (at 137.3886 161.163 0)
  2957. (effects (font (size 1.27 1.27)) (justify left))
  2958. )
  2959. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 135.89 160.02 0)
  2960. (effects (font (size 1.27 1.27)) hide)
  2961. )
  2962. (property "Datasheet" "~" (id 3) (at 135.89 160.02 0)
  2963. (effects (font (size 1.27 1.27)) hide)
  2964. )
  2965. (property "LCSC" "C25741" (id 4) (at 135.89 160.02 0)
  2966. (effects (font (size 1.27 1.27)) hide)
  2967. )
  2968. (pin "1" (uuid d5614f03-f035-4e25-9529-67c77e219e77))
  2969. (pin "2" (uuid 6eff63ba-05d9-4b1e-bdb1-6c221af1bdc6))
  2970. )
  2971. (symbol (lib_id "Device:R_Small") (at 90.17 160.02 0) (unit 1)
  2972. (in_bom yes) (on_board yes)
  2973. (uuid 00000000-0000-0000-0000-000061c47e41)
  2974. (property "Reference" "R27" (id 0) (at 91.6686 158.8516 0)
  2975. (effects (font (size 1.27 1.27)) (justify left))
  2976. )
  2977. (property "Value" "4.7k" (id 1) (at 91.6686 161.163 0)
  2978. (effects (font (size 1.27 1.27)) (justify left))
  2979. )
  2980. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 90.17 160.02 0)
  2981. (effects (font (size 1.27 1.27)) hide)
  2982. )
  2983. (property "Datasheet" "~" (id 3) (at 90.17 160.02 0)
  2984. (effects (font (size 1.27 1.27)) hide)
  2985. )
  2986. (property "LCSC" "C25900" (id 4) (at 90.17 160.02 0)
  2987. (effects (font (size 1.27 1.27)) hide)
  2988. )
  2989. (pin "1" (uuid b4d82a93-5ee0-4850-b401-e830e3cf8c99))
  2990. (pin "2" (uuid 8071da13-aecd-4c14-8a5a-a873c33a997e))
  2991. )
  2992. (symbol (lib_id "Device:R_Small") (at 82.55 160.02 0) (unit 1)
  2993. (in_bom yes) (on_board yes)
  2994. (uuid 00000000-0000-0000-0000-000061c48580)
  2995. (property "Reference" "R26" (id 0) (at 84.0486 158.8516 0)
  2996. (effects (font (size 1.27 1.27)) (justify left))
  2997. )
  2998. (property "Value" "4.7k" (id 1) (at 84.0486 161.163 0)
  2999. (effects (font (size 1.27 1.27)) (justify left))
  3000. )
  3001. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 82.55 160.02 0)
  3002. (effects (font (size 1.27 1.27)) hide)
  3003. )
  3004. (property "Datasheet" "~" (id 3) (at 82.55 160.02 0)
  3005. (effects (font (size 1.27 1.27)) hide)
  3006. )
  3007. (property "LCSC" "C25900" (id 4) (at 82.55 160.02 0)
  3008. (effects (font (size 1.27 1.27)) hide)
  3009. )
  3010. (pin "1" (uuid 7701ca9c-75a6-4e70-90f9-47e48f65a494))
  3011. (pin "2" (uuid 673ce2ad-fd2d-4668-adc4-24b0f0f72888))
  3012. )
  3013. (symbol (lib_id "power:VCC") (at 90.17 81.28 0) (unit 1)
  3014. (in_bom yes) (on_board yes)
  3015. (uuid 00000000-0000-0000-0000-000061c5199c)
  3016. (property "Reference" "#PWR0136" (id 0) (at 90.17 85.09 0)
  3017. (effects (font (size 1.27 1.27)) hide)
  3018. )
  3019. (property "Value" "VCC" (id 1) (at 90.551 76.8858 0))
  3020. (property "Footprint" "" (id 2) (at 90.17 81.28 0)
  3021. (effects (font (size 1.27 1.27)) hide)
  3022. )
  3023. (property "Datasheet" "" (id 3) (at 90.17 81.28 0)
  3024. (effects (font (size 1.27 1.27)) hide)
  3025. )
  3026. (pin "1" (uuid 1dbcbf8d-9447-480a-a89a-7d1154f3b67e))
  3027. )
  3028. (symbol (lib_id "Device:C_Small") (at 101.6 78.74 0) (unit 1)
  3029. (in_bom yes) (on_board yes)
  3030. (uuid 00000000-0000-0000-0000-000061c54e11)
  3031. (property "Reference" "C24" (id 0) (at 103.9368 77.5716 0)
  3032. (effects (font (size 1.27 1.27)) (justify left))
  3033. )
  3034. (property "Value" "1uF" (id 1) (at 103.9368 79.883 0)
  3035. (effects (font (size 1.27 1.27)) (justify left))
  3036. )
  3037. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 101.6 78.74 0)
  3038. (effects (font (size 1.27 1.27)) hide)
  3039. )
  3040. (property "Datasheet" "~" (id 3) (at 101.6 78.74 0)
  3041. (effects (font (size 1.27 1.27)) hide)
  3042. )
  3043. (property "LCSC" "C15849" (id 4) (at 101.6 78.74 0)
  3044. (effects (font (size 1.27 1.27)) hide)
  3045. )
  3046. (pin "1" (uuid baa9b7b2-58cb-4085-859e-984d655e76c1))
  3047. (pin "2" (uuid f107fd98-c173-4588-bedf-c9ccf6aadf85))
  3048. )
  3049. (symbol (lib_id "Device:C_Small") (at 109.22 78.74 0) (unit 1)
  3050. (in_bom yes) (on_board yes)
  3051. (uuid 00000000-0000-0000-0000-000061c5650b)
  3052. (property "Reference" "C25" (id 0) (at 111.5568 77.5716 0)
  3053. (effects (font (size 1.27 1.27)) (justify left))
  3054. )
  3055. (property "Value" "1uF" (id 1) (at 111.5568 79.883 0)
  3056. (effects (font (size 1.27 1.27)) (justify left))
  3057. )
  3058. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 109.22 78.74 0)
  3059. (effects (font (size 1.27 1.27)) hide)
  3060. )
  3061. (property "Datasheet" "~" (id 3) (at 109.22 78.74 0)
  3062. (effects (font (size 1.27 1.27)) hide)
  3063. )
  3064. (property "LCSC" "C15849" (id 4) (at 109.22 78.74 0)
  3065. (effects (font (size 1.27 1.27)) hide)
  3066. )
  3067. (pin "1" (uuid 140cc9bc-79dd-427a-bb6b-3be9cd5502ca))
  3068. (pin "2" (uuid 5ce35358-949e-4b31-9900-f7dd213085a9))
  3069. )
  3070. (symbol (lib_id "Device:C_Small") (at 81.28 78.74 0) (unit 1)
  3071. (in_bom yes) (on_board yes)
  3072. (uuid 00000000-0000-0000-0000-000061c56c9b)
  3073. (property "Reference" "C23" (id 0) (at 83.6168 77.5716 0)
  3074. (effects (font (size 1.27 1.27)) (justify left))
  3075. )
  3076. (property "Value" "1uF" (id 1) (at 83.6168 79.883 0)
  3077. (effects (font (size 1.27 1.27)) (justify left))
  3078. )
  3079. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 81.28 78.74 0)
  3080. (effects (font (size 1.27 1.27)) hide)
  3081. )
  3082. (property "Datasheet" "~" (id 3) (at 81.28 78.74 0)
  3083. (effects (font (size 1.27 1.27)) hide)
  3084. )
  3085. (property "LCSC" "C15849" (id 4) (at 81.28 78.74 0)
  3086. (effects (font (size 1.27 1.27)) hide)
  3087. )
  3088. (pin "1" (uuid e669b4af-3098-403a-94b1-d09b1655ff76))
  3089. (pin "2" (uuid a993ca2d-07ab-47a8-b2ba-1a1c69698c7d))
  3090. )
  3091. (symbol (lib_id "power:GND") (at 81.28 82.55 0) (unit 1)
  3092. (in_bom yes) (on_board yes)
  3093. (uuid 00000000-0000-0000-0000-000061c576d0)
  3094. (property "Reference" "#PWR0137" (id 0) (at 81.28 88.9 0)
  3095. (effects (font (size 1.27 1.27)) hide)
  3096. )
  3097. (property "Value" "GND" (id 1) (at 77.343 84.201 0))
  3098. (property "Footprint" "" (id 2) (at 81.28 82.55 0)
  3099. (effects (font (size 1.27 1.27)) hide)
  3100. )
  3101. (property "Datasheet" "" (id 3) (at 81.28 82.55 0)
  3102. (effects (font (size 1.27 1.27)) hide)
  3103. )
  3104. (pin "1" (uuid 3d0b5663-95f5-4d6a-b7a3-0a4bab959f54))
  3105. )
  3106. (symbol (lib_id "power:GND") (at 101.6 82.55 0) (unit 1)
  3107. (in_bom yes) (on_board yes)
  3108. (uuid 00000000-0000-0000-0000-000061c5980b)
  3109. (property "Reference" "#PWR0138" (id 0) (at 101.6 88.9 0)
  3110. (effects (font (size 1.27 1.27)) hide)
  3111. )
  3112. (property "Value" "GND" (id 1) (at 101.727 86.9442 0))
  3113. (property "Footprint" "" (id 2) (at 101.6 82.55 0)
  3114. (effects (font (size 1.27 1.27)) hide)
  3115. )
  3116. (property "Datasheet" "" (id 3) (at 101.6 82.55 0)
  3117. (effects (font (size 1.27 1.27)) hide)
  3118. )
  3119. (pin "1" (uuid 530dde22-7d70-49d3-a479-365e2dae52d3))
  3120. )
  3121. (symbol (lib_id "power:GND") (at 109.22 82.55 0) (unit 1)
  3122. (in_bom yes) (on_board yes)
  3123. (uuid 00000000-0000-0000-0000-000061c5d42d)
  3124. (property "Reference" "#PWR0139" (id 0) (at 109.22 88.9 0)
  3125. (effects (font (size 1.27 1.27)) hide)
  3126. )
  3127. (property "Value" "GND" (id 1) (at 109.347 86.9442 0))
  3128. (property "Footprint" "" (id 2) (at 109.22 82.55 0)
  3129. (effects (font (size 1.27 1.27)) hide)
  3130. )
  3131. (property "Datasheet" "" (id 3) (at 109.22 82.55 0)
  3132. (effects (font (size 1.27 1.27)) hide)
  3133. )
  3134. (pin "1" (uuid 9e1d45bb-30b5-423f-ad35-bb2852ee37fa))
  3135. )
  3136. (symbol (lib_id "Transistor_FET:IRF7404") (at 142.24 87.63 270) (mirror x) (unit 1)
  3137. (in_bom yes) (on_board yes)
  3138. (uuid 00000000-0000-0000-0000-000061c7c2e9)
  3139. (property "Reference" "Q1" (id 0) (at 142.24 78.9432 90))
  3140. (property "Value" "AO4407C" (id 1) (at 142.24 81.2546 90))
  3141. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 140.335 82.55 0)
  3142. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3143. )
  3144. (property "Datasheet" "" (id 3) (at 142.24 87.63 90)
  3145. (effects (font (size 1.27 1.27)) (justify left) hide)
  3146. )
  3147. (property "LCSC" "C469397" (id 4) (at 142.24 87.63 90)
  3148. (effects (font (size 1.27 1.27)) hide)
  3149. )
  3150. (pin "1" (uuid 2e736f8d-a1dd-4349-90d5-60311e0ec61d))
  3151. (pin "2" (uuid eb47cba7-f413-4048-a35f-e802a4675f67))
  3152. (pin "3" (uuid a7577239-5989-4b88-b936-c14f68f367e0))
  3153. (pin "4" (uuid 5662960c-93a4-41ed-abe4-1101d5bc822f))
  3154. (pin "5" (uuid 0a616614-591a-48b8-9bed-bb3314ba8c5c))
  3155. (pin "6" (uuid c67326a1-42c1-40cf-a2e1-4ac41ebd7fb8))
  3156. (pin "7" (uuid 65547a2e-eea4-410b-8580-f7fedddacd36))
  3157. (pin "8" (uuid 8127ad6e-b709-46ca-9d69-cc5915180c67))
  3158. )
  3159. (symbol (lib_id "Device:R_Small") (at 132.08 88.9 0) (unit 1)
  3160. (in_bom yes) (on_board yes)
  3161. (uuid 00000000-0000-0000-0000-000061c9cd51)
  3162. (property "Reference" "R37" (id 0) (at 133.5786 87.7316 0)
  3163. (effects (font (size 1.27 1.27)) (justify left))
  3164. )
  3165. (property "Value" "100k" (id 1) (at 133.5786 90.043 0)
  3166. (effects (font (size 1.27 1.27)) (justify left))
  3167. )
  3168. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 132.08 88.9 0)
  3169. (effects (font (size 1.27 1.27)) hide)
  3170. )
  3171. (property "Datasheet" "~" (id 3) (at 132.08 88.9 0)
  3172. (effects (font (size 1.27 1.27)) hide)
  3173. )
  3174. (property "LCSC" "C25741" (id 4) (at 132.08 88.9 0)
  3175. (effects (font (size 1.27 1.27)) hide)
  3176. )
  3177. (pin "1" (uuid 210c8563-c583-4547-81eb-9aa35c6b5c70))
  3178. (pin "2" (uuid 18837a03-af72-4ead-b8be-61a29f6f18b8))
  3179. )
  3180. (symbol (lib_id "Device:R_Small") (at 132.08 97.79 0) (unit 1)
  3181. (in_bom yes) (on_board yes)
  3182. (uuid 00000000-0000-0000-0000-000061ca64e3)
  3183. (property "Reference" "R38" (id 0) (at 133.5786 96.6216 0)
  3184. (effects (font (size 1.27 1.27)) (justify left))
  3185. )
  3186. (property "Value" "22k" (id 1) (at 133.5786 98.933 0)
  3187. (effects (font (size 1.27 1.27)) (justify left))
  3188. )
  3189. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 132.08 97.79 0)
  3190. (effects (font (size 1.27 1.27)) hide)
  3191. )
  3192. (property "Datasheet" "~" (id 3) (at 132.08 97.79 0)
  3193. (effects (font (size 1.27 1.27)) hide)
  3194. )
  3195. (property "LCSC" "C25768" (id 4) (at 132.08 97.79 0)
  3196. (effects (font (size 1.27 1.27)) hide)
  3197. )
  3198. (pin "1" (uuid f502f8ed-a0b5-4601-a6b7-d297eee2175c))
  3199. (pin "2" (uuid 0a4529b1-120d-49db-a80e-79d39e70c730))
  3200. )
  3201. (symbol (lib_id "Device:R_Small") (at 147.32 93.98 270) (unit 1)
  3202. (in_bom yes) (on_board yes)
  3203. (uuid 00000000-0000-0000-0000-000061cb587b)
  3204. (property "Reference" "R39" (id 0) (at 147.32 89.0016 90))
  3205. (property "Value" "100" (id 1) (at 147.32 91.313 90))
  3206. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 147.32 93.98 0)
  3207. (effects (font (size 1.27 1.27)) hide)
  3208. )
  3209. (property "Datasheet" "~" (id 3) (at 147.32 93.98 0)
  3210. (effects (font (size 1.27 1.27)) hide)
  3211. )
  3212. (property "LCSC" "C25076" (id 4) (at 147.32 93.98 0)
  3213. (effects (font (size 1.27 1.27)) hide)
  3214. )
  3215. (pin "1" (uuid e58618cb-d735-4f69-82c2-1dc93ba73118))
  3216. (pin "2" (uuid 4ec4cd79-04cf-4d0b-abf3-606c618c406d))
  3217. )
  3218. (symbol (lib_id "Device:C_Small") (at 152.4 88.9 0) (unit 1)
  3219. (in_bom yes) (on_board yes)
  3220. (uuid 00000000-0000-0000-0000-000061cb935e)
  3221. (property "Reference" "C2" (id 0) (at 154.7368 87.7316 0)
  3222. (effects (font (size 1.27 1.27)) (justify left))
  3223. )
  3224. (property "Value" "100nF" (id 1) (at 154.7368 90.043 0)
  3225. (effects (font (size 1.27 1.27)) (justify left))
  3226. )
  3227. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 152.4 88.9 0)
  3228. (effects (font (size 1.27 1.27)) hide)
  3229. )
  3230. (property "Datasheet" "~" (id 3) (at 152.4 88.9 0)
  3231. (effects (font (size 1.27 1.27)) hide)
  3232. )
  3233. (property "LCSC" "C1525" (id 4) (at 152.4 88.9 0)
  3234. (effects (font (size 1.27 1.27)) hide)
  3235. )
  3236. (pin "1" (uuid 326ac6cc-8805-40a5-a773-a059409bd3df))
  3237. (pin "2" (uuid db9c910b-a43b-4237-be5d-ed5121724fb7))
  3238. )
  3239. (symbol (lib_id "Device:D_Schottky") (at 167.132 90.678 270) (unit 1)
  3240. (in_bom yes) (on_board yes)
  3241. (uuid 00000000-0000-0000-0000-000061cc4ade)
  3242. (property "Reference" "D2" (id 0) (at 169.164 89.5096 90)
  3243. (effects (font (size 1.27 1.27)) (justify left))
  3244. )
  3245. (property "Value" "1N5819W" (id 1) (at 169.164 91.821 90)
  3246. (effects (font (size 1.27 1.27)) (justify left))
  3247. )
  3248. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 167.132 90.678 0)
  3249. (effects (font (size 1.27 1.27)) hide)
  3250. )
  3251. (property "Datasheet" "~" (id 3) (at 167.132 90.678 0)
  3252. (effects (font (size 1.27 1.27)) hide)
  3253. )
  3254. (property "LCSC" "C963381" (id 4) (at 167.132 90.678 90)
  3255. (effects (font (size 1.27 1.27)) hide)
  3256. )
  3257. (pin "1" (uuid b6272060-81f4-4c07-977b-d3f091bb1206))
  3258. (pin "2" (uuid ee3eb24a-9db2-4742-bf54-aa7688ce4514))
  3259. )
  3260. (symbol (lib_id "power:GND") (at 167.132 97.028 0) (unit 1)
  3261. (in_bom yes) (on_board yes)
  3262. (uuid 00000000-0000-0000-0000-000061cc8dda)
  3263. (property "Reference" "#PWR0142" (id 0) (at 167.132 103.378 0)
  3264. (effects (font (size 1.27 1.27)) hide)
  3265. )
  3266. (property "Value" "GND" (id 1) (at 167.259 101.4222 0))
  3267. (property "Footprint" "" (id 2) (at 167.132 97.028 0)
  3268. (effects (font (size 1.27 1.27)) hide)
  3269. )
  3270. (property "Datasheet" "" (id 3) (at 167.132 97.028 0)
  3271. (effects (font (size 1.27 1.27)) hide)
  3272. )
  3273. (pin "1" (uuid 1acac358-3471-4b76-87c0-6ed3561286e7))
  3274. )
  3275. (symbol (lib_id "Device:R_Small") (at 158.75 96.52 180) (unit 1)
  3276. (in_bom yes) (on_board yes)
  3277. (uuid 00000000-0000-0000-0000-000061cdb3e1)
  3278. (property "Reference" "R40" (id 0) (at 160.2486 95.3516 0)
  3279. (effects (font (size 1.27 1.27)) (justify right))
  3280. )
  3281. (property "Value" "1k" (id 1) (at 160.2486 97.663 0)
  3282. (effects (font (size 1.27 1.27)) (justify right))
  3283. )
  3284. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 158.75 96.52 0)
  3285. (effects (font (size 1.27 1.27)) hide)
  3286. )
  3287. (property "Datasheet" "~" (id 3) (at 158.75 96.52 0)
  3288. (effects (font (size 1.27 1.27)) hide)
  3289. )
  3290. (property "LCSC" "C11702" (id 4) (at 158.75 96.52 0)
  3291. (effects (font (size 1.27 1.27)) hide)
  3292. )
  3293. (pin "1" (uuid f545156b-0248-46f8-b130-54bb8dbaa66f))
  3294. (pin "2" (uuid b254cd2f-92d5-4ad5-a67f-bc4a3d029979))
  3295. )
  3296. (symbol (lib_id "Device:C_Small") (at 179.07 88.9 0) (unit 1)
  3297. (in_bom yes) (on_board yes)
  3298. (uuid 00000000-0000-0000-0000-000061ce2725)
  3299. (property "Reference" "C3" (id 0) (at 181.4068 87.7316 0)
  3300. (effects (font (size 1.27 1.27)) (justify left))
  3301. )
  3302. (property "Value" "100uF" (id 1) (at 181.4068 90.043 0)
  3303. (effects (font (size 1.27 1.27)) (justify left))
  3304. )
  3305. (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (id 2) (at 179.07 88.9 0)
  3306. (effects (font (size 1.27 1.27)) hide)
  3307. )
  3308. (property "Datasheet" "~" (id 3) (at 179.07 88.9 0)
  3309. (effects (font (size 1.27 1.27)) hide)
  3310. )
  3311. (property "LCSC" "C49066" (id 4) (at 179.07 88.9 0)
  3312. (effects (font (size 1.27 1.27)) hide)
  3313. )
  3314. (pin "1" (uuid 4b10fb5e-e57c-48de-8995-e07357b61829))
  3315. (pin "2" (uuid 5953f6d1-72d1-4603-9d8b-98efac3de4d3))
  3316. )
  3317. (symbol (lib_id "power:GND") (at 179.07 92.71 0) (unit 1)
  3318. (in_bom yes) (on_board yes)
  3319. (uuid 00000000-0000-0000-0000-000061cebf91)
  3320. (property "Reference" "#PWR0144" (id 0) (at 179.07 99.06 0)
  3321. (effects (font (size 1.27 1.27)) hide)
  3322. )
  3323. (property "Value" "GND" (id 1) (at 179.197 97.1042 0))
  3324. (property "Footprint" "" (id 2) (at 179.07 92.71 0)
  3325. (effects (font (size 1.27 1.27)) hide)
  3326. )
  3327. (property "Datasheet" "" (id 3) (at 179.07 92.71 0)
  3328. (effects (font (size 1.27 1.27)) hide)
  3329. )
  3330. (pin "1" (uuid 6ecdef8d-5e48-4e91-aa7d-aff77cc6cee3))
  3331. )
  3332. (symbol (lib_id "Device:D_Schottky") (at 190.5 85.09 180) (unit 1)
  3333. (in_bom yes) (on_board yes)
  3334. (uuid 00000000-0000-0000-0000-0000620de268)
  3335. (property "Reference" "D8" (id 0) (at 191.6684 87.122 90)
  3336. (effects (font (size 1.27 1.27)) (justify left))
  3337. )
  3338. (property "Value" "1N5819W" (id 1) (at 189.357 87.122 90)
  3339. (effects (font (size 1.27 1.27)) (justify left))
  3340. )
  3341. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 190.5 85.09 0)
  3342. (effects (font (size 1.27 1.27)) hide)
  3343. )
  3344. (property "Datasheet" "~" (id 3) (at 190.5 85.09 0)
  3345. (effects (font (size 1.27 1.27)) hide)
  3346. )
  3347. (property "LCSC" "C963381" (id 4) (at 190.5 85.09 90)
  3348. (effects (font (size 1.27 1.27)) hide)
  3349. )
  3350. (pin "1" (uuid 6cfa13fa-3edc-4cf7-8457-2c5763fecb74))
  3351. (pin "2" (uuid c2980a35-3ea2-4bf3-9e4c-feb417814def))
  3352. )
  3353. (symbol (lib_id "power:+12V") (at 194.31 33.02 0) (unit 1)
  3354. (in_bom yes) (on_board yes)
  3355. (uuid 00000000-0000-0000-0000-000062114235)
  3356. (property "Reference" "#PWR0162" (id 0) (at 194.31 36.83 0)
  3357. (effects (font (size 1.27 1.27)) hide)
  3358. )
  3359. (property "Value" "+12V" (id 1) (at 194.691 28.6258 0))
  3360. (property "Footprint" "" (id 2) (at 194.31 33.02 0)
  3361. (effects (font (size 1.27 1.27)) hide)
  3362. )
  3363. (property "Datasheet" "" (id 3) (at 194.31 33.02 0)
  3364. (effects (font (size 1.27 1.27)) hide)
  3365. )
  3366. (pin "1" (uuid 572a0b45-4f2f-46da-a139-78a2a9141e92))
  3367. )
  3368. (symbol (lib_id "power:GND") (at 224.79 46.99 0) (unit 1)
  3369. (in_bom yes) (on_board yes)
  3370. (uuid 00000000-0000-0000-0000-00006212dbb5)
  3371. (property "Reference" "#PWR0164" (id 0) (at 224.79 53.34 0)
  3372. (effects (font (size 1.27 1.27)) hide)
  3373. )
  3374. (property "Value" "GND" (id 1) (at 224.917 51.3842 0))
  3375. (property "Footprint" "" (id 2) (at 224.79 46.99 0)
  3376. (effects (font (size 1.27 1.27)) hide)
  3377. )
  3378. (property "Datasheet" "" (id 3) (at 224.79 46.99 0)
  3379. (effects (font (size 1.27 1.27)) hide)
  3380. )
  3381. (pin "1" (uuid 3714d7ab-da0a-493a-b871-4b3522fa0a09))
  3382. )
  3383. (symbol (lib_id "power:+24V") (at 198.12 71.12 0) (unit 1)
  3384. (in_bom yes) (on_board yes)
  3385. (uuid 00000000-0000-0000-0000-000062230106)
  3386. (property "Reference" "#PWR0130" (id 0) (at 198.12 74.93 0)
  3387. (effects (font (size 1.27 1.27)) hide)
  3388. )
  3389. (property "Value" "+24V" (id 1) (at 198.501 66.7258 0))
  3390. (property "Footprint" "" (id 2) (at 198.12 71.12 0)
  3391. (effects (font (size 1.27 1.27)) hide)
  3392. )
  3393. (property "Datasheet" "" (id 3) (at 198.12 71.12 0)
  3394. (effects (font (size 1.27 1.27)) hide)
  3395. )
  3396. (pin "1" (uuid 724d998a-d04a-46ee-9b29-fb7b4ebc9a6e))
  3397. )
  3398. (symbol (lib_id "Device:Polyfuse_Small") (at 198.12 76.2 0) (unit 1)
  3399. (in_bom yes) (on_board yes)
  3400. (uuid 00000000-0000-0000-0000-00006223ce57)
  3401. (property "Reference" "F2" (id 0) (at 199.8472 75.0316 0)
  3402. (effects (font (size 1.27 1.27)) (justify left))
  3403. )
  3404. (property "Value" "Polyfuse 2.2A" (id 1) (at 199.8472 77.343 0)
  3405. (effects (font (size 1.27 1.27)) (justify left))
  3406. )
  3407. (property "Footprint" "Greaseweazle:Fuse_2018Metric" (id 2) (at 199.39 81.28 0)
  3408. (effects (font (size 1.27 1.27)) (justify left) hide)
  3409. )
  3410. (property "Datasheet" "~" (id 3) (at 198.12 76.2 0)
  3411. (effects (font (size 1.27 1.27)) hide)
  3412. )
  3413. (property "LCSC" "C122658" (id 4) (at 198.12 76.2 0)
  3414. (effects (font (size 1.27 1.27)) hide)
  3415. )
  3416. (pin "1" (uuid 9fd282ca-6773-41ed-b185-167b6de47d11))
  3417. (pin "2" (uuid e49f236d-62b0-4c86-82e7-1fc5f1177114))
  3418. )
  3419. (symbol (lib_id "Device:R_Small") (at 198.628 132.461 0) (unit 1)
  3420. (in_bom yes) (on_board yes) (fields_autoplaced)
  3421. (uuid 0ba63d92-8d75-4d10-8d9d-9abe26b02317)
  3422. (property "Reference" "R36" (id 0) (at 201.295 131.1909 0)
  3423. (effects (font (size 1.27 1.27)) (justify left))
  3424. )
  3425. (property "Value" "10k" (id 1) (at 201.295 133.7309 0)
  3426. (effects (font (size 1.27 1.27)) (justify left))
  3427. )
  3428. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 198.628 132.461 0)
  3429. (effects (font (size 1.27 1.27)) hide)
  3430. )
  3431. (property "Datasheet" "~" (id 3) (at 198.628 132.461 0)
  3432. (effects (font (size 1.27 1.27)) hide)
  3433. )
  3434. (property "LCSC" "C25744" (id 4) (at 198.628 132.461 0)
  3435. (effects (font (size 1.27 1.27)) hide)
  3436. )
  3437. (pin "1" (uuid 76b56147-6023-4605-9f59-b06dc9b2d245))
  3438. (pin "2" (uuid abdd0dcf-9989-4568-af26-9159f5927f07))
  3439. )
  3440. (symbol (lib_id "power:+5V") (at 233.68 124.206 0) (unit 1)
  3441. (in_bom yes) (on_board yes) (fields_autoplaced)
  3442. (uuid 131544d1-99b1-4185-bbe4-5057bbb29d1c)
  3443. (property "Reference" "#PWR0180" (id 0) (at 233.68 128.016 0)
  3444. (effects (font (size 1.27 1.27)) hide)
  3445. )
  3446. (property "Value" "+5V" (id 1) (at 233.68 118.7691 0))
  3447. (property "Footprint" "" (id 2) (at 233.68 124.206 0)
  3448. (effects (font (size 1.27 1.27)) hide)
  3449. )
  3450. (property "Datasheet" "" (id 3) (at 233.68 124.206 0)
  3451. (effects (font (size 1.27 1.27)) hide)
  3452. )
  3453. (pin "1" (uuid 6b94899f-886c-4115-8d6a-1eb9c0b9ba75))
  3454. )
  3455. (symbol (lib_id "Device:R_Small") (at 218.567 131.699 0) (unit 1)
  3456. (in_bom yes) (on_board yes)
  3457. (uuid 135a8189-cb8f-427c-98c0-5b42cbd7be3a)
  3458. (property "Reference" "R41" (id 0) (at 214.249 130.81 0)
  3459. (effects (font (size 1.27 1.27)) (justify left))
  3460. )
  3461. (property "Value" "10k" (id 1) (at 213.614 132.842 0)
  3462. (effects (font (size 1.27 1.27)) (justify left))
  3463. )
  3464. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 218.567 131.699 0)
  3465. (effects (font (size 1.27 1.27)) hide)
  3466. )
  3467. (property "Datasheet" "~" (id 3) (at 218.567 131.699 0)
  3468. (effects (font (size 1.27 1.27)) hide)
  3469. )
  3470. (property "LCSC" "C25744" (id 4) (at 218.567 131.699 0)
  3471. (effects (font (size 1.27 1.27)) hide)
  3472. )
  3473. (pin "1" (uuid b65dfa74-cef8-40bb-bf1e-31a1e03acd6f))
  3474. (pin "2" (uuid b41062b2-9436-4041-9dfe-adb881c89fac))
  3475. )
  3476. (symbol (lib_id "Transistor_FET:AO3401A") (at 260.731 134.874 90) (unit 1)
  3477. (in_bom yes) (on_board yes) (fields_autoplaced)
  3478. (uuid 232d0c9a-0752-47ab-a532-e1a9d47faefb)
  3479. (property "Reference" "Q4" (id 0) (at 260.731 125.73 90))
  3480. (property "Value" "AO3401A" (id 1) (at 260.731 128.27 90))
  3481. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 262.636 129.794 0)
  3482. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3483. )
  3484. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (id 3) (at 260.731 134.874 0)
  3485. (effects (font (size 1.27 1.27)) (justify left) hide)
  3486. )
  3487. (pin "1" (uuid 323ddd7f-366b-4dd9-8d22-bc62470b5400))
  3488. (pin "2" (uuid e76d5a4d-7038-4f07-918c-10c728499ae3))
  3489. (pin "3" (uuid b9cce91f-3d7e-446c-9dc5-e489a1e02a79))
  3490. )
  3491. (symbol (lib_id "power:+5V") (at 198.628 124.841 0) (unit 1)
  3492. (in_bom yes) (on_board yes) (fields_autoplaced)
  3493. (uuid 2aa51d3c-cec4-4e75-86a2-706373fb593f)
  3494. (property "Reference" "#PWR0181" (id 0) (at 198.628 128.651 0)
  3495. (effects (font (size 1.27 1.27)) hide)
  3496. )
  3497. (property "Value" "+5V" (id 1) (at 198.628 119.4041 0))
  3498. (property "Footprint" "" (id 2) (at 198.628 124.841 0)
  3499. (effects (font (size 1.27 1.27)) hide)
  3500. )
  3501. (property "Datasheet" "" (id 3) (at 198.628 124.841 0)
  3502. (effects (font (size 1.27 1.27)) hide)
  3503. )
  3504. (pin "1" (uuid a5dc79bf-72bd-4f95-b64a-e83d652e0fce))
  3505. )
  3506. (symbol (lib_id "power:+3V3") (at 183.515 124.587 0) (unit 1)
  3507. (in_bom yes) (on_board yes) (fields_autoplaced)
  3508. (uuid 4ca44258-1e5c-44c1-ba8a-36ba31b68f52)
  3509. (property "Reference" "#PWR0179" (id 0) (at 183.515 128.397 0)
  3510. (effects (font (size 1.27 1.27)) hide)
  3511. )
  3512. (property "Value" "+3V3" (id 1) (at 183.515 119.38 0))
  3513. (property "Footprint" "" (id 2) (at 183.515 124.587 0)
  3514. (effects (font (size 1.27 1.27)) hide)
  3515. )
  3516. (property "Datasheet" "" (id 3) (at 183.515 124.587 0)
  3517. (effects (font (size 1.27 1.27)) hide)
  3518. )
  3519. (pin "1" (uuid d6544c3c-b9f6-48ed-bfc0-0bb2ee39069a))
  3520. )
  3521. (symbol (lib_id "Device:R_Small") (at 250.571 136.144 0) (unit 1)
  3522. (in_bom yes) (on_board yes)
  3523. (uuid 4ddcf6b9-fab3-458a-ba6a-f6692afff192)
  3524. (property "Reference" "R43" (id 0) (at 252.0696 134.9756 0)
  3525. (effects (font (size 1.27 1.27)) (justify left))
  3526. )
  3527. (property "Value" "100k" (id 1) (at 252.0696 137.287 0)
  3528. (effects (font (size 1.27 1.27)) (justify left))
  3529. )
  3530. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 250.571 136.144 0)
  3531. (effects (font (size 1.27 1.27)) hide)
  3532. )
  3533. (property "Datasheet" "~" (id 3) (at 250.571 136.144 0)
  3534. (effects (font (size 1.27 1.27)) hide)
  3535. )
  3536. (property "LCSC" "C25741" (id 4) (at 250.571 136.144 0)
  3537. (effects (font (size 1.27 1.27)) hide)
  3538. )
  3539. (pin "1" (uuid 9181bd00-098e-4db9-8ae0-e3a266f35a69))
  3540. (pin "2" (uuid 4684a1ec-d576-42fc-a95a-998372dffd4f))
  3541. )
  3542. (symbol (lib_id "power:+5VA") (at 189.23 33.02 0) (unit 1)
  3543. (in_bom yes) (on_board yes) (fields_autoplaced)
  3544. (uuid 5f913140-2c34-4501-b371-858a0c11d771)
  3545. (property "Reference" "#PWR0163" (id 0) (at 189.23 36.83 0)
  3546. (effects (font (size 1.27 1.27)) hide)
  3547. )
  3548. (property "Value" "+5VA" (id 1) (at 189.23 28.448 0))
  3549. (property "Footprint" "" (id 2) (at 189.23 33.02 0)
  3550. (effects (font (size 1.27 1.27)) hide)
  3551. )
  3552. (property "Datasheet" "" (id 3) (at 189.23 33.02 0)
  3553. (effects (font (size 1.27 1.27)) hide)
  3554. )
  3555. (pin "1" (uuid 17a7019e-9055-4bb2-a835-0d91d0fdd442))
  3556. )
  3557. (symbol (lib_id "Transistor_FET:BSS138") (at 225.679 133.985 270) (unit 1)
  3558. (in_bom yes) (on_board yes) (fields_autoplaced)
  3559. (uuid 603b1750-0482-4332-a28b-9b74150b9566)
  3560. (property "Reference" "Q3" (id 0) (at 225.679 141.605 90))
  3561. (property "Value" "BSS138" (id 1) (at 225.679 144.145 90))
  3562. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 223.774 139.065 0)
  3563. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3564. )
  3565. (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" (id 3) (at 225.679 133.985 0)
  3566. (effects (font (size 1.27 1.27)) (justify left) hide)
  3567. )
  3568. (property "LCSC" "C112239" (id 4) (at 225.679 133.985 0)
  3569. (effects (font (size 1.27 1.27)) hide)
  3570. )
  3571. (pin "1" (uuid 2b1d859f-e089-47a0-b2b5-c7c6af44bc62))
  3572. (pin "2" (uuid 5ce2b538-e262-444d-8a0d-ae353703919a))
  3573. (pin "3" (uuid f80387a1-4522-42ab-88b7-6c80a8d5d796))
  3574. )
  3575. (symbol (lib_id "power:VPP") (at 273.177 129.794 0) (unit 1)
  3576. (in_bom yes) (on_board yes)
  3577. (uuid 7366efb4-8376-4153-8376-8e8efa53da71)
  3578. (property "Reference" "#PWR0176" (id 0) (at 273.177 133.604 0)
  3579. (effects (font (size 1.27 1.27)) hide)
  3580. )
  3581. (property "Value" "VPP" (id 1) (at 273.558 125.3998 0))
  3582. (property "Footprint" "" (id 2) (at 273.177 129.794 0)
  3583. (effects (font (size 1.27 1.27)) hide)
  3584. )
  3585. (property "Datasheet" "" (id 3) (at 273.177 129.794 0)
  3586. (effects (font (size 1.27 1.27)) hide)
  3587. )
  3588. (pin "1" (uuid 4e1bae11-93b4-445c-b6dc-2254f9ace799))
  3589. )
  3590. (symbol (lib_id "Transistor_FET:BSS138") (at 190.627 134.62 270) (unit 1)
  3591. (in_bom yes) (on_board yes) (fields_autoplaced)
  3592. (uuid 7cb5267b-02e0-46f9-9a48-d31c48814c00)
  3593. (property "Reference" "Q2" (id 0) (at 190.627 142.24 90))
  3594. (property "Value" "BSS138" (id 1) (at 190.627 144.78 90))
  3595. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 188.722 139.7 0)
  3596. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3597. )
  3598. (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" (id 3) (at 190.627 134.62 0)
  3599. (effects (font (size 1.27 1.27)) (justify left) hide)
  3600. )
  3601. (property "LCSC" "C112239" (id 4) (at 190.627 134.62 0)
  3602. (effects (font (size 1.27 1.27)) hide)
  3603. )
  3604. (pin "1" (uuid db02788a-efb9-4b51-9222-7a7075147128))
  3605. (pin "2" (uuid 68d8d0ca-582a-487e-adf8-d27debf8a182))
  3606. (pin "3" (uuid 2f4beb5e-08a9-4f3e-9494-2669b0c0f90a))
  3607. )
  3608. (symbol (lib_id "power:+3V3") (at 218.567 123.952 0) (unit 1)
  3609. (in_bom yes) (on_board yes) (fields_autoplaced)
  3610. (uuid 9815c0c0-909c-470a-8382-3e353daf2683)
  3611. (property "Reference" "#PWR0182" (id 0) (at 218.567 127.762 0)
  3612. (effects (font (size 1.27 1.27)) hide)
  3613. )
  3614. (property "Value" "+3V3" (id 1) (at 218.567 118.745 0))
  3615. (property "Footprint" "" (id 2) (at 218.567 123.952 0)
  3616. (effects (font (size 1.27 1.27)) hide)
  3617. )
  3618. (property "Datasheet" "" (id 3) (at 218.567 123.952 0)
  3619. (effects (font (size 1.27 1.27)) hide)
  3620. )
  3621. (pin "1" (uuid a2c91d06-3618-4eec-84ee-28c5b074b022))
  3622. )
  3623. (symbol (lib_id "Device:R_Small") (at 183.515 132.334 0) (unit 1)
  3624. (in_bom yes) (on_board yes)
  3625. (uuid c0ff9264-07fc-4cd6-8b9d-9956044633a2)
  3626. (property "Reference" "R35" (id 0) (at 179.197 131.445 0)
  3627. (effects (font (size 1.27 1.27)) (justify left))
  3628. )
  3629. (property "Value" "10k" (id 1) (at 178.562 133.477 0)
  3630. (effects (font (size 1.27 1.27)) (justify left))
  3631. )
  3632. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 183.515 132.334 0)
  3633. (effects (font (size 1.27 1.27)) hide)
  3634. )
  3635. (property "Datasheet" "~" (id 3) (at 183.515 132.334 0)
  3636. (effects (font (size 1.27 1.27)) hide)
  3637. )
  3638. (property "LCSC" "C25744" (id 4) (at 183.515 132.334 0)
  3639. (effects (font (size 1.27 1.27)) hide)
  3640. )
  3641. (pin "1" (uuid 71e5bfbb-3678-4957-bc32-422cf3db2b13))
  3642. (pin "2" (uuid 01918174-c99e-4beb-9c8a-a04e75781ca8))
  3643. )
  3644. (symbol (lib_id "power:+5V") (at 247.142 130.81 0) (unit 1)
  3645. (in_bom yes) (on_board yes)
  3646. (uuid c6315284-c1a5-481e-acc9-907a4b5f620d)
  3647. (property "Reference" "#PWR0178" (id 0) (at 247.142 134.62 0)
  3648. (effects (font (size 1.27 1.27)) hide)
  3649. )
  3650. (property "Value" "+5V" (id 1) (at 247.523 126.4158 0))
  3651. (property "Footprint" "" (id 2) (at 247.142 130.81 0)
  3652. (effects (font (size 1.27 1.27)) hide)
  3653. )
  3654. (property "Datasheet" "" (id 3) (at 247.142 130.81 0)
  3655. (effects (font (size 1.27 1.27)) hide)
  3656. )
  3657. (pin "1" (uuid f15b8784-c8b4-4c4b-a276-d12aeacdc15f))
  3658. )
  3659. (symbol (lib_id "Device:R_Small") (at 233.68 131.826 0) (unit 1)
  3660. (in_bom yes) (on_board yes) (fields_autoplaced)
  3661. (uuid f584fe43-11f3-4350-ac5e-df1dd1ce9a3a)
  3662. (property "Reference" "R42" (id 0) (at 236.347 130.5559 0)
  3663. (effects (font (size 1.27 1.27)) (justify left))
  3664. )
  3665. (property "Value" "10k" (id 1) (at 236.347 133.0959 0)
  3666. (effects (font (size 1.27 1.27)) (justify left))
  3667. )
  3668. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 233.68 131.826 0)
  3669. (effects (font (size 1.27 1.27)) hide)
  3670. )
  3671. (property "Datasheet" "~" (id 3) (at 233.68 131.826 0)
  3672. (effects (font (size 1.27 1.27)) hide)
  3673. )
  3674. (property "LCSC" "C25744" (id 4) (at 233.68 131.826 0)
  3675. (effects (font (size 1.27 1.27)) hide)
  3676. )
  3677. (pin "1" (uuid 948ba289-17ad-4931-b3b8-38c923c69780))
  3678. (pin "2" (uuid ffc4e997-cf20-4c36-8e50-ffb215412109))
  3679. )
  3680. )