LED_Indicators.kicad_sch 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "91b81ee9-3a35-4b19-bbda-9b13aadc5bca")
  6. (paper "A4")
  7. (title_block
  8. (title "BlueSCSI V2, Desktop 50 Pin, Top Connector, 2023.10a")
  9. (date "October 2023")
  10. (rev "1")
  11. (company "Tech by Androda, LLC")
  12. )
  13. (lib_symbols
  14. (symbol "74xx:74HC14"
  15. (pin_names
  16. (offset 1.016)
  17. )
  18. (exclude_from_sim no)
  19. (in_bom yes)
  20. (on_board yes)
  21. (property "Reference" "U"
  22. (at 0 1.27 0)
  23. (effects
  24. (font
  25. (size 1.27 1.27)
  26. )
  27. )
  28. )
  29. (property "Value" "74HC14"
  30. (at 0 -1.27 0)
  31. (effects
  32. (font
  33. (size 1.27 1.27)
  34. )
  35. )
  36. )
  37. (property "Footprint" ""
  38. (at 0 0 0)
  39. (effects
  40. (font
  41. (size 1.27 1.27)
  42. )
  43. (hide yes)
  44. )
  45. )
  46. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  47. (at 0 0 0)
  48. (effects
  49. (font
  50. (size 1.27 1.27)
  51. )
  52. (hide yes)
  53. )
  54. )
  55. (property "Description" "Hex inverter schmitt trigger"
  56. (at 0 0 0)
  57. (effects
  58. (font
  59. (size 1.27 1.27)
  60. )
  61. (hide yes)
  62. )
  63. )
  64. (property "ki_locked" ""
  65. (at 0 0 0)
  66. (effects
  67. (font
  68. (size 1.27 1.27)
  69. )
  70. )
  71. )
  72. (property "ki_keywords" "HCMOS not inverter"
  73. (at 0 0 0)
  74. (effects
  75. (font
  76. (size 1.27 1.27)
  77. )
  78. (hide yes)
  79. )
  80. )
  81. (property "ki_fp_filters" "DIP*W7.62mm*"
  82. (at 0 0 0)
  83. (effects
  84. (font
  85. (size 1.27 1.27)
  86. )
  87. (hide yes)
  88. )
  89. )
  90. (symbol "74HC14_1_0"
  91. (polyline
  92. (pts
  93. (xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)
  94. )
  95. (stroke
  96. (width 0.254)
  97. (type default)
  98. )
  99. (fill
  100. (type background)
  101. )
  102. )
  103. (pin input line
  104. (at -7.62 0 0)
  105. (length 3.81)
  106. (name "~"
  107. (effects
  108. (font
  109. (size 1.27 1.27)
  110. )
  111. )
  112. )
  113. (number "1"
  114. (effects
  115. (font
  116. (size 1.27 1.27)
  117. )
  118. )
  119. )
  120. )
  121. (pin output inverted
  122. (at 7.62 0 180)
  123. (length 3.81)
  124. (name "~"
  125. (effects
  126. (font
  127. (size 1.27 1.27)
  128. )
  129. )
  130. )
  131. (number "2"
  132. (effects
  133. (font
  134. (size 1.27 1.27)
  135. )
  136. )
  137. )
  138. )
  139. )
  140. (symbol "74HC14_1_1"
  141. (polyline
  142. (pts
  143. (xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)
  144. )
  145. (stroke
  146. (width 0)
  147. (type default)
  148. )
  149. (fill
  150. (type none)
  151. )
  152. )
  153. (polyline
  154. (pts
  155. (xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)
  156. )
  157. (stroke
  158. (width 0)
  159. (type default)
  160. )
  161. (fill
  162. (type none)
  163. )
  164. )
  165. )
  166. (symbol "74HC14_2_0"
  167. (polyline
  168. (pts
  169. (xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)
  170. )
  171. (stroke
  172. (width 0.254)
  173. (type default)
  174. )
  175. (fill
  176. (type background)
  177. )
  178. )
  179. (pin input line
  180. (at -7.62 0 0)
  181. (length 3.81)
  182. (name "~"
  183. (effects
  184. (font
  185. (size 1.27 1.27)
  186. )
  187. )
  188. )
  189. (number "3"
  190. (effects
  191. (font
  192. (size 1.27 1.27)
  193. )
  194. )
  195. )
  196. )
  197. (pin output inverted
  198. (at 7.62 0 180)
  199. (length 3.81)
  200. (name "~"
  201. (effects
  202. (font
  203. (size 1.27 1.27)
  204. )
  205. )
  206. )
  207. (number "4"
  208. (effects
  209. (font
  210. (size 1.27 1.27)
  211. )
  212. )
  213. )
  214. )
  215. )
  216. (symbol "74HC14_2_1"
  217. (polyline
  218. (pts
  219. (xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)
  220. )
  221. (stroke
  222. (width 0)
  223. (type default)
  224. )
  225. (fill
  226. (type none)
  227. )
  228. )
  229. (polyline
  230. (pts
  231. (xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)
  232. )
  233. (stroke
  234. (width 0)
  235. (type default)
  236. )
  237. (fill
  238. (type none)
  239. )
  240. )
  241. )
  242. (symbol "74HC14_3_0"
  243. (polyline
  244. (pts
  245. (xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)
  246. )
  247. (stroke
  248. (width 0.254)
  249. (type default)
  250. )
  251. (fill
  252. (type background)
  253. )
  254. )
  255. (pin input line
  256. (at -7.62 0 0)
  257. (length 3.81)
  258. (name "~"
  259. (effects
  260. (font
  261. (size 1.27 1.27)
  262. )
  263. )
  264. )
  265. (number "5"
  266. (effects
  267. (font
  268. (size 1.27 1.27)
  269. )
  270. )
  271. )
  272. )
  273. (pin output inverted
  274. (at 7.62 0 180)
  275. (length 3.81)
  276. (name "~"
  277. (effects
  278. (font
  279. (size 1.27 1.27)
  280. )
  281. )
  282. )
  283. (number "6"
  284. (effects
  285. (font
  286. (size 1.27 1.27)
  287. )
  288. )
  289. )
  290. )
  291. )
  292. (symbol "74HC14_3_1"
  293. (polyline
  294. (pts
  295. (xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)
  296. )
  297. (stroke
  298. (width 0)
  299. (type default)
  300. )
  301. (fill
  302. (type none)
  303. )
  304. )
  305. (polyline
  306. (pts
  307. (xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)
  308. )
  309. (stroke
  310. (width 0)
  311. (type default)
  312. )
  313. (fill
  314. (type none)
  315. )
  316. )
  317. )
  318. (symbol "74HC14_4_0"
  319. (polyline
  320. (pts
  321. (xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)
  322. )
  323. (stroke
  324. (width 0.254)
  325. (type default)
  326. )
  327. (fill
  328. (type background)
  329. )
  330. )
  331. (pin output inverted
  332. (at 7.62 0 180)
  333. (length 3.81)
  334. (name "~"
  335. (effects
  336. (font
  337. (size 1.27 1.27)
  338. )
  339. )
  340. )
  341. (number "8"
  342. (effects
  343. (font
  344. (size 1.27 1.27)
  345. )
  346. )
  347. )
  348. )
  349. (pin input line
  350. (at -7.62 0 0)
  351. (length 3.81)
  352. (name "~"
  353. (effects
  354. (font
  355. (size 1.27 1.27)
  356. )
  357. )
  358. )
  359. (number "9"
  360. (effects
  361. (font
  362. (size 1.27 1.27)
  363. )
  364. )
  365. )
  366. )
  367. )
  368. (symbol "74HC14_4_1"
  369. (polyline
  370. (pts
  371. (xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)
  372. )
  373. (stroke
  374. (width 0)
  375. (type default)
  376. )
  377. (fill
  378. (type none)
  379. )
  380. )
  381. (polyline
  382. (pts
  383. (xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)
  384. )
  385. (stroke
  386. (width 0)
  387. (type default)
  388. )
  389. (fill
  390. (type none)
  391. )
  392. )
  393. )
  394. (symbol "74HC14_5_0"
  395. (polyline
  396. (pts
  397. (xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)
  398. )
  399. (stroke
  400. (width 0.254)
  401. (type default)
  402. )
  403. (fill
  404. (type background)
  405. )
  406. )
  407. (pin output inverted
  408. (at 7.62 0 180)
  409. (length 3.81)
  410. (name "~"
  411. (effects
  412. (font
  413. (size 1.27 1.27)
  414. )
  415. )
  416. )
  417. (number "10"
  418. (effects
  419. (font
  420. (size 1.27 1.27)
  421. )
  422. )
  423. )
  424. )
  425. (pin input line
  426. (at -7.62 0 0)
  427. (length 3.81)
  428. (name "~"
  429. (effects
  430. (font
  431. (size 1.27 1.27)
  432. )
  433. )
  434. )
  435. (number "11"
  436. (effects
  437. (font
  438. (size 1.27 1.27)
  439. )
  440. )
  441. )
  442. )
  443. )
  444. (symbol "74HC14_5_1"
  445. (polyline
  446. (pts
  447. (xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)
  448. )
  449. (stroke
  450. (width 0)
  451. (type default)
  452. )
  453. (fill
  454. (type none)
  455. )
  456. )
  457. (polyline
  458. (pts
  459. (xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)
  460. )
  461. (stroke
  462. (width 0)
  463. (type default)
  464. )
  465. (fill
  466. (type none)
  467. )
  468. )
  469. )
  470. (symbol "74HC14_6_0"
  471. (polyline
  472. (pts
  473. (xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)
  474. )
  475. (stroke
  476. (width 0.254)
  477. (type default)
  478. )
  479. (fill
  480. (type background)
  481. )
  482. )
  483. (pin output inverted
  484. (at 7.62 0 180)
  485. (length 3.81)
  486. (name "~"
  487. (effects
  488. (font
  489. (size 1.27 1.27)
  490. )
  491. )
  492. )
  493. (number "12"
  494. (effects
  495. (font
  496. (size 1.27 1.27)
  497. )
  498. )
  499. )
  500. )
  501. (pin input line
  502. (at -7.62 0 0)
  503. (length 3.81)
  504. (name "~"
  505. (effects
  506. (font
  507. (size 1.27 1.27)
  508. )
  509. )
  510. )
  511. (number "13"
  512. (effects
  513. (font
  514. (size 1.27 1.27)
  515. )
  516. )
  517. )
  518. )
  519. )
  520. (symbol "74HC14_6_1"
  521. (polyline
  522. (pts
  523. (xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)
  524. )
  525. (stroke
  526. (width 0)
  527. (type default)
  528. )
  529. (fill
  530. (type none)
  531. )
  532. )
  533. (polyline
  534. (pts
  535. (xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)
  536. )
  537. (stroke
  538. (width 0)
  539. (type default)
  540. )
  541. (fill
  542. (type none)
  543. )
  544. )
  545. )
  546. (symbol "74HC14_7_0"
  547. (pin power_in line
  548. (at 0 12.7 270)
  549. (length 5.08)
  550. (name "VCC"
  551. (effects
  552. (font
  553. (size 1.27 1.27)
  554. )
  555. )
  556. )
  557. (number "14"
  558. (effects
  559. (font
  560. (size 1.27 1.27)
  561. )
  562. )
  563. )
  564. )
  565. (pin power_in line
  566. (at 0 -12.7 90)
  567. (length 5.08)
  568. (name "GND"
  569. (effects
  570. (font
  571. (size 1.27 1.27)
  572. )
  573. )
  574. )
  575. (number "7"
  576. (effects
  577. (font
  578. (size 1.27 1.27)
  579. )
  580. )
  581. )
  582. )
  583. )
  584. (symbol "74HC14_7_1"
  585. (rectangle
  586. (start -5.08 7.62)
  587. (end 5.08 -7.62)
  588. (stroke
  589. (width 0.254)
  590. (type default)
  591. )
  592. (fill
  593. (type background)
  594. )
  595. )
  596. )
  597. )
  598. (symbol "Connector:Conn_01x03_Male"
  599. (pin_names
  600. (offset 1.016) hide)
  601. (exclude_from_sim no)
  602. (in_bom yes)
  603. (on_board yes)
  604. (property "Reference" "J"
  605. (at 0 5.08 0)
  606. (effects
  607. (font
  608. (size 1.27 1.27)
  609. )
  610. )
  611. )
  612. (property "Value" "Conn_01x03_Male"
  613. (at 0 -5.08 0)
  614. (effects
  615. (font
  616. (size 1.27 1.27)
  617. )
  618. )
  619. )
  620. (property "Footprint" ""
  621. (at 0 0 0)
  622. (effects
  623. (font
  624. (size 1.27 1.27)
  625. )
  626. (hide yes)
  627. )
  628. )
  629. (property "Datasheet" "~"
  630. (at 0 0 0)
  631. (effects
  632. (font
  633. (size 1.27 1.27)
  634. )
  635. (hide yes)
  636. )
  637. )
  638. (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
  639. (at 0 0 0)
  640. (effects
  641. (font
  642. (size 1.27 1.27)
  643. )
  644. (hide yes)
  645. )
  646. )
  647. (property "ki_keywords" "connector"
  648. (at 0 0 0)
  649. (effects
  650. (font
  651. (size 1.27 1.27)
  652. )
  653. (hide yes)
  654. )
  655. )
  656. (property "ki_fp_filters" "Connector*:*_1x??_*"
  657. (at 0 0 0)
  658. (effects
  659. (font
  660. (size 1.27 1.27)
  661. )
  662. (hide yes)
  663. )
  664. )
  665. (symbol "Conn_01x03_Male_1_1"
  666. (polyline
  667. (pts
  668. (xy 1.27 -2.54) (xy 0.8636 -2.54)
  669. )
  670. (stroke
  671. (width 0.1524)
  672. (type default)
  673. )
  674. (fill
  675. (type none)
  676. )
  677. )
  678. (polyline
  679. (pts
  680. (xy 1.27 0) (xy 0.8636 0)
  681. )
  682. (stroke
  683. (width 0.1524)
  684. (type default)
  685. )
  686. (fill
  687. (type none)
  688. )
  689. )
  690. (polyline
  691. (pts
  692. (xy 1.27 2.54) (xy 0.8636 2.54)
  693. )
  694. (stroke
  695. (width 0.1524)
  696. (type default)
  697. )
  698. (fill
  699. (type none)
  700. )
  701. )
  702. (rectangle
  703. (start 0.8636 -2.413)
  704. (end 0 -2.667)
  705. (stroke
  706. (width 0.1524)
  707. (type default)
  708. )
  709. (fill
  710. (type outline)
  711. )
  712. )
  713. (rectangle
  714. (start 0.8636 0.127)
  715. (end 0 -0.127)
  716. (stroke
  717. (width 0.1524)
  718. (type default)
  719. )
  720. (fill
  721. (type outline)
  722. )
  723. )
  724. (rectangle
  725. (start 0.8636 2.667)
  726. (end 0 2.413)
  727. (stroke
  728. (width 0.1524)
  729. (type default)
  730. )
  731. (fill
  732. (type outline)
  733. )
  734. )
  735. (pin passive line
  736. (at 5.08 2.54 180)
  737. (length 3.81)
  738. (name "Pin_1"
  739. (effects
  740. (font
  741. (size 1.27 1.27)
  742. )
  743. )
  744. )
  745. (number "1"
  746. (effects
  747. (font
  748. (size 1.27 1.27)
  749. )
  750. )
  751. )
  752. )
  753. (pin passive line
  754. (at 5.08 0 180)
  755. (length 3.81)
  756. (name "Pin_2"
  757. (effects
  758. (font
  759. (size 1.27 1.27)
  760. )
  761. )
  762. )
  763. (number "2"
  764. (effects
  765. (font
  766. (size 1.27 1.27)
  767. )
  768. )
  769. )
  770. )
  771. (pin passive line
  772. (at 5.08 -2.54 180)
  773. (length 3.81)
  774. (name "Pin_3"
  775. (effects
  776. (font
  777. (size 1.27 1.27)
  778. )
  779. )
  780. )
  781. (number "3"
  782. (effects
  783. (font
  784. (size 1.27 1.27)
  785. )
  786. )
  787. )
  788. )
  789. )
  790. )
  791. (symbol "Device:LED"
  792. (pin_numbers hide)
  793. (pin_names
  794. (offset 1.016) hide)
  795. (exclude_from_sim no)
  796. (in_bom yes)
  797. (on_board yes)
  798. (property "Reference" "D"
  799. (at 0 2.54 0)
  800. (effects
  801. (font
  802. (size 1.27 1.27)
  803. )
  804. )
  805. )
  806. (property "Value" "LED"
  807. (at 0 -2.54 0)
  808. (effects
  809. (font
  810. (size 1.27 1.27)
  811. )
  812. )
  813. )
  814. (property "Footprint" ""
  815. (at 0 0 0)
  816. (effects
  817. (font
  818. (size 1.27 1.27)
  819. )
  820. (hide yes)
  821. )
  822. )
  823. (property "Datasheet" "~"
  824. (at 0 0 0)
  825. (effects
  826. (font
  827. (size 1.27 1.27)
  828. )
  829. (hide yes)
  830. )
  831. )
  832. (property "Description" "Light emitting diode"
  833. (at 0 0 0)
  834. (effects
  835. (font
  836. (size 1.27 1.27)
  837. )
  838. (hide yes)
  839. )
  840. )
  841. (property "ki_keywords" "LED diode"
  842. (at 0 0 0)
  843. (effects
  844. (font
  845. (size 1.27 1.27)
  846. )
  847. (hide yes)
  848. )
  849. )
  850. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*"
  851. (at 0 0 0)
  852. (effects
  853. (font
  854. (size 1.27 1.27)
  855. )
  856. (hide yes)
  857. )
  858. )
  859. (symbol "LED_0_1"
  860. (polyline
  861. (pts
  862. (xy -1.27 -1.27) (xy -1.27 1.27)
  863. )
  864. (stroke
  865. (width 0.254)
  866. (type default)
  867. )
  868. (fill
  869. (type none)
  870. )
  871. )
  872. (polyline
  873. (pts
  874. (xy -1.27 0) (xy 1.27 0)
  875. )
  876. (stroke
  877. (width 0)
  878. (type default)
  879. )
  880. (fill
  881. (type none)
  882. )
  883. )
  884. (polyline
  885. (pts
  886. (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
  887. )
  888. (stroke
  889. (width 0.254)
  890. (type default)
  891. )
  892. (fill
  893. (type none)
  894. )
  895. )
  896. (polyline
  897. (pts
  898. (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524)
  899. )
  900. (stroke
  901. (width 0)
  902. (type default)
  903. )
  904. (fill
  905. (type none)
  906. )
  907. )
  908. (polyline
  909. (pts
  910. (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524)
  911. )
  912. (stroke
  913. (width 0)
  914. (type default)
  915. )
  916. (fill
  917. (type none)
  918. )
  919. )
  920. )
  921. (symbol "LED_1_1"
  922. (pin passive line
  923. (at -3.81 0 0)
  924. (length 2.54)
  925. (name "K"
  926. (effects
  927. (font
  928. (size 1.27 1.27)
  929. )
  930. )
  931. )
  932. (number "1"
  933. (effects
  934. (font
  935. (size 1.27 1.27)
  936. )
  937. )
  938. )
  939. )
  940. (pin passive line
  941. (at 3.81 0 180)
  942. (length 2.54)
  943. (name "A"
  944. (effects
  945. (font
  946. (size 1.27 1.27)
  947. )
  948. )
  949. )
  950. (number "2"
  951. (effects
  952. (font
  953. (size 1.27 1.27)
  954. )
  955. )
  956. )
  957. )
  958. )
  959. )
  960. (symbol "Device:R"
  961. (pin_numbers hide)
  962. (pin_names
  963. (offset 0)
  964. )
  965. (exclude_from_sim no)
  966. (in_bom yes)
  967. (on_board yes)
  968. (property "Reference" "R"
  969. (at 2.032 0 90)
  970. (effects
  971. (font
  972. (size 1.27 1.27)
  973. )
  974. )
  975. )
  976. (property "Value" "R"
  977. (at 0 0 90)
  978. (effects
  979. (font
  980. (size 1.27 1.27)
  981. )
  982. )
  983. )
  984. (property "Footprint" ""
  985. (at -1.778 0 90)
  986. (effects
  987. (font
  988. (size 1.27 1.27)
  989. )
  990. (hide yes)
  991. )
  992. )
  993. (property "Datasheet" "~"
  994. (at 0 0 0)
  995. (effects
  996. (font
  997. (size 1.27 1.27)
  998. )
  999. (hide yes)
  1000. )
  1001. )
  1002. (property "Description" "Resistor"
  1003. (at 0 0 0)
  1004. (effects
  1005. (font
  1006. (size 1.27 1.27)
  1007. )
  1008. (hide yes)
  1009. )
  1010. )
  1011. (property "ki_keywords" "R res resistor"
  1012. (at 0 0 0)
  1013. (effects
  1014. (font
  1015. (size 1.27 1.27)
  1016. )
  1017. (hide yes)
  1018. )
  1019. )
  1020. (property "ki_fp_filters" "R_*"
  1021. (at 0 0 0)
  1022. (effects
  1023. (font
  1024. (size 1.27 1.27)
  1025. )
  1026. (hide yes)
  1027. )
  1028. )
  1029. (symbol "R_0_1"
  1030. (rectangle
  1031. (start -1.016 -2.54)
  1032. (end 1.016 2.54)
  1033. (stroke
  1034. (width 0.254)
  1035. (type default)
  1036. )
  1037. (fill
  1038. (type none)
  1039. )
  1040. )
  1041. )
  1042. (symbol "R_1_1"
  1043. (pin passive line
  1044. (at 0 3.81 270)
  1045. (length 1.27)
  1046. (name "~"
  1047. (effects
  1048. (font
  1049. (size 1.27 1.27)
  1050. )
  1051. )
  1052. )
  1053. (number "1"
  1054. (effects
  1055. (font
  1056. (size 1.27 1.27)
  1057. )
  1058. )
  1059. )
  1060. )
  1061. (pin passive line
  1062. (at 0 -3.81 90)
  1063. (length 1.27)
  1064. (name "~"
  1065. (effects
  1066. (font
  1067. (size 1.27 1.27)
  1068. )
  1069. )
  1070. )
  1071. (number "2"
  1072. (effects
  1073. (font
  1074. (size 1.27 1.27)
  1075. )
  1076. )
  1077. )
  1078. )
  1079. )
  1080. )
  1081. (symbol "Jumper:SolderJumper_2_Open"
  1082. (pin_names
  1083. (offset 0) hide)
  1084. (exclude_from_sim no)
  1085. (in_bom yes)
  1086. (on_board yes)
  1087. (property "Reference" "JP"
  1088. (at 0 2.032 0)
  1089. (effects
  1090. (font
  1091. (size 1.27 1.27)
  1092. )
  1093. )
  1094. )
  1095. (property "Value" "SolderJumper_2_Open"
  1096. (at 0 -2.54 0)
  1097. (effects
  1098. (font
  1099. (size 1.27 1.27)
  1100. )
  1101. )
  1102. )
  1103. (property "Footprint" ""
  1104. (at 0 0 0)
  1105. (effects
  1106. (font
  1107. (size 1.27 1.27)
  1108. )
  1109. (hide yes)
  1110. )
  1111. )
  1112. (property "Datasheet" "~"
  1113. (at 0 0 0)
  1114. (effects
  1115. (font
  1116. (size 1.27 1.27)
  1117. )
  1118. (hide yes)
  1119. )
  1120. )
  1121. (property "Description" "Solder Jumper, 2-pole, open"
  1122. (at 0 0 0)
  1123. (effects
  1124. (font
  1125. (size 1.27 1.27)
  1126. )
  1127. (hide yes)
  1128. )
  1129. )
  1130. (property "ki_keywords" "solder jumper SPST"
  1131. (at 0 0 0)
  1132. (effects
  1133. (font
  1134. (size 1.27 1.27)
  1135. )
  1136. (hide yes)
  1137. )
  1138. )
  1139. (property "ki_fp_filters" "SolderJumper*Open*"
  1140. (at 0 0 0)
  1141. (effects
  1142. (font
  1143. (size 1.27 1.27)
  1144. )
  1145. (hide yes)
  1146. )
  1147. )
  1148. (symbol "SolderJumper_2_Open_0_1"
  1149. (arc
  1150. (start -0.254 1.016)
  1151. (mid -1.2656 0)
  1152. (end -0.254 -1.016)
  1153. (stroke
  1154. (width 0)
  1155. (type default)
  1156. )
  1157. (fill
  1158. (type none)
  1159. )
  1160. )
  1161. (arc
  1162. (start -0.254 1.016)
  1163. (mid -1.2656 0)
  1164. (end -0.254 -1.016)
  1165. (stroke
  1166. (width 0)
  1167. (type default)
  1168. )
  1169. (fill
  1170. (type outline)
  1171. )
  1172. )
  1173. (polyline
  1174. (pts
  1175. (xy -0.254 1.016) (xy -0.254 -1.016)
  1176. )
  1177. (stroke
  1178. (width 0)
  1179. (type default)
  1180. )
  1181. (fill
  1182. (type none)
  1183. )
  1184. )
  1185. (polyline
  1186. (pts
  1187. (xy 0.254 1.016) (xy 0.254 -1.016)
  1188. )
  1189. (stroke
  1190. (width 0)
  1191. (type default)
  1192. )
  1193. (fill
  1194. (type none)
  1195. )
  1196. )
  1197. (arc
  1198. (start 0.254 -1.016)
  1199. (mid 1.2656 0)
  1200. (end 0.254 1.016)
  1201. (stroke
  1202. (width 0)
  1203. (type default)
  1204. )
  1205. (fill
  1206. (type none)
  1207. )
  1208. )
  1209. (arc
  1210. (start 0.254 -1.016)
  1211. (mid 1.2656 0)
  1212. (end 0.254 1.016)
  1213. (stroke
  1214. (width 0)
  1215. (type default)
  1216. )
  1217. (fill
  1218. (type outline)
  1219. )
  1220. )
  1221. )
  1222. (symbol "SolderJumper_2_Open_1_1"
  1223. (pin passive line
  1224. (at -3.81 0 0)
  1225. (length 2.54)
  1226. (name "A"
  1227. (effects
  1228. (font
  1229. (size 1.27 1.27)
  1230. )
  1231. )
  1232. )
  1233. (number "1"
  1234. (effects
  1235. (font
  1236. (size 1.27 1.27)
  1237. )
  1238. )
  1239. )
  1240. )
  1241. (pin passive line
  1242. (at 3.81 0 180)
  1243. (length 2.54)
  1244. (name "B"
  1245. (effects
  1246. (font
  1247. (size 1.27 1.27)
  1248. )
  1249. )
  1250. )
  1251. (number "2"
  1252. (effects
  1253. (font
  1254. (size 1.27 1.27)
  1255. )
  1256. )
  1257. )
  1258. )
  1259. )
  1260. )
  1261. (symbol "power:+5F"
  1262. (power)
  1263. (pin_names
  1264. (offset 0)
  1265. )
  1266. (exclude_from_sim no)
  1267. (in_bom yes)
  1268. (on_board yes)
  1269. (property "Reference" "#PWR"
  1270. (at 0 -3.81 0)
  1271. (effects
  1272. (font
  1273. (size 1.27 1.27)
  1274. )
  1275. (hide yes)
  1276. )
  1277. )
  1278. (property "Value" "+5F"
  1279. (at 0 3.556 0)
  1280. (effects
  1281. (font
  1282. (size 1.27 1.27)
  1283. )
  1284. )
  1285. )
  1286. (property "Footprint" ""
  1287. (at 0 0 0)
  1288. (effects
  1289. (font
  1290. (size 1.27 1.27)
  1291. )
  1292. (hide yes)
  1293. )
  1294. )
  1295. (property "Datasheet" ""
  1296. (at 0 0 0)
  1297. (effects
  1298. (font
  1299. (size 1.27 1.27)
  1300. )
  1301. (hide yes)
  1302. )
  1303. )
  1304. (property "Description" "Power symbol creates a global label with name \"+5F\""
  1305. (at 0 0 0)
  1306. (effects
  1307. (font
  1308. (size 1.27 1.27)
  1309. )
  1310. (hide yes)
  1311. )
  1312. )
  1313. (property "ki_keywords" "power-flag"
  1314. (at 0 0 0)
  1315. (effects
  1316. (font
  1317. (size 1.27 1.27)
  1318. )
  1319. (hide yes)
  1320. )
  1321. )
  1322. (symbol "+5F_0_1"
  1323. (polyline
  1324. (pts
  1325. (xy -0.762 1.27) (xy 0 2.54)
  1326. )
  1327. (stroke
  1328. (width 0)
  1329. (type default)
  1330. )
  1331. (fill
  1332. (type none)
  1333. )
  1334. )
  1335. (polyline
  1336. (pts
  1337. (xy 0 0) (xy 0 2.54)
  1338. )
  1339. (stroke
  1340. (width 0)
  1341. (type default)
  1342. )
  1343. (fill
  1344. (type none)
  1345. )
  1346. )
  1347. (polyline
  1348. (pts
  1349. (xy 0 2.54) (xy 0.762 1.27)
  1350. )
  1351. (stroke
  1352. (width 0)
  1353. (type default)
  1354. )
  1355. (fill
  1356. (type none)
  1357. )
  1358. )
  1359. )
  1360. (symbol "+5F_1_1"
  1361. (pin power_in line
  1362. (at 0 0 90)
  1363. (length 0) hide
  1364. (name "+5F"
  1365. (effects
  1366. (font
  1367. (size 1.27 1.27)
  1368. )
  1369. )
  1370. )
  1371. (number "1"
  1372. (effects
  1373. (font
  1374. (size 1.27 1.27)
  1375. )
  1376. )
  1377. )
  1378. )
  1379. )
  1380. )
  1381. (symbol "power:GND"
  1382. (power)
  1383. (pin_names
  1384. (offset 0)
  1385. )
  1386. (exclude_from_sim no)
  1387. (in_bom yes)
  1388. (on_board yes)
  1389. (property "Reference" "#PWR"
  1390. (at 0 -6.35 0)
  1391. (effects
  1392. (font
  1393. (size 1.27 1.27)
  1394. )
  1395. (hide yes)
  1396. )
  1397. )
  1398. (property "Value" "GND"
  1399. (at 0 -3.81 0)
  1400. (effects
  1401. (font
  1402. (size 1.27 1.27)
  1403. )
  1404. )
  1405. )
  1406. (property "Footprint" ""
  1407. (at 0 0 0)
  1408. (effects
  1409. (font
  1410. (size 1.27 1.27)
  1411. )
  1412. (hide yes)
  1413. )
  1414. )
  1415. (property "Datasheet" ""
  1416. (at 0 0 0)
  1417. (effects
  1418. (font
  1419. (size 1.27 1.27)
  1420. )
  1421. (hide yes)
  1422. )
  1423. )
  1424. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1425. (at 0 0 0)
  1426. (effects
  1427. (font
  1428. (size 1.27 1.27)
  1429. )
  1430. (hide yes)
  1431. )
  1432. )
  1433. (property "ki_keywords" "power-flag"
  1434. (at 0 0 0)
  1435. (effects
  1436. (font
  1437. (size 1.27 1.27)
  1438. )
  1439. (hide yes)
  1440. )
  1441. )
  1442. (symbol "GND_0_1"
  1443. (polyline
  1444. (pts
  1445. (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
  1446. )
  1447. (stroke
  1448. (width 0)
  1449. (type default)
  1450. )
  1451. (fill
  1452. (type none)
  1453. )
  1454. )
  1455. )
  1456. (symbol "GND_1_1"
  1457. (pin power_in line
  1458. (at 0 0 270)
  1459. (length 0) hide
  1460. (name "GND"
  1461. (effects
  1462. (font
  1463. (size 1.27 1.27)
  1464. )
  1465. )
  1466. )
  1467. (number "1"
  1468. (effects
  1469. (font
  1470. (size 1.27 1.27)
  1471. )
  1472. )
  1473. )
  1474. )
  1475. )
  1476. )
  1477. )
  1478. (junction
  1479. (at 147.32 113.03)
  1480. (diameter 0)
  1481. (color 0 0 0 0)
  1482. (uuid "c0f7dcb4-f69d-43b2-a2a4-193cf483a0f1")
  1483. )
  1484. (junction
  1485. (at 154.94 113.03)
  1486. (diameter 0)
  1487. (color 0 0 0 0)
  1488. (uuid "d11cbda7-214d-4792-8d5e-6080a0759efa")
  1489. )
  1490. (junction
  1491. (at 139.7 113.03)
  1492. (diameter 0)
  1493. (color 0 0 0 0)
  1494. (uuid "d5196dff-d5be-4da0-8f4a-63009cfaffae")
  1495. )
  1496. (polyline
  1497. (pts
  1498. (xy 188.595 95.25) (xy 106.045 95.25)
  1499. )
  1500. (stroke
  1501. (width 0)
  1502. (type default)
  1503. )
  1504. (uuid "0aef4f2f-f7ff-44c9-88bb-59ebab52c9da")
  1505. )
  1506. (polyline
  1507. (pts
  1508. (xy 188.595 130.81) (xy 188.595 95.25)
  1509. )
  1510. (stroke
  1511. (width 0)
  1512. (type default)
  1513. )
  1514. (uuid "1ebced05-d94b-4545-b22b-ca6affa191c9")
  1515. )
  1516. (wire
  1517. (pts
  1518. (xy 154.94 113.03) (xy 173.99 113.03)
  1519. )
  1520. (stroke
  1521. (width 0)
  1522. (type default)
  1523. )
  1524. (uuid "2c58a957-11b3-4e6e-8b82-8062fa59a050")
  1525. )
  1526. (wire
  1527. (pts
  1528. (xy 147.32 105.41) (xy 147.32 113.03)
  1529. )
  1530. (stroke
  1531. (width 0)
  1532. (type default)
  1533. )
  1534. (uuid "39ce55a4-7981-4e23-9970-fa7fa009018c")
  1535. )
  1536. (polyline
  1537. (pts
  1538. (xy 188.595 49.53) (xy 188.595 71.755)
  1539. )
  1540. (stroke
  1541. (width 0)
  1542. (type default)
  1543. )
  1544. (uuid "3ae066ba-31f8-440b-98af-96d99b9e642c")
  1545. )
  1546. (wire
  1547. (pts
  1548. (xy 137.16 113.03) (xy 139.7 113.03)
  1549. )
  1550. (stroke
  1551. (width 0)
  1552. (type default)
  1553. )
  1554. (uuid "456801c6-0cec-45a5-8d17-2cef220324ce")
  1555. )
  1556. (polyline
  1557. (pts
  1558. (xy 106.045 49.53) (xy 106.045 151.13)
  1559. )
  1560. (stroke
  1561. (width 0)
  1562. (type default)
  1563. )
  1564. (uuid "4d9dd994-fdcd-441a-bfe7-b2db00b758fe")
  1565. )
  1566. (polyline
  1567. (pts
  1568. (xy 188.595 95.25) (xy 188.595 71.755)
  1569. )
  1570. (stroke
  1571. (width 0)
  1572. (type default)
  1573. )
  1574. (uuid "6a3ca8d2-286c-4d6b-96b7-f273b09a833b")
  1575. )
  1576. (polyline
  1577. (pts
  1578. (xy 106.045 49.53) (xy 188.595 49.53)
  1579. )
  1580. (stroke
  1581. (width 0)
  1582. (type default)
  1583. )
  1584. (uuid "9b7285bd-6eb2-4f36-a561-82959404b14f")
  1585. )
  1586. (polyline
  1587. (pts
  1588. (xy 106.045 130.81) (xy 188.595 130.81)
  1589. )
  1590. (stroke
  1591. (width 0)
  1592. (type default)
  1593. )
  1594. (uuid "a547c755-bcfe-46ea-9c57-8faecf4c7341")
  1595. )
  1596. (wire
  1597. (pts
  1598. (xy 154.94 105.41) (xy 154.94 113.03)
  1599. )
  1600. (stroke
  1601. (width 0)
  1602. (type default)
  1603. )
  1604. (uuid "bd5694e1-c310-4ef8-af9b-4127618f6ed6")
  1605. )
  1606. (wire
  1607. (pts
  1608. (xy 147.32 113.03) (xy 147.32 119.38)
  1609. )
  1610. (stroke
  1611. (width 0)
  1612. (type default)
  1613. )
  1614. (uuid "c0bee9d3-13a4-4a36-9282-c39e78cdf1ad")
  1615. )
  1616. (polyline
  1617. (pts
  1618. (xy 188.595 151.13) (xy 188.595 130.81)
  1619. )
  1620. (stroke
  1621. (width 0)
  1622. (type default)
  1623. )
  1624. (uuid "d69731d3-a32f-4d10-8cbd-91a7a7102a3d")
  1625. )
  1626. (polyline
  1627. (pts
  1628. (xy 147.955 130.81) (xy 147.955 151.13)
  1629. )
  1630. (stroke
  1631. (width 0)
  1632. (type default)
  1633. )
  1634. (uuid "d6ac2571-bf38-44de-984e-0130655598a1")
  1635. )
  1636. (wire
  1637. (pts
  1638. (xy 139.7 113.03) (xy 139.7 119.38)
  1639. )
  1640. (stroke
  1641. (width 0)
  1642. (type default)
  1643. )
  1644. (uuid "debcfc1a-38ba-4e18-9336-7ba716c2ad13")
  1645. )
  1646. (polyline
  1647. (pts
  1648. (xy 106.045 151.13) (xy 188.595 151.13)
  1649. )
  1650. (stroke
  1651. (width 0)
  1652. (type default)
  1653. )
  1654. (uuid "f3691aa6-9d5e-4b06-adb3-8e7f2247873f")
  1655. )
  1656. (polyline
  1657. (pts
  1658. (xy 188.595 71.755) (xy 106.045 71.755)
  1659. )
  1660. (stroke
  1661. (width 0)
  1662. (type default)
  1663. )
  1664. (uuid "ff9a11e0-0afd-4aff-8a99-a7f7311e28bf")
  1665. )
  1666. (text "Onboard Power LED"
  1667. (exclude_from_sim no)
  1668. (at 129.54 76.835 0)
  1669. (effects
  1670. (font
  1671. (size 1.27 1.27)
  1672. )
  1673. (justify left bottom)
  1674. )
  1675. (uuid "302d59f2-6268-4c15-a422-1445d402a74a")
  1676. )
  1677. (text "Unused Inverter Pin"
  1678. (exclude_from_sim no)
  1679. (at 159.385 133.985 0)
  1680. (effects
  1681. (font
  1682. (size 1.27 1.27)
  1683. )
  1684. (justify left bottom)
  1685. )
  1686. (uuid "320b45bf-7199-4096-a07c-d82dcb3bfcce")
  1687. )
  1688. (text "oBSY Signal Inverter"
  1689. (exclude_from_sim no)
  1690. (at 115.57 133.985 0)
  1691. (effects
  1692. (font
  1693. (size 1.27 1.27)
  1694. )
  1695. (justify left bottom)
  1696. )
  1697. (uuid "699041fe-b2cf-4bcc-8e53-7c910a16fea7")
  1698. )
  1699. (text "Onboard Activity LED"
  1700. (exclude_from_sim no)
  1701. (at 136.525 55.245 0)
  1702. (effects
  1703. (font
  1704. (size 1.27 1.27)
  1705. )
  1706. (justify left bottom)
  1707. )
  1708. (uuid "7fffdd4e-d184-4966-896e-9314a551ee12")
  1709. )
  1710. (text "BlueSCSI © Eric Helgeson\nPCB © Tech by Androda, LLC\n\nLicensed under CERN-OHL-S v2\nhttps://ohwr.org/cern_ohl_s_v2.txt\n\nThis source is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, \nINCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A \nPARTICULAR PURPOSE. Please see the CERN-OHL-S v2 for applicable conditions.\n\nAs per CERN-OHL-S v2 section 4, should You produce hardware based on this \nsource, You must where practicable maintain the Source Location visible \non the external case of the Device or other products you make using this source. \n"
  1711. (exclude_from_sim no)
  1712. (at 233.934 147.066 0)
  1713. (effects
  1714. (font
  1715. (size 1.27 1.27)
  1716. )
  1717. )
  1718. (uuid "a8c65b6e-ede7-44f7-bbaf-c1f17823dd45")
  1719. )
  1720. (text "Adjustable Brightness"
  1721. (exclude_from_sim no)
  1722. (at 148.59 121.285 0)
  1723. (effects
  1724. (font
  1725. (size 1.27 1.27)
  1726. )
  1727. (justify left bottom)
  1728. )
  1729. (uuid "ad047a98-ef63-4f37-9e76-7e6108dc51f5")
  1730. )
  1731. (text "External Activity LED"
  1732. (exclude_from_sim no)
  1733. (at 113.665 99.695 0)
  1734. (effects
  1735. (font
  1736. (size 1.27 1.27)
  1737. )
  1738. (justify left bottom)
  1739. )
  1740. (uuid "c2cae2fb-9e79-4ce2-8bb9-80668da626b6")
  1741. )
  1742. (global_label "oBSY"
  1743. (shape input)
  1744. (at 132.715 65.405 180)
  1745. (fields_autoplaced yes)
  1746. (effects
  1747. (font
  1748. (size 1.27 1.27)
  1749. )
  1750. (justify right)
  1751. )
  1752. (uuid "274580f6-0c65-4978-9582-90f81497c9d2")
  1753. (property "Intersheetrefs" "${INTERSHEET_REFS}"
  1754. (at 125.6737 65.3256 0)
  1755. (effects
  1756. (font
  1757. (size 1.27 1.27)
  1758. )
  1759. (justify right)
  1760. (hide yes)
  1761. )
  1762. )
  1763. )
  1764. (global_label "!oBSY"
  1765. (shape input)
  1766. (at 133.35 144.145 0)
  1767. (fields_autoplaced yes)
  1768. (effects
  1769. (font
  1770. (size 1.27 1.27)
  1771. )
  1772. (justify left)
  1773. )
  1774. (uuid "5f66b9c2-d9fe-410d-a319-f466c328eb51")
  1775. (property "Intersheetrefs" "${INTERSHEET_REFS}"
  1776. (at 140.9961 144.0656 0)
  1777. (effects
  1778. (font
  1779. (size 1.27 1.27)
  1780. )
  1781. (justify left)
  1782. (hide yes)
  1783. )
  1784. )
  1785. )
  1786. (global_label "oBSY"
  1787. (shape input)
  1788. (at 118.11 144.145 180)
  1789. (fields_autoplaced yes)
  1790. (effects
  1791. (font
  1792. (size 1.27 1.27)
  1793. )
  1794. (justify right)
  1795. )
  1796. (uuid "95dc2d8d-bcdf-4655-8f98-130c39c38dfb")
  1797. (property "Intersheetrefs" "${INTERSHEET_REFS}"
  1798. (at 111.0687 144.0656 0)
  1799. (effects
  1800. (font
  1801. (size 1.27 1.27)
  1802. )
  1803. (justify right)
  1804. (hide yes)
  1805. )
  1806. )
  1807. )
  1808. (global_label "oBSY"
  1809. (shape input)
  1810. (at 121.92 113.03 180)
  1811. (fields_autoplaced yes)
  1812. (effects
  1813. (font
  1814. (size 1.27 1.27)
  1815. )
  1816. (justify right)
  1817. )
  1818. (uuid "e99bbad7-6d19-429e-b0f4-fd3463d16a40")
  1819. (property "Intersheetrefs" "${INTERSHEET_REFS}"
  1820. (at 114.8787 112.9506 0)
  1821. (effects
  1822. (font
  1823. (size 1.27 1.27)
  1824. )
  1825. (justify right)
  1826. (hide yes)
  1827. )
  1828. )
  1829. )
  1830. (symbol
  1831. (lib_id "Device:R")
  1832. (at 151.13 113.03 90)
  1833. (unit 1)
  1834. (exclude_from_sim no)
  1835. (in_bom yes)
  1836. (on_board yes)
  1837. (dnp no)
  1838. (uuid "03142d3f-f27d-4d9f-9f6c-b0498a9f3df9")
  1839. (property "Reference" "R59"
  1840. (at 149.86 110.49 90)
  1841. (effects
  1842. (font
  1843. (size 1.27 1.27)
  1844. )
  1845. )
  1846. )
  1847. (property "Value" "330"
  1848. (at 151.13 113.03 90)
  1849. (effects
  1850. (font
  1851. (size 1.27 1.27)
  1852. )
  1853. )
  1854. )
  1855. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"
  1856. (at 151.13 114.808 90)
  1857. (effects
  1858. (font
  1859. (size 1.27 1.27)
  1860. )
  1861. (hide yes)
  1862. )
  1863. )
  1864. (property "Datasheet" "~"
  1865. (at 151.13 113.03 0)
  1866. (effects
  1867. (font
  1868. (size 1.27 1.27)
  1869. )
  1870. (hide yes)
  1871. )
  1872. )
  1873. (property "Description" ""
  1874. (at 151.13 113.03 0)
  1875. (effects
  1876. (font
  1877. (size 1.27 1.27)
  1878. )
  1879. (hide yes)
  1880. )
  1881. )
  1882. (pin "1"
  1883. (uuid "e7101d2f-ab9d-404e-9ca4-564bb4cfbb23")
  1884. )
  1885. (pin "2"
  1886. (uuid "d85ffc81-68c2-479c-bc36-fa131800b493")
  1887. )
  1888. (instances
  1889. (project "Desktop_50_Pin_TopConn"
  1890. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  1891. (reference "R59")
  1892. (unit 1)
  1893. )
  1894. )
  1895. )
  1896. )
  1897. (symbol
  1898. (lib_id "power:GND")
  1899. (at 153.67 38.1 90)
  1900. (unit 1)
  1901. (exclude_from_sim no)
  1902. (in_bom yes)
  1903. (on_board yes)
  1904. (dnp no)
  1905. (uuid "0aebfa8f-00c7-4f1f-bf5d-f58e13cb19f6")
  1906. (property "Reference" "#PWR041"
  1907. (at 160.02 38.1 0)
  1908. (effects
  1909. (font
  1910. (size 1.27 1.27)
  1911. )
  1912. (hide yes)
  1913. )
  1914. )
  1915. (property "Value" "GND"
  1916. (at 158.0642 37.973 90)
  1917. (effects
  1918. (font
  1919. (size 1.27 1.27)
  1920. )
  1921. )
  1922. )
  1923. (property "Footprint" ""
  1924. (at 153.67 38.1 0)
  1925. (effects
  1926. (font
  1927. (size 1.27 1.27)
  1928. )
  1929. (hide yes)
  1930. )
  1931. )
  1932. (property "Datasheet" ""
  1933. (at 153.67 38.1 0)
  1934. (effects
  1935. (font
  1936. (size 1.27 1.27)
  1937. )
  1938. (hide yes)
  1939. )
  1940. )
  1941. (property "Description" ""
  1942. (at 153.67 38.1 0)
  1943. (effects
  1944. (font
  1945. (size 1.27 1.27)
  1946. )
  1947. (hide yes)
  1948. )
  1949. )
  1950. (pin "1"
  1951. (uuid "c8da37af-a1e7-4d82-aa44-025df7221b8c")
  1952. )
  1953. (instances
  1954. (project "Desktop_50_Pin_TopConn"
  1955. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  1956. (reference "#PWR041")
  1957. (unit 1)
  1958. )
  1959. )
  1960. )
  1961. )
  1962. (symbol
  1963. (lib_id "Device:R")
  1964. (at 143.51 113.03 90)
  1965. (unit 1)
  1966. (exclude_from_sim no)
  1967. (in_bom yes)
  1968. (on_board yes)
  1969. (dnp no)
  1970. (uuid "0e7581f4-5fdd-4863-a8e3-8d5161063b63")
  1971. (property "Reference" "R58"
  1972. (at 142.24 110.49 90)
  1973. (effects
  1974. (font
  1975. (size 1.27 1.27)
  1976. )
  1977. )
  1978. )
  1979. (property "Value" "150"
  1980. (at 143.51 113.03 90)
  1981. (effects
  1982. (font
  1983. (size 1.27 1.27)
  1984. )
  1985. )
  1986. )
  1987. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"
  1988. (at 143.51 114.808 90)
  1989. (effects
  1990. (font
  1991. (size 1.27 1.27)
  1992. )
  1993. (hide yes)
  1994. )
  1995. )
  1996. (property "Datasheet" "~"
  1997. (at 143.51 113.03 0)
  1998. (effects
  1999. (font
  2000. (size 1.27 1.27)
  2001. )
  2002. (hide yes)
  2003. )
  2004. )
  2005. (property "Description" ""
  2006. (at 143.51 113.03 0)
  2007. (effects
  2008. (font
  2009. (size 1.27 1.27)
  2010. )
  2011. (hide yes)
  2012. )
  2013. )
  2014. (pin "1"
  2015. (uuid "8c91fa9e-9ea9-483d-ad47-5be33505966e")
  2016. )
  2017. (pin "2"
  2018. (uuid "8bc0e0c3-1075-4b8b-ba12-2f37050cc5f5")
  2019. )
  2020. (instances
  2021. (project "Desktop_50_Pin_TopConn"
  2022. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2023. (reference "R58")
  2024. (unit 1)
  2025. )
  2026. )
  2027. )
  2028. )
  2029. (symbol
  2030. (lib_id "74xx:74HC14")
  2031. (at 140.335 65.405 0)
  2032. (unit 4)
  2033. (exclude_from_sim no)
  2034. (in_bom yes)
  2035. (on_board yes)
  2036. (dnp no)
  2037. (fields_autoplaced yes)
  2038. (uuid "141b1b15-36f3-451e-b947-2e9470712c8d")
  2039. (property "Reference" "U8"
  2040. (at 140.335 57.785 0)
  2041. (effects
  2042. (font
  2043. (size 1.27 1.27)
  2044. )
  2045. )
  2046. )
  2047. (property "Value" "74HC14"
  2048. (at 140.335 60.325 0)
  2049. (effects
  2050. (font
  2051. (size 1.27 1.27)
  2052. )
  2053. )
  2054. )
  2055. (property "Footprint" ""
  2056. (at 140.335 65.405 0)
  2057. (effects
  2058. (font
  2059. (size 1.27 1.27)
  2060. )
  2061. (hide yes)
  2062. )
  2063. )
  2064. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  2065. (at 140.335 65.405 0)
  2066. (effects
  2067. (font
  2068. (size 1.27 1.27)
  2069. )
  2070. (hide yes)
  2071. )
  2072. )
  2073. (property "Description" ""
  2074. (at 140.335 65.405 0)
  2075. (effects
  2076. (font
  2077. (size 1.27 1.27)
  2078. )
  2079. (hide yes)
  2080. )
  2081. )
  2082. (pin "1"
  2083. (uuid "16da7fa3-8142-4e01-8cfd-ebabb8cb299c")
  2084. )
  2085. (pin "2"
  2086. (uuid "ce215639-a5db-4994-a85e-f31a4670ff8a")
  2087. )
  2088. (pin "3"
  2089. (uuid "615cba83-8dfb-4c46-9ee0-31e04281958c")
  2090. )
  2091. (pin "4"
  2092. (uuid "b4b8552c-8859-43b1-87f3-6e3882ad6a54")
  2093. )
  2094. (pin "5"
  2095. (uuid "923fef84-55e0-4d10-a0d1-9deb223c8316")
  2096. )
  2097. (pin "6"
  2098. (uuid "99e46c0d-5f7e-46eb-af78-df54b8f5d01f")
  2099. )
  2100. (pin "8"
  2101. (uuid "519e34ba-1bda-4c85-8b22-749102450a80")
  2102. )
  2103. (pin "9"
  2104. (uuid "25fbf094-1df6-47b9-9ea0-b359b87caa9b")
  2105. )
  2106. (pin "10"
  2107. (uuid "a36d74ac-740d-4574-afa8-cea08e00c5ce")
  2108. )
  2109. (pin "11"
  2110. (uuid "6a03f87c-7e30-4c15-8327-50fd71c52a41")
  2111. )
  2112. (pin "12"
  2113. (uuid "24846f92-ebf5-456f-9227-bfecdd50def5")
  2114. )
  2115. (pin "13"
  2116. (uuid "217491ec-1d7f-4fed-84a2-53f0d7d9cacc")
  2117. )
  2118. (pin "14"
  2119. (uuid "0ef45af2-1c5b-4c35-b5c9-7874b7a409ed")
  2120. )
  2121. (pin "7"
  2122. (uuid "e27f918c-c842-42d6-ab6a-98d34ad30ffa")
  2123. )
  2124. (instances
  2125. (project "Desktop_50_Pin_TopConn"
  2126. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2127. (reference "U8")
  2128. (unit 4)
  2129. )
  2130. )
  2131. )
  2132. )
  2133. (symbol
  2134. (lib_id "74xx:74HC14")
  2135. (at 170.815 144.145 0)
  2136. (unit 3)
  2137. (exclude_from_sim no)
  2138. (in_bom yes)
  2139. (on_board yes)
  2140. (dnp no)
  2141. (fields_autoplaced yes)
  2142. (uuid "1c997544-c68d-4ebb-bcb7-971a5922e34c")
  2143. (property "Reference" "U8"
  2144. (at 170.815 136.525 0)
  2145. (effects
  2146. (font
  2147. (size 1.27 1.27)
  2148. )
  2149. )
  2150. )
  2151. (property "Value" "74HC14"
  2152. (at 170.815 139.065 0)
  2153. (effects
  2154. (font
  2155. (size 1.27 1.27)
  2156. )
  2157. )
  2158. )
  2159. (property "Footprint" ""
  2160. (at 170.815 144.145 0)
  2161. (effects
  2162. (font
  2163. (size 1.27 1.27)
  2164. )
  2165. (hide yes)
  2166. )
  2167. )
  2168. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  2169. (at 170.815 144.145 0)
  2170. (effects
  2171. (font
  2172. (size 1.27 1.27)
  2173. )
  2174. (hide yes)
  2175. )
  2176. )
  2177. (property "Description" ""
  2178. (at 170.815 144.145 0)
  2179. (effects
  2180. (font
  2181. (size 1.27 1.27)
  2182. )
  2183. (hide yes)
  2184. )
  2185. )
  2186. (pin "1"
  2187. (uuid "d2b367b7-4790-419c-8242-745d4a3b40d9")
  2188. )
  2189. (pin "2"
  2190. (uuid "31c66e07-8ff0-4e72-a937-e902ee9cbe28")
  2191. )
  2192. (pin "3"
  2193. (uuid "3eee84f7-0594-4885-80e2-c37d4fe25300")
  2194. )
  2195. (pin "4"
  2196. (uuid "64d78021-3583-4a0e-a653-704ea5c6c9bc")
  2197. )
  2198. (pin "5"
  2199. (uuid "c2652a2c-8465-4334-8755-8a9b5b2b500f")
  2200. )
  2201. (pin "6"
  2202. (uuid "6e6c6102-dbf1-4895-83cd-5caef2744695")
  2203. )
  2204. (pin "8"
  2205. (uuid "73bf6468-e7a1-4920-8ed0-12eb6fc3a867")
  2206. )
  2207. (pin "9"
  2208. (uuid "9d3a51f2-980b-4bf8-a0fd-a065ecd76cea")
  2209. )
  2210. (pin "10"
  2211. (uuid "ded85e50-e3f7-46a0-998b-69691b41c6b8")
  2212. )
  2213. (pin "11"
  2214. (uuid "64db64c9-b182-4f0a-ac25-02a638c90605")
  2215. )
  2216. (pin "12"
  2217. (uuid "4495ba03-3ad7-4d47-bf49-d352f3b2e1af")
  2218. )
  2219. (pin "13"
  2220. (uuid "095c76fb-936a-4cce-8cac-40d9e936e556")
  2221. )
  2222. (pin "14"
  2223. (uuid "5860eea9-3005-4138-82a9-0e19088ba689")
  2224. )
  2225. (pin "7"
  2226. (uuid "9591bf45-e436-4b8d-ae06-05ba68b37055")
  2227. )
  2228. (instances
  2229. (project "Desktop_50_Pin_TopConn"
  2230. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2231. (reference "U8")
  2232. (unit 3)
  2233. )
  2234. )
  2235. )
  2236. )
  2237. (symbol
  2238. (lib_id "Jumper:SolderJumper_2_Open")
  2239. (at 143.51 119.38 0)
  2240. (unit 1)
  2241. (exclude_from_sim no)
  2242. (in_bom yes)
  2243. (on_board yes)
  2244. (dnp no)
  2245. (uuid "2de70ce8-1ae0-4c74-b56f-c1191fa8e250")
  2246. (property "Reference" "JP1"
  2247. (at 143.51 128.27 0)
  2248. (effects
  2249. (font
  2250. (size 1.27 1.27)
  2251. )
  2252. )
  2253. )
  2254. (property "Value" "SolderJumper_2_Open"
  2255. (at 143.51 124.46 0)
  2256. (effects
  2257. (font
  2258. (size 1.27 1.27)
  2259. )
  2260. )
  2261. )
  2262. (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm"
  2263. (at 143.51 119.38 0)
  2264. (effects
  2265. (font
  2266. (size 1.27 1.27)
  2267. )
  2268. (hide yes)
  2269. )
  2270. )
  2271. (property "Datasheet" "~"
  2272. (at 143.51 119.38 0)
  2273. (effects
  2274. (font
  2275. (size 1.27 1.27)
  2276. )
  2277. (hide yes)
  2278. )
  2279. )
  2280. (property "Description" ""
  2281. (at 143.51 119.38 0)
  2282. (effects
  2283. (font
  2284. (size 1.27 1.27)
  2285. )
  2286. (hide yes)
  2287. )
  2288. )
  2289. (pin "1"
  2290. (uuid "5d98f46e-f53d-4d71-875d-a99eb75da47a")
  2291. )
  2292. (pin "2"
  2293. (uuid "4ad152c9-7559-477c-be92-772abdefc59e")
  2294. )
  2295. (instances
  2296. (project "Desktop_50_Pin_TopConn"
  2297. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2298. (reference "JP1")
  2299. (unit 1)
  2300. )
  2301. )
  2302. )
  2303. )
  2304. (symbol
  2305. (lib_id "Jumper:SolderJumper_2_Open")
  2306. (at 151.13 105.41 0)
  2307. (unit 1)
  2308. (exclude_from_sim no)
  2309. (in_bom yes)
  2310. (on_board yes)
  2311. (dnp no)
  2312. (fields_autoplaced yes)
  2313. (uuid "2e4317c4-aac7-453f-a079-7fbec4fe7cb0")
  2314. (property "Reference" "JP2"
  2315. (at 151.13 99.06 0)
  2316. (effects
  2317. (font
  2318. (size 1.27 1.27)
  2319. )
  2320. )
  2321. )
  2322. (property "Value" "SolderJumper_2_Open"
  2323. (at 151.13 101.6 0)
  2324. (effects
  2325. (font
  2326. (size 1.27 1.27)
  2327. )
  2328. )
  2329. )
  2330. (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm"
  2331. (at 151.13 105.41 0)
  2332. (effects
  2333. (font
  2334. (size 1.27 1.27)
  2335. )
  2336. (hide yes)
  2337. )
  2338. )
  2339. (property "Datasheet" "~"
  2340. (at 151.13 105.41 0)
  2341. (effects
  2342. (font
  2343. (size 1.27 1.27)
  2344. )
  2345. (hide yes)
  2346. )
  2347. )
  2348. (property "Description" ""
  2349. (at 151.13 105.41 0)
  2350. (effects
  2351. (font
  2352. (size 1.27 1.27)
  2353. )
  2354. (hide yes)
  2355. )
  2356. )
  2357. (pin "1"
  2358. (uuid "62d766e0-2377-48f7-bba6-c1d8bde97cfd")
  2359. )
  2360. (pin "2"
  2361. (uuid "faa93709-af01-4c11-aa32-1deca8703476")
  2362. )
  2363. (instances
  2364. (project "Desktop_50_Pin_TopConn"
  2365. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2366. (reference "JP2")
  2367. (unit 1)
  2368. )
  2369. )
  2370. )
  2371. )
  2372. (symbol
  2373. (lib_id "power:GND")
  2374. (at 173.99 115.57 270)
  2375. (unit 1)
  2376. (exclude_from_sim no)
  2377. (in_bom yes)
  2378. (on_board yes)
  2379. (dnp no)
  2380. (uuid "2efea9f0-7cc8-422a-a8fd-5b3e4f07e3f9")
  2381. (property "Reference" "#PWR069"
  2382. (at 167.64 115.57 0)
  2383. (effects
  2384. (font
  2385. (size 1.27 1.27)
  2386. )
  2387. (hide yes)
  2388. )
  2389. )
  2390. (property "Value" "GND"
  2391. (at 169.5958 115.697 90)
  2392. (effects
  2393. (font
  2394. (size 1.27 1.27)
  2395. )
  2396. )
  2397. )
  2398. (property "Footprint" ""
  2399. (at 173.99 115.57 0)
  2400. (effects
  2401. (font
  2402. (size 1.27 1.27)
  2403. )
  2404. (hide yes)
  2405. )
  2406. )
  2407. (property "Datasheet" ""
  2408. (at 173.99 115.57 0)
  2409. (effects
  2410. (font
  2411. (size 1.27 1.27)
  2412. )
  2413. (hide yes)
  2414. )
  2415. )
  2416. (property "Description" ""
  2417. (at 173.99 115.57 0)
  2418. (effects
  2419. (font
  2420. (size 1.27 1.27)
  2421. )
  2422. (hide yes)
  2423. )
  2424. )
  2425. (pin "1"
  2426. (uuid "5b9837a4-5069-4f2a-a1dc-84dac46dbb53")
  2427. )
  2428. (instances
  2429. (project "Desktop_50_Pin_TopConn"
  2430. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2431. (reference "#PWR069")
  2432. (unit 1)
  2433. )
  2434. )
  2435. )
  2436. )
  2437. (symbol
  2438. (lib_id "74xx:74HC14")
  2439. (at 132.08 87.63 0)
  2440. (unit 6)
  2441. (exclude_from_sim no)
  2442. (in_bom yes)
  2443. (on_board yes)
  2444. (dnp no)
  2445. (fields_autoplaced yes)
  2446. (uuid "62f81cd8-d464-4ba8-95bb-cac38e9a3906")
  2447. (property "Reference" "U8"
  2448. (at 132.08 80.01 0)
  2449. (effects
  2450. (font
  2451. (size 1.27 1.27)
  2452. )
  2453. )
  2454. )
  2455. (property "Value" "74HC14"
  2456. (at 132.08 82.55 0)
  2457. (effects
  2458. (font
  2459. (size 1.27 1.27)
  2460. )
  2461. )
  2462. )
  2463. (property "Footprint" ""
  2464. (at 132.08 87.63 0)
  2465. (effects
  2466. (font
  2467. (size 1.27 1.27)
  2468. )
  2469. (hide yes)
  2470. )
  2471. )
  2472. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  2473. (at 132.08 87.63 0)
  2474. (effects
  2475. (font
  2476. (size 1.27 1.27)
  2477. )
  2478. (hide yes)
  2479. )
  2480. )
  2481. (property "Description" ""
  2482. (at 132.08 87.63 0)
  2483. (effects
  2484. (font
  2485. (size 1.27 1.27)
  2486. )
  2487. (hide yes)
  2488. )
  2489. )
  2490. (pin "1"
  2491. (uuid "205e8fcf-3253-4945-b6f8-324d458809bf")
  2492. )
  2493. (pin "2"
  2494. (uuid "fcd22ee9-efeb-4045-bff8-f7abbe6790da")
  2495. )
  2496. (pin "3"
  2497. (uuid "b8ec2111-ae0a-4854-9ce0-2ad10723ad95")
  2498. )
  2499. (pin "4"
  2500. (uuid "79030c41-db28-4298-8a76-f2f9a43e7b62")
  2501. )
  2502. (pin "5"
  2503. (uuid "1c630057-dc46-430c-ac3d-00e82dc14f00")
  2504. )
  2505. (pin "6"
  2506. (uuid "bfa6623d-1136-43b9-b56d-051dccbece3c")
  2507. )
  2508. (pin "8"
  2509. (uuid "3c53f71d-9ffe-421d-ae29-ed09a8eb0279")
  2510. )
  2511. (pin "9"
  2512. (uuid "5e894e57-2b96-4ace-b80a-583c8e3467cc")
  2513. )
  2514. (pin "10"
  2515. (uuid "5137dac0-e4ce-43f9-b647-1826f53ec2fb")
  2516. )
  2517. (pin "11"
  2518. (uuid "a06c441e-8723-485b-a577-8940d508e87e")
  2519. )
  2520. (pin "12"
  2521. (uuid "8cc3a301-d076-42e4-82f6-68d32827174e")
  2522. )
  2523. (pin "13"
  2524. (uuid "470d9ef6-7530-4b82-abaa-138d6c231937")
  2525. )
  2526. (pin "14"
  2527. (uuid "dc9125a4-86ca-401d-bb5a-3cddfc684513")
  2528. )
  2529. (pin "7"
  2530. (uuid "e95818cd-3677-4fb7-8f15-8a9076b017a4")
  2531. )
  2532. (instances
  2533. (project "Desktop_50_Pin_TopConn"
  2534. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2535. (reference "U8")
  2536. (unit 6)
  2537. )
  2538. )
  2539. )
  2540. )
  2541. (symbol
  2542. (lib_id "Device:R")
  2543. (at 158.75 87.63 90)
  2544. (unit 1)
  2545. (exclude_from_sim no)
  2546. (in_bom yes)
  2547. (on_board yes)
  2548. (dnp no)
  2549. (uuid "6ca8997b-a36f-4abc-8df3-7255061bc846")
  2550. (property "Reference" "R56"
  2551. (at 157.48 85.09 90)
  2552. (effects
  2553. (font
  2554. (size 1.27 1.27)
  2555. )
  2556. )
  2557. )
  2558. (property "Value" "4.7k"
  2559. (at 158.75 87.63 90)
  2560. (effects
  2561. (font
  2562. (size 1.27 1.27)
  2563. )
  2564. )
  2565. )
  2566. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"
  2567. (at 158.75 89.408 90)
  2568. (effects
  2569. (font
  2570. (size 1.27 1.27)
  2571. )
  2572. (hide yes)
  2573. )
  2574. )
  2575. (property "Datasheet" "~"
  2576. (at 158.75 87.63 0)
  2577. (effects
  2578. (font
  2579. (size 1.27 1.27)
  2580. )
  2581. (hide yes)
  2582. )
  2583. )
  2584. (property "Description" ""
  2585. (at 158.75 87.63 0)
  2586. (effects
  2587. (font
  2588. (size 1.27 1.27)
  2589. )
  2590. (hide yes)
  2591. )
  2592. )
  2593. (pin "1"
  2594. (uuid "d98833c7-753b-4785-b87f-2393c2b1bbee")
  2595. )
  2596. (pin "2"
  2597. (uuid "9baabfd2-7534-4904-82d8-d5111c7aedb9")
  2598. )
  2599. (instances
  2600. (project "Desktop_50_Pin_TopConn"
  2601. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2602. (reference "R56")
  2603. (unit 1)
  2604. )
  2605. )
  2606. )
  2607. )
  2608. (symbol
  2609. (lib_id "power:+5F")
  2610. (at 128.27 38.1 90)
  2611. (unit 1)
  2612. (exclude_from_sim no)
  2613. (in_bom yes)
  2614. (on_board yes)
  2615. (dnp no)
  2616. (uuid "6ef47171-a576-4917-bb7f-860b1d601318")
  2617. (property "Reference" "#PWR038"
  2618. (at 132.08 38.1 0)
  2619. (effects
  2620. (font
  2621. (size 1.27 1.27)
  2622. )
  2623. (hide yes)
  2624. )
  2625. )
  2626. (property "Value" "+5F"
  2627. (at 123.8758 37.719 90)
  2628. (effects
  2629. (font
  2630. (size 1.27 1.27)
  2631. )
  2632. )
  2633. )
  2634. (property "Footprint" ""
  2635. (at 128.27 38.1 0)
  2636. (effects
  2637. (font
  2638. (size 1.27 1.27)
  2639. )
  2640. (hide yes)
  2641. )
  2642. )
  2643. (property "Datasheet" ""
  2644. (at 128.27 38.1 0)
  2645. (effects
  2646. (font
  2647. (size 1.27 1.27)
  2648. )
  2649. (hide yes)
  2650. )
  2651. )
  2652. (property "Description" ""
  2653. (at 128.27 38.1 0)
  2654. (effects
  2655. (font
  2656. (size 1.27 1.27)
  2657. )
  2658. (hide yes)
  2659. )
  2660. )
  2661. (pin "1"
  2662. (uuid "7f577f61-f871-40b8-aa7c-c877ad22645d")
  2663. )
  2664. (instances
  2665. (project "Desktop_50_Pin_TopConn"
  2666. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2667. (reference "#PWR038")
  2668. (unit 1)
  2669. )
  2670. )
  2671. )
  2672. )
  2673. (symbol
  2674. (lib_id "power:GND")
  2675. (at 170.18 87.63 90)
  2676. (unit 1)
  2677. (exclude_from_sim no)
  2678. (in_bom yes)
  2679. (on_board yes)
  2680. (dnp no)
  2681. (uuid "73356ba7-efc3-4b42-ac5c-6a8d7efb2002")
  2682. (property "Reference" "#PWR035"
  2683. (at 176.53 87.63 0)
  2684. (effects
  2685. (font
  2686. (size 1.27 1.27)
  2687. )
  2688. (hide yes)
  2689. )
  2690. )
  2691. (property "Value" "GND"
  2692. (at 174.5742 87.503 90)
  2693. (effects
  2694. (font
  2695. (size 1.27 1.27)
  2696. )
  2697. )
  2698. )
  2699. (property "Footprint" ""
  2700. (at 170.18 87.63 0)
  2701. (effects
  2702. (font
  2703. (size 1.27 1.27)
  2704. )
  2705. (hide yes)
  2706. )
  2707. )
  2708. (property "Datasheet" ""
  2709. (at 170.18 87.63 0)
  2710. (effects
  2711. (font
  2712. (size 1.27 1.27)
  2713. )
  2714. (hide yes)
  2715. )
  2716. )
  2717. (property "Description" ""
  2718. (at 170.18 87.63 0)
  2719. (effects
  2720. (font
  2721. (size 1.27 1.27)
  2722. )
  2723. (hide yes)
  2724. )
  2725. )
  2726. (pin "1"
  2727. (uuid "9f73b5ce-ded7-4d7b-b083-ab6406a4e444")
  2728. )
  2729. (instances
  2730. (project "Desktop_50_Pin_TopConn"
  2731. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2732. (reference "#PWR035")
  2733. (unit 1)
  2734. )
  2735. )
  2736. )
  2737. )
  2738. (symbol
  2739. (lib_id "74xx:74HC14")
  2740. (at 129.54 113.03 0)
  2741. (unit 1)
  2742. (exclude_from_sim no)
  2743. (in_bom yes)
  2744. (on_board yes)
  2745. (dnp no)
  2746. (fields_autoplaced yes)
  2747. (uuid "7fef15f8-6850-412e-9c4d-3c06bb5765f1")
  2748. (property "Reference" "U8"
  2749. (at 129.54 105.41 0)
  2750. (effects
  2751. (font
  2752. (size 1.27 1.27)
  2753. )
  2754. )
  2755. )
  2756. (property "Value" "74HC14"
  2757. (at 129.54 107.95 0)
  2758. (effects
  2759. (font
  2760. (size 1.27 1.27)
  2761. )
  2762. )
  2763. )
  2764. (property "Footprint" ""
  2765. (at 129.54 113.03 0)
  2766. (effects
  2767. (font
  2768. (size 1.27 1.27)
  2769. )
  2770. (hide yes)
  2771. )
  2772. )
  2773. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  2774. (at 129.54 113.03 0)
  2775. (effects
  2776. (font
  2777. (size 1.27 1.27)
  2778. )
  2779. (hide yes)
  2780. )
  2781. )
  2782. (property "Description" ""
  2783. (at 129.54 113.03 0)
  2784. (effects
  2785. (font
  2786. (size 1.27 1.27)
  2787. )
  2788. (hide yes)
  2789. )
  2790. )
  2791. (pin "1"
  2792. (uuid "8d01a91e-9654-4464-a145-8e4c7fed5574")
  2793. )
  2794. (pin "2"
  2795. (uuid "e02b34f1-6638-4f2d-9233-62b8edffab71")
  2796. )
  2797. (pin "3"
  2798. (uuid "a9da58b9-f44d-440e-be7b-4e4452316ea3")
  2799. )
  2800. (pin "4"
  2801. (uuid "5197cb7f-2b30-44c7-80c9-23d5538c7383")
  2802. )
  2803. (pin "5"
  2804. (uuid "b8aa591e-cc69-4a61-bc5d-d225c0dc60c4")
  2805. )
  2806. (pin "6"
  2807. (uuid "9af8c29f-027c-4cbe-b49a-39d2537431d9")
  2808. )
  2809. (pin "8"
  2810. (uuid "de186d07-61d2-4e4f-b647-274d0477c735")
  2811. )
  2812. (pin "9"
  2813. (uuid "d78c1397-66c2-48d3-84c2-d3d0ddee9b92")
  2814. )
  2815. (pin "10"
  2816. (uuid "baea6228-708a-42f3-8ed3-5766becd5ae8")
  2817. )
  2818. (pin "11"
  2819. (uuid "34408a97-d0c8-4eaf-9c52-b414aa28e3c5")
  2820. )
  2821. (pin "12"
  2822. (uuid "9cf1061f-c850-46fc-a1a1-c443ad45170e")
  2823. )
  2824. (pin "13"
  2825. (uuid "9cd196f7-2c04-4144-9cf4-21ef1d671444")
  2826. )
  2827. (pin "14"
  2828. (uuid "6c44e151-b85b-4f83-bb1c-1122bd0c97a5")
  2829. )
  2830. (pin "7"
  2831. (uuid "d0c9f060-4a05-4e91-baf1-f04c6d39b47e")
  2832. )
  2833. (instances
  2834. (project "Desktop_50_Pin_TopConn"
  2835. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2836. (reference "U8")
  2837. (unit 1)
  2838. )
  2839. )
  2840. )
  2841. )
  2842. (symbol
  2843. (lib_id "74xx:74HC14")
  2844. (at 140.97 38.1 90)
  2845. (unit 7)
  2846. (exclude_from_sim no)
  2847. (in_bom yes)
  2848. (on_board yes)
  2849. (dnp no)
  2850. (fields_autoplaced yes)
  2851. (uuid "89f51bb8-c154-4014-ab70-ce4d8ca3c2ad")
  2852. (property "Reference" "U8"
  2853. (at 140.97 29.21 90)
  2854. (effects
  2855. (font
  2856. (size 1.27 1.27)
  2857. )
  2858. )
  2859. )
  2860. (property "Value" "74HC14"
  2861. (at 140.97 31.75 90)
  2862. (effects
  2863. (font
  2864. (size 1.27 1.27)
  2865. )
  2866. )
  2867. )
  2868. (property "Footprint" "Package_SO:SO-14_3.9x8.65mm_P1.27mm"
  2869. (at 140.97 38.1 0)
  2870. (effects
  2871. (font
  2872. (size 1.27 1.27)
  2873. )
  2874. (hide yes)
  2875. )
  2876. )
  2877. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  2878. (at 140.97 38.1 0)
  2879. (effects
  2880. (font
  2881. (size 1.27 1.27)
  2882. )
  2883. (hide yes)
  2884. )
  2885. )
  2886. (property "Description" ""
  2887. (at 140.97 38.1 0)
  2888. (effects
  2889. (font
  2890. (size 1.27 1.27)
  2891. )
  2892. (hide yes)
  2893. )
  2894. )
  2895. (property "JLC Part #" "C5605"
  2896. (at 140.97 38.1 90)
  2897. (effects
  2898. (font
  2899. (size 1.27 1.27)
  2900. )
  2901. (hide yes)
  2902. )
  2903. )
  2904. (pin "1"
  2905. (uuid "c29c2c5b-9def-4f91-ac90-70975914e0b2")
  2906. )
  2907. (pin "2"
  2908. (uuid "fad76b35-d12f-45f5-a800-584163c194d3")
  2909. )
  2910. (pin "3"
  2911. (uuid "f75ad69b-2d6a-4a93-839e-17e469956c12")
  2912. )
  2913. (pin "4"
  2914. (uuid "cd700d4c-9c3c-4bd2-bb0e-c218423dad86")
  2915. )
  2916. (pin "5"
  2917. (uuid "52ebd9f7-9888-40f9-89e4-d9b2dc160aaa")
  2918. )
  2919. (pin "6"
  2920. (uuid "139d3128-253a-41f2-86d9-29eb85df08e4")
  2921. )
  2922. (pin "8"
  2923. (uuid "491668ea-f5be-450c-b89e-9daa7f3f998d")
  2924. )
  2925. (pin "9"
  2926. (uuid "e3a98c90-80ab-48e1-ada3-bf29f9635bf1")
  2927. )
  2928. (pin "10"
  2929. (uuid "7a81eec1-5fd8-4873-b98e-c9f495d4f895")
  2930. )
  2931. (pin "11"
  2932. (uuid "2e0205ba-66d7-471a-8a2c-e9b3a56c3727")
  2933. )
  2934. (pin "12"
  2935. (uuid "1b9bb519-447b-4a86-9194-861b646d904f")
  2936. )
  2937. (pin "13"
  2938. (uuid "9aa3b67d-5d59-4dbf-8446-59e13966053d")
  2939. )
  2940. (pin "14"
  2941. (uuid "c639a0c3-a230-4835-80c3-f5d1f89769c6")
  2942. )
  2943. (pin "7"
  2944. (uuid "44cd969e-3d8d-4682-ba79-5dee0918b0a0")
  2945. )
  2946. (instances
  2947. (project "Desktop_50_Pin_TopConn"
  2948. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  2949. (reference "U8")
  2950. (unit 7)
  2951. )
  2952. )
  2953. )
  2954. )
  2955. (symbol
  2956. (lib_id "Device:LED")
  2957. (at 159.385 65.405 180)
  2958. (unit 1)
  2959. (exclude_from_sim no)
  2960. (in_bom yes)
  2961. (on_board yes)
  2962. (dnp no)
  2963. (fields_autoplaced yes)
  2964. (uuid "8d0a51c9-9e20-4a99-b2e5-75425b930be7")
  2965. (property "Reference" "D3"
  2966. (at 160.9725 59.055 0)
  2967. (effects
  2968. (font
  2969. (size 1.27 1.27)
  2970. )
  2971. )
  2972. )
  2973. (property "Value" "LED"
  2974. (at 160.9725 61.595 0)
  2975. (effects
  2976. (font
  2977. (size 1.27 1.27)
  2978. )
  2979. )
  2980. )
  2981. (property "Footprint" "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder"
  2982. (at 159.385 65.405 0)
  2983. (effects
  2984. (font
  2985. (size 1.27 1.27)
  2986. )
  2987. (hide yes)
  2988. )
  2989. )
  2990. (property "Datasheet" "~"
  2991. (at 159.385 65.405 0)
  2992. (effects
  2993. (font
  2994. (size 1.27 1.27)
  2995. )
  2996. (hide yes)
  2997. )
  2998. )
  2999. (property "Description" ""
  3000. (at 159.385 65.405 0)
  3001. (effects
  3002. (font
  3003. (size 1.27 1.27)
  3004. )
  3005. (hide yes)
  3006. )
  3007. )
  3008. (property "JLCPCB Part Number" "C72041"
  3009. (at 159.385 65.405 0)
  3010. (effects
  3011. (font
  3012. (size 1.27 1.27)
  3013. )
  3014. (hide yes)
  3015. )
  3016. )
  3017. (pin "1"
  3018. (uuid "95e3e880-62d7-44e0-9bc3-e519748082f0")
  3019. )
  3020. (pin "2"
  3021. (uuid "12f0e50f-3297-4878-849c-16d5cb16f324")
  3022. )
  3023. (instances
  3024. (project "Desktop_50_Pin_TopConn"
  3025. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3026. (reference "D3")
  3027. (unit 1)
  3028. )
  3029. )
  3030. )
  3031. )
  3032. (symbol
  3033. (lib_id "power:GND")
  3034. (at 163.195 144.145 270)
  3035. (unit 1)
  3036. (exclude_from_sim no)
  3037. (in_bom yes)
  3038. (on_board yes)
  3039. (dnp no)
  3040. (uuid "8dad90a8-bdcd-4452-b63b-3cbb02090de4")
  3041. (property "Reference" "#PWR059"
  3042. (at 156.845 144.145 0)
  3043. (effects
  3044. (font
  3045. (size 1.27 1.27)
  3046. )
  3047. (hide yes)
  3048. )
  3049. )
  3050. (property "Value" "GND"
  3051. (at 158.8008 144.272 90)
  3052. (effects
  3053. (font
  3054. (size 1.27 1.27)
  3055. )
  3056. )
  3057. )
  3058. (property "Footprint" ""
  3059. (at 163.195 144.145 0)
  3060. (effects
  3061. (font
  3062. (size 1.27 1.27)
  3063. )
  3064. (hide yes)
  3065. )
  3066. )
  3067. (property "Datasheet" ""
  3068. (at 163.195 144.145 0)
  3069. (effects
  3070. (font
  3071. (size 1.27 1.27)
  3072. )
  3073. (hide yes)
  3074. )
  3075. )
  3076. (property "Description" ""
  3077. (at 163.195 144.145 0)
  3078. (effects
  3079. (font
  3080. (size 1.27 1.27)
  3081. )
  3082. (hide yes)
  3083. )
  3084. )
  3085. (pin "1"
  3086. (uuid "e70f6f2e-2236-43a2-a0e9-321c04bbf3e7")
  3087. )
  3088. (instances
  3089. (project "Desktop_50_Pin_TopConn"
  3090. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3091. (reference "#PWR059")
  3092. (unit 1)
  3093. )
  3094. )
  3095. )
  3096. )
  3097. (symbol
  3098. (lib_id "74xx:74HC14")
  3099. (at 125.73 144.145 0)
  3100. (unit 2)
  3101. (exclude_from_sim no)
  3102. (in_bom yes)
  3103. (on_board yes)
  3104. (dnp no)
  3105. (fields_autoplaced yes)
  3106. (uuid "97aa4e0d-8b58-42e7-a51b-e21522a5aa78")
  3107. (property "Reference" "U8"
  3108. (at 125.73 136.525 0)
  3109. (effects
  3110. (font
  3111. (size 1.27 1.27)
  3112. )
  3113. )
  3114. )
  3115. (property "Value" "74HC14"
  3116. (at 125.73 139.065 0)
  3117. (effects
  3118. (font
  3119. (size 1.27 1.27)
  3120. )
  3121. )
  3122. )
  3123. (property "Footprint" ""
  3124. (at 125.73 144.145 0)
  3125. (effects
  3126. (font
  3127. (size 1.27 1.27)
  3128. )
  3129. (hide yes)
  3130. )
  3131. )
  3132. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  3133. (at 125.73 144.145 0)
  3134. (effects
  3135. (font
  3136. (size 1.27 1.27)
  3137. )
  3138. (hide yes)
  3139. )
  3140. )
  3141. (property "Description" ""
  3142. (at 125.73 144.145 0)
  3143. (effects
  3144. (font
  3145. (size 1.27 1.27)
  3146. )
  3147. (hide yes)
  3148. )
  3149. )
  3150. (pin "1"
  3151. (uuid "f9428684-561b-4647-8104-7f9326b7e450")
  3152. )
  3153. (pin "2"
  3154. (uuid "6083480d-4cc4-4c05-85fe-7a6256046947")
  3155. )
  3156. (pin "3"
  3157. (uuid "0fb75a28-92ad-4ed4-b9d8-317b99910922")
  3158. )
  3159. (pin "4"
  3160. (uuid "3128ab97-d293-4472-836d-a74f99048b8e")
  3161. )
  3162. (pin "5"
  3163. (uuid "9814ee64-818b-4332-ac4c-6ded20e91ab7")
  3164. )
  3165. (pin "6"
  3166. (uuid "89e4b0f0-c6d8-4804-b3b3-38596314a4d6")
  3167. )
  3168. (pin "8"
  3169. (uuid "0dbc4ff6-2cad-4b1b-b73b-a333b24dcc01")
  3170. )
  3171. (pin "9"
  3172. (uuid "9e33de11-5ea4-467e-8d57-f3d65665c5af")
  3173. )
  3174. (pin "10"
  3175. (uuid "cdb10a53-507c-4d14-8ad0-5059f1955c20")
  3176. )
  3177. (pin "11"
  3178. (uuid "053ca136-ade9-4b03-98cf-ed5283a2653d")
  3179. )
  3180. (pin "12"
  3181. (uuid "0c386475-1bea-45c6-9135-0d092c52fce2")
  3182. )
  3183. (pin "13"
  3184. (uuid "d535f82b-aac8-4cc4-9912-3cc0f9fb79e9")
  3185. )
  3186. (pin "14"
  3187. (uuid "e79e4797-25a9-4af8-b937-196c0fa535d0")
  3188. )
  3189. (pin "7"
  3190. (uuid "7d1361a0-cd2c-41de-8527-e6d4b5170260")
  3191. )
  3192. (instances
  3193. (project "Desktop_50_Pin_TopConn"
  3194. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3195. (reference "U8")
  3196. (unit 2)
  3197. )
  3198. )
  3199. )
  3200. )
  3201. (symbol
  3202. (lib_id "Device:LED")
  3203. (at 166.37 87.63 180)
  3204. (unit 1)
  3205. (exclude_from_sim no)
  3206. (in_bom yes)
  3207. (on_board yes)
  3208. (dnp no)
  3209. (fields_autoplaced yes)
  3210. (uuid "98a58317-1c0f-4f61-b2e6-224f79d56787")
  3211. (property "Reference" "D4"
  3212. (at 167.9575 81.28 0)
  3213. (effects
  3214. (font
  3215. (size 1.27 1.27)
  3216. )
  3217. )
  3218. )
  3219. (property "Value" "LED"
  3220. (at 167.9575 83.82 0)
  3221. (effects
  3222. (font
  3223. (size 1.27 1.27)
  3224. )
  3225. )
  3226. )
  3227. (property "Footprint" "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder"
  3228. (at 166.37 87.63 0)
  3229. (effects
  3230. (font
  3231. (size 1.27 1.27)
  3232. )
  3233. (hide yes)
  3234. )
  3235. )
  3236. (property "Datasheet" "~"
  3237. (at 166.37 87.63 0)
  3238. (effects
  3239. (font
  3240. (size 1.27 1.27)
  3241. )
  3242. (hide yes)
  3243. )
  3244. )
  3245. (property "Description" ""
  3246. (at 166.37 87.63 0)
  3247. (effects
  3248. (font
  3249. (size 1.27 1.27)
  3250. )
  3251. (hide yes)
  3252. )
  3253. )
  3254. (property "JLCPCB Part #" "C2290"
  3255. (at 166.37 87.63 0)
  3256. (effects
  3257. (font
  3258. (size 1.27 1.27)
  3259. )
  3260. (hide yes)
  3261. )
  3262. )
  3263. (pin "1"
  3264. (uuid "3b092105-7e66-44ab-8514-bc6593c50f00")
  3265. )
  3266. (pin "2"
  3267. (uuid "38da5fb5-c91d-48c6-b37f-dca28d1f74f3")
  3268. )
  3269. (instances
  3270. (project "Desktop_50_Pin_TopConn"
  3271. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3272. (reference "D4")
  3273. (unit 1)
  3274. )
  3275. )
  3276. )
  3277. )
  3278. (symbol
  3279. (lib_id "Device:R")
  3280. (at 151.765 65.405 90)
  3281. (unit 1)
  3282. (exclude_from_sim no)
  3283. (in_bom yes)
  3284. (on_board yes)
  3285. (dnp no)
  3286. (uuid "9f41e0b8-7a06-4a29-9f5f-e5231c34c97e")
  3287. (property "Reference" "R30"
  3288. (at 150.495 62.865 90)
  3289. (effects
  3290. (font
  3291. (size 1.27 1.27)
  3292. )
  3293. )
  3294. )
  3295. (property "Value" "470"
  3296. (at 151.765 65.405 90)
  3297. (effects
  3298. (font
  3299. (size 1.27 1.27)
  3300. )
  3301. )
  3302. )
  3303. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder"
  3304. (at 151.765 67.183 90)
  3305. (effects
  3306. (font
  3307. (size 1.27 1.27)
  3308. )
  3309. (hide yes)
  3310. )
  3311. )
  3312. (property "Datasheet" "~"
  3313. (at 151.765 65.405 0)
  3314. (effects
  3315. (font
  3316. (size 1.27 1.27)
  3317. )
  3318. (hide yes)
  3319. )
  3320. )
  3321. (property "Description" ""
  3322. (at 151.765 65.405 0)
  3323. (effects
  3324. (font
  3325. (size 1.27 1.27)
  3326. )
  3327. (hide yes)
  3328. )
  3329. )
  3330. (pin "1"
  3331. (uuid "0933b6c8-6a69-482b-b6f6-86535e99de24")
  3332. )
  3333. (pin "2"
  3334. (uuid "19fbcf66-9b02-432d-b75e-b4e2118116e9")
  3335. )
  3336. (instances
  3337. (project "Desktop_50_Pin_TopConn"
  3338. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3339. (reference "R30")
  3340. (unit 1)
  3341. )
  3342. )
  3343. )
  3344. )
  3345. (symbol
  3346. (lib_id "Connector:Conn_01x03_Male")
  3347. (at 179.07 113.03 180)
  3348. (unit 1)
  3349. (exclude_from_sim no)
  3350. (in_bom yes)
  3351. (on_board yes)
  3352. (dnp no)
  3353. (uuid "a414ff08-189a-4004-8a5d-041c3b067e5c")
  3354. (property "Reference" "J5"
  3355. (at 172.72 104.14 0)
  3356. (effects
  3357. (font
  3358. (size 1.27 1.27)
  3359. )
  3360. )
  3361. )
  3362. (property "Value" "Conn_01x03_Male"
  3363. (at 172.72 106.68 0)
  3364. (effects
  3365. (font
  3366. (size 1.27 1.27)
  3367. )
  3368. )
  3369. )
  3370. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical"
  3371. (at 179.07 113.03 0)
  3372. (effects
  3373. (font
  3374. (size 1.27 1.27)
  3375. )
  3376. (hide yes)
  3377. )
  3378. )
  3379. (property "Datasheet" "~"
  3380. (at 179.07 113.03 0)
  3381. (effects
  3382. (font
  3383. (size 1.27 1.27)
  3384. )
  3385. (hide yes)
  3386. )
  3387. )
  3388. (property "Description" ""
  3389. (at 179.07 113.03 0)
  3390. (effects
  3391. (font
  3392. (size 1.27 1.27)
  3393. )
  3394. (hide yes)
  3395. )
  3396. )
  3397. (pin "1"
  3398. (uuid "50df69c5-96ed-42cb-8d72-e07dcbfdce3b")
  3399. )
  3400. (pin "2"
  3401. (uuid "6c67bdbf-3922-496a-b3d7-6b0a54a75f0b")
  3402. )
  3403. (pin "3"
  3404. (uuid "60a19285-6ceb-434b-be04-41acc7a3e2aa")
  3405. )
  3406. (instances
  3407. (project "Desktop_50_Pin_TopConn"
  3408. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3409. (reference "J5")
  3410. (unit 1)
  3411. )
  3412. )
  3413. )
  3414. )
  3415. (symbol
  3416. (lib_id "power:+5F")
  3417. (at 124.46 87.63 90)
  3418. (unit 1)
  3419. (exclude_from_sim no)
  3420. (in_bom yes)
  3421. (on_board yes)
  3422. (dnp no)
  3423. (uuid "aea32f12-6a9e-4985-9c35-b2338aa502e3")
  3424. (property "Reference" "#PWR014"
  3425. (at 128.27 87.63 0)
  3426. (effects
  3427. (font
  3428. (size 1.27 1.27)
  3429. )
  3430. (hide yes)
  3431. )
  3432. )
  3433. (property "Value" "+5F"
  3434. (at 120.0658 87.249 90)
  3435. (effects
  3436. (font
  3437. (size 1.27 1.27)
  3438. )
  3439. )
  3440. )
  3441. (property "Footprint" ""
  3442. (at 124.46 87.63 0)
  3443. (effects
  3444. (font
  3445. (size 1.27 1.27)
  3446. )
  3447. (hide yes)
  3448. )
  3449. )
  3450. (property "Datasheet" ""
  3451. (at 124.46 87.63 0)
  3452. (effects
  3453. (font
  3454. (size 1.27 1.27)
  3455. )
  3456. (hide yes)
  3457. )
  3458. )
  3459. (property "Description" ""
  3460. (at 124.46 87.63 0)
  3461. (effects
  3462. (font
  3463. (size 1.27 1.27)
  3464. )
  3465. (hide yes)
  3466. )
  3467. )
  3468. (pin "1"
  3469. (uuid "8aa68a60-2748-4d8b-92c6-b828f5170ab0")
  3470. )
  3471. (instances
  3472. (project "Desktop_50_Pin_TopConn"
  3473. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3474. (reference "#PWR014")
  3475. (unit 1)
  3476. )
  3477. )
  3478. )
  3479. )
  3480. (symbol
  3481. (lib_id "power:GND")
  3482. (at 163.195 65.405 90)
  3483. (unit 1)
  3484. (exclude_from_sim no)
  3485. (in_bom yes)
  3486. (on_board yes)
  3487. (dnp no)
  3488. (uuid "ebb76b7e-c643-40cc-a2ba-b8249780a53c")
  3489. (property "Reference" "#PWR017"
  3490. (at 169.545 65.405 0)
  3491. (effects
  3492. (font
  3493. (size 1.27 1.27)
  3494. )
  3495. (hide yes)
  3496. )
  3497. )
  3498. (property "Value" "GND"
  3499. (at 167.5892 65.278 90)
  3500. (effects
  3501. (font
  3502. (size 1.27 1.27)
  3503. )
  3504. )
  3505. )
  3506. (property "Footprint" ""
  3507. (at 163.195 65.405 0)
  3508. (effects
  3509. (font
  3510. (size 1.27 1.27)
  3511. )
  3512. (hide yes)
  3513. )
  3514. )
  3515. (property "Datasheet" ""
  3516. (at 163.195 65.405 0)
  3517. (effects
  3518. (font
  3519. (size 1.27 1.27)
  3520. )
  3521. (hide yes)
  3522. )
  3523. )
  3524. (property "Description" ""
  3525. (at 163.195 65.405 0)
  3526. (effects
  3527. (font
  3528. (size 1.27 1.27)
  3529. )
  3530. (hide yes)
  3531. )
  3532. )
  3533. (pin "1"
  3534. (uuid "1129bee9-57fc-4765-8d64-b9ee8074c79a")
  3535. )
  3536. (instances
  3537. (project "Desktop_50_Pin_TopConn"
  3538. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3539. (reference "#PWR017")
  3540. (unit 1)
  3541. )
  3542. )
  3543. )
  3544. )
  3545. (symbol
  3546. (lib_id "74xx:74HC14")
  3547. (at 147.32 87.63 0)
  3548. (unit 5)
  3549. (exclude_from_sim no)
  3550. (in_bom yes)
  3551. (on_board yes)
  3552. (dnp no)
  3553. (fields_autoplaced yes)
  3554. (uuid "f13cd28c-60ea-402d-9a58-02c4e004be93")
  3555. (property "Reference" "U8"
  3556. (at 147.32 80.01 0)
  3557. (effects
  3558. (font
  3559. (size 1.27 1.27)
  3560. )
  3561. )
  3562. )
  3563. (property "Value" "74HC14"
  3564. (at 147.32 82.55 0)
  3565. (effects
  3566. (font
  3567. (size 1.27 1.27)
  3568. )
  3569. )
  3570. )
  3571. (property "Footprint" ""
  3572. (at 147.32 87.63 0)
  3573. (effects
  3574. (font
  3575. (size 1.27 1.27)
  3576. )
  3577. (hide yes)
  3578. )
  3579. )
  3580. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"
  3581. (at 147.32 87.63 0)
  3582. (effects
  3583. (font
  3584. (size 1.27 1.27)
  3585. )
  3586. (hide yes)
  3587. )
  3588. )
  3589. (property "Description" ""
  3590. (at 147.32 87.63 0)
  3591. (effects
  3592. (font
  3593. (size 1.27 1.27)
  3594. )
  3595. (hide yes)
  3596. )
  3597. )
  3598. (pin "1"
  3599. (uuid "b9ef80a1-68da-481d-9613-d55fbddea7e5")
  3600. )
  3601. (pin "2"
  3602. (uuid "e4eefa5c-c1c5-47ee-822a-5a8bd5804a0c")
  3603. )
  3604. (pin "3"
  3605. (uuid "c5066379-62fe-4fda-9b68-43882d18e6da")
  3606. )
  3607. (pin "4"
  3608. (uuid "b625180d-409b-48a5-aeed-21fcc15971e3")
  3609. )
  3610. (pin "5"
  3611. (uuid "dddccf7e-1b8b-48be-ae3a-1a98876d7364")
  3612. )
  3613. (pin "6"
  3614. (uuid "6ee838f0-c00f-480f-9604-ca5547799de5")
  3615. )
  3616. (pin "8"
  3617. (uuid "fc8b1751-7316-4ea8-8bb1-ff4869247aae")
  3618. )
  3619. (pin "9"
  3620. (uuid "ff0bb5e1-6300-43a0-a6b0-9e22dbe356bb")
  3621. )
  3622. (pin "10"
  3623. (uuid "68deaf0d-4abc-439a-b35a-489dbd9f3785")
  3624. )
  3625. (pin "11"
  3626. (uuid "b3db311a-82c0-447e-8351-355aa756ffa7")
  3627. )
  3628. (pin "12"
  3629. (uuid "9010d396-22f0-4115-90c1-47bd8148ad1f")
  3630. )
  3631. (pin "13"
  3632. (uuid "d19c0c55-5f4c-4160-b9a3-dd54fe9fcf5f")
  3633. )
  3634. (pin "14"
  3635. (uuid "a3da6bfd-2907-4172-aa43-7b18224955bd")
  3636. )
  3637. (pin "7"
  3638. (uuid "9f374e83-aac5-4725-93cb-9d377b9c209e")
  3639. )
  3640. (instances
  3641. (project "Desktop_50_Pin_TopConn"
  3642. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3643. (reference "U8")
  3644. (unit 5)
  3645. )
  3646. )
  3647. )
  3648. )
  3649. (symbol
  3650. (lib_id "power:GND")
  3651. (at 173.99 110.49 270)
  3652. (unit 1)
  3653. (exclude_from_sim no)
  3654. (in_bom yes)
  3655. (on_board yes)
  3656. (dnp no)
  3657. (uuid "fff78d24-24db-4cd7-ae59-a9a1e7f0a3bd")
  3658. (property "Reference" "#PWR068"
  3659. (at 167.64 110.49 0)
  3660. (effects
  3661. (font
  3662. (size 1.27 1.27)
  3663. )
  3664. (hide yes)
  3665. )
  3666. )
  3667. (property "Value" "GND"
  3668. (at 169.5958 110.617 90)
  3669. (effects
  3670. (font
  3671. (size 1.27 1.27)
  3672. )
  3673. )
  3674. )
  3675. (property "Footprint" ""
  3676. (at 173.99 110.49 0)
  3677. (effects
  3678. (font
  3679. (size 1.27 1.27)
  3680. )
  3681. (hide yes)
  3682. )
  3683. )
  3684. (property "Datasheet" ""
  3685. (at 173.99 110.49 0)
  3686. (effects
  3687. (font
  3688. (size 1.27 1.27)
  3689. )
  3690. (hide yes)
  3691. )
  3692. )
  3693. (property "Description" ""
  3694. (at 173.99 110.49 0)
  3695. (effects
  3696. (font
  3697. (size 1.27 1.27)
  3698. )
  3699. (hide yes)
  3700. )
  3701. )
  3702. (pin "1"
  3703. (uuid "f178c068-e060-4864-b5c0-19c8d2364a6e")
  3704. )
  3705. (instances
  3706. (project "Desktop_50_Pin_TopConn"
  3707. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"
  3708. (reference "#PWR068")
  3709. (unit 1)
  3710. )
  3711. )
  3712. )
  3713. )
  3714. )