usb.kicad_sch 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "ff2f00dc-dff2-4a19-af27-f5c793a8d261")
  6. (paper "A4")
  7. (title_block
  8. (title "Greaseweazle F7 Lighting, USB PD")
  9. (date "2023-08-27")
  10. (rev "2.04")
  11. (company "SweProj.com")
  12. )
  13. (lib_symbols
  14. (symbol "Device:C"
  15. (pin_numbers hide)
  16. (pin_names
  17. (offset 0.254)
  18. )
  19. (exclude_from_sim no)
  20. (in_bom yes)
  21. (on_board yes)
  22. (property "Reference" "C"
  23. (at 0.635 2.54 0)
  24. (effects
  25. (font
  26. (size 1.27 1.27)
  27. )
  28. (justify left)
  29. )
  30. )
  31. (property "Value" "C"
  32. (at 0.635 -2.54 0)
  33. (effects
  34. (font
  35. (size 1.27 1.27)
  36. )
  37. (justify left)
  38. )
  39. )
  40. (property "Footprint" ""
  41. (at 0.9652 -3.81 0)
  42. (effects
  43. (font
  44. (size 1.27 1.27)
  45. )
  46. (hide yes)
  47. )
  48. )
  49. (property "Datasheet" "~"
  50. (at 0 0 0)
  51. (effects
  52. (font
  53. (size 1.27 1.27)
  54. )
  55. (hide yes)
  56. )
  57. )
  58. (property "Description" "Unpolarized capacitor"
  59. (at 0 0 0)
  60. (effects
  61. (font
  62. (size 1.27 1.27)
  63. )
  64. (hide yes)
  65. )
  66. )
  67. (property "ki_keywords" "cap capacitor"
  68. (at 0 0 0)
  69. (effects
  70. (font
  71. (size 1.27 1.27)
  72. )
  73. (hide yes)
  74. )
  75. )
  76. (property "ki_fp_filters" "C_*"
  77. (at 0 0 0)
  78. (effects
  79. (font
  80. (size 1.27 1.27)
  81. )
  82. (hide yes)
  83. )
  84. )
  85. (symbol "C_0_1"
  86. (polyline
  87. (pts
  88. (xy -2.032 -0.762) (xy 2.032 -0.762)
  89. )
  90. (stroke
  91. (width 0.508)
  92. (type default)
  93. )
  94. (fill
  95. (type none)
  96. )
  97. )
  98. (polyline
  99. (pts
  100. (xy -2.032 0.762) (xy 2.032 0.762)
  101. )
  102. (stroke
  103. (width 0.508)
  104. (type default)
  105. )
  106. (fill
  107. (type none)
  108. )
  109. )
  110. )
  111. (symbol "C_1_1"
  112. (pin passive line
  113. (at 0 3.81 270)
  114. (length 2.794)
  115. (name "~"
  116. (effects
  117. (font
  118. (size 1.27 1.27)
  119. )
  120. )
  121. )
  122. (number "1"
  123. (effects
  124. (font
  125. (size 1.27 1.27)
  126. )
  127. )
  128. )
  129. )
  130. (pin passive line
  131. (at 0 -3.81 90)
  132. (length 2.794)
  133. (name "~"
  134. (effects
  135. (font
  136. (size 1.27 1.27)
  137. )
  138. )
  139. )
  140. (number "2"
  141. (effects
  142. (font
  143. (size 1.27 1.27)
  144. )
  145. )
  146. )
  147. )
  148. )
  149. )
  150. (symbol "Device:Polyfuse"
  151. (pin_numbers hide)
  152. (pin_names
  153. (offset 0)
  154. )
  155. (exclude_from_sim no)
  156. (in_bom yes)
  157. (on_board yes)
  158. (property "Reference" "F"
  159. (at -2.54 0 90)
  160. (effects
  161. (font
  162. (size 1.27 1.27)
  163. )
  164. )
  165. )
  166. (property "Value" "Polyfuse"
  167. (at 2.54 0 90)
  168. (effects
  169. (font
  170. (size 1.27 1.27)
  171. )
  172. )
  173. )
  174. (property "Footprint" ""
  175. (at 1.27 -5.08 0)
  176. (effects
  177. (font
  178. (size 1.27 1.27)
  179. )
  180. (justify left)
  181. (hide yes)
  182. )
  183. )
  184. (property "Datasheet" "~"
  185. (at 0 0 0)
  186. (effects
  187. (font
  188. (size 1.27 1.27)
  189. )
  190. (hide yes)
  191. )
  192. )
  193. (property "Description" "Resettable fuse, polymeric positive temperature coefficient"
  194. (at 0 0 0)
  195. (effects
  196. (font
  197. (size 1.27 1.27)
  198. )
  199. (hide yes)
  200. )
  201. )
  202. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch"
  203. (at 0 0 0)
  204. (effects
  205. (font
  206. (size 1.27 1.27)
  207. )
  208. (hide yes)
  209. )
  210. )
  211. (property "ki_fp_filters" "*polyfuse* *PTC*"
  212. (at 0 0 0)
  213. (effects
  214. (font
  215. (size 1.27 1.27)
  216. )
  217. (hide yes)
  218. )
  219. )
  220. (symbol "Polyfuse_0_1"
  221. (rectangle
  222. (start -0.762 2.54)
  223. (end 0.762 -2.54)
  224. (stroke
  225. (width 0.254)
  226. (type default)
  227. )
  228. (fill
  229. (type none)
  230. )
  231. )
  232. (polyline
  233. (pts
  234. (xy 0 2.54) (xy 0 -2.54)
  235. )
  236. (stroke
  237. (width 0)
  238. (type default)
  239. )
  240. (fill
  241. (type none)
  242. )
  243. )
  244. (polyline
  245. (pts
  246. (xy -1.524 2.54) (xy -1.524 1.524) (xy 1.524 -1.524) (xy 1.524 -2.54)
  247. )
  248. (stroke
  249. (width 0)
  250. (type default)
  251. )
  252. (fill
  253. (type none)
  254. )
  255. )
  256. )
  257. (symbol "Polyfuse_1_1"
  258. (pin passive line
  259. (at 0 3.81 270)
  260. (length 1.27)
  261. (name "~"
  262. (effects
  263. (font
  264. (size 1.27 1.27)
  265. )
  266. )
  267. )
  268. (number "1"
  269. (effects
  270. (font
  271. (size 1.27 1.27)
  272. )
  273. )
  274. )
  275. )
  276. (pin passive line
  277. (at 0 -3.81 90)
  278. (length 1.27)
  279. (name "~"
  280. (effects
  281. (font
  282. (size 1.27 1.27)
  283. )
  284. )
  285. )
  286. (number "2"
  287. (effects
  288. (font
  289. (size 1.27 1.27)
  290. )
  291. )
  292. )
  293. )
  294. )
  295. )
  296. (symbol "Device:R"
  297. (pin_numbers hide)
  298. (pin_names
  299. (offset 0)
  300. )
  301. (exclude_from_sim no)
  302. (in_bom yes)
  303. (on_board yes)
  304. (property "Reference" "R"
  305. (at 2.032 0 90)
  306. (effects
  307. (font
  308. (size 1.27 1.27)
  309. )
  310. )
  311. )
  312. (property "Value" "R"
  313. (at 0 0 90)
  314. (effects
  315. (font
  316. (size 1.27 1.27)
  317. )
  318. )
  319. )
  320. (property "Footprint" ""
  321. (at -1.778 0 90)
  322. (effects
  323. (font
  324. (size 1.27 1.27)
  325. )
  326. (hide yes)
  327. )
  328. )
  329. (property "Datasheet" "~"
  330. (at 0 0 0)
  331. (effects
  332. (font
  333. (size 1.27 1.27)
  334. )
  335. (hide yes)
  336. )
  337. )
  338. (property "Description" "Resistor"
  339. (at 0 0 0)
  340. (effects
  341. (font
  342. (size 1.27 1.27)
  343. )
  344. (hide yes)
  345. )
  346. )
  347. (property "ki_keywords" "R res resistor"
  348. (at 0 0 0)
  349. (effects
  350. (font
  351. (size 1.27 1.27)
  352. )
  353. (hide yes)
  354. )
  355. )
  356. (property "ki_fp_filters" "R_*"
  357. (at 0 0 0)
  358. (effects
  359. (font
  360. (size 1.27 1.27)
  361. )
  362. (hide yes)
  363. )
  364. )
  365. (symbol "R_0_1"
  366. (rectangle
  367. (start -1.016 -2.54)
  368. (end 1.016 2.54)
  369. (stroke
  370. (width 0.254)
  371. (type default)
  372. )
  373. (fill
  374. (type none)
  375. )
  376. )
  377. )
  378. (symbol "R_1_1"
  379. (pin passive line
  380. (at 0 3.81 270)
  381. (length 1.27)
  382. (name "~"
  383. (effects
  384. (font
  385. (size 1.27 1.27)
  386. )
  387. )
  388. )
  389. (number "1"
  390. (effects
  391. (font
  392. (size 1.27 1.27)
  393. )
  394. )
  395. )
  396. )
  397. (pin passive line
  398. (at 0 -3.81 90)
  399. (length 1.27)
  400. (name "~"
  401. (effects
  402. (font
  403. (size 1.27 1.27)
  404. )
  405. )
  406. )
  407. (number "2"
  408. (effects
  409. (font
  410. (size 1.27 1.27)
  411. )
  412. )
  413. )
  414. )
  415. )
  416. )
  417. (symbol "Greaseweazle:HRO-TYPE-C-31-M-12"
  418. (pin_names
  419. (offset 1.016)
  420. )
  421. (exclude_from_sim no)
  422. (in_bom yes)
  423. (on_board yes)
  424. (property "Reference" "USB"
  425. (at -5.08 16.51 0)
  426. (effects
  427. (font
  428. (size 1.524 1.524)
  429. )
  430. )
  431. )
  432. (property "Value" "HRO-TYPE-C-31-M-12"
  433. (at -10.16 -1.27 90)
  434. (effects
  435. (font
  436. (size 1.524 1.524)
  437. )
  438. )
  439. )
  440. (property "Footprint" ""
  441. (at 0 0 0)
  442. (effects
  443. (font
  444. (size 1.524 1.524)
  445. )
  446. (hide yes)
  447. )
  448. )
  449. (property "Datasheet" ""
  450. (at 0 0 0)
  451. (effects
  452. (font
  453. (size 1.524 1.524)
  454. )
  455. (hide yes)
  456. )
  457. )
  458. (property "Description" ""
  459. (at 0 0 0)
  460. (effects
  461. (font
  462. (size 1.27 1.27)
  463. )
  464. (hide yes)
  465. )
  466. )
  467. (symbol "HRO-TYPE-C-31-M-12_0_1"
  468. (rectangle
  469. (start -11.43 15.24)
  470. (end -8.89 -17.78)
  471. (stroke
  472. (width 0)
  473. (type default)
  474. )
  475. (fill
  476. (type background)
  477. )
  478. )
  479. (rectangle
  480. (start 0 -17.78)
  481. (end -8.89 15.24)
  482. (stroke
  483. (width 0)
  484. (type default)
  485. )
  486. (fill
  487. (type background)
  488. )
  489. )
  490. )
  491. (symbol "HRO-TYPE-C-31-M-12_1_1"
  492. (pin input line
  493. (at 2.54 13.97 180)
  494. (length 2.54)
  495. (name "GND"
  496. (effects
  497. (font
  498. (size 1.27 1.27)
  499. )
  500. )
  501. )
  502. (number "1"
  503. (effects
  504. (font
  505. (size 1.27 1.27)
  506. )
  507. )
  508. )
  509. )
  510. (pin input line
  511. (at 2.54 -8.89 180)
  512. (length 2.54)
  513. (name "CC2"
  514. (effects
  515. (font
  516. (size 1.27 1.27)
  517. )
  518. )
  519. )
  520. (number "10"
  521. (effects
  522. (font
  523. (size 1.27 1.27)
  524. )
  525. )
  526. )
  527. )
  528. (pin input line
  529. (at 2.54 -11.43 180)
  530. (length 2.54)
  531. (name "VBUS"
  532. (effects
  533. (font
  534. (size 1.27 1.27)
  535. )
  536. )
  537. )
  538. (number "11"
  539. (effects
  540. (font
  541. (size 1.27 1.27)
  542. )
  543. )
  544. )
  545. )
  546. (pin input line
  547. (at 2.54 -13.97 180)
  548. (length 2.54)
  549. (name "GND"
  550. (effects
  551. (font
  552. (size 1.27 1.27)
  553. )
  554. )
  555. )
  556. (number "12"
  557. (effects
  558. (font
  559. (size 1.27 1.27)
  560. )
  561. )
  562. )
  563. )
  564. (pin input line
  565. (at 2.54 -16.51 180)
  566. (length 2.54)
  567. (name "SHIELD"
  568. (effects
  569. (font
  570. (size 1.27 1.27)
  571. )
  572. )
  573. )
  574. (number "13"
  575. (effects
  576. (font
  577. (size 1.27 1.27)
  578. )
  579. )
  580. )
  581. )
  582. (pin input line
  583. (at 2.54 11.43 180)
  584. (length 2.54)
  585. (name "VBUS"
  586. (effects
  587. (font
  588. (size 1.27 1.27)
  589. )
  590. )
  591. )
  592. (number "2"
  593. (effects
  594. (font
  595. (size 1.27 1.27)
  596. )
  597. )
  598. )
  599. )
  600. (pin input line
  601. (at 2.54 8.89 180)
  602. (length 2.54)
  603. (name "SBU2"
  604. (effects
  605. (font
  606. (size 1.27 1.27)
  607. )
  608. )
  609. )
  610. (number "3"
  611. (effects
  612. (font
  613. (size 1.27 1.27)
  614. )
  615. )
  616. )
  617. )
  618. (pin input line
  619. (at 2.54 6.35 180)
  620. (length 2.54)
  621. (name "CC1"
  622. (effects
  623. (font
  624. (size 1.27 1.27)
  625. )
  626. )
  627. )
  628. (number "4"
  629. (effects
  630. (font
  631. (size 1.27 1.27)
  632. )
  633. )
  634. )
  635. )
  636. (pin input line
  637. (at 2.54 3.81 180)
  638. (length 2.54)
  639. (name "DN2"
  640. (effects
  641. (font
  642. (size 1.27 1.27)
  643. )
  644. )
  645. )
  646. (number "5"
  647. (effects
  648. (font
  649. (size 1.27 1.27)
  650. )
  651. )
  652. )
  653. )
  654. (pin input line
  655. (at 2.54 1.27 180)
  656. (length 2.54)
  657. (name "DP1"
  658. (effects
  659. (font
  660. (size 1.27 1.27)
  661. )
  662. )
  663. )
  664. (number "6"
  665. (effects
  666. (font
  667. (size 1.27 1.27)
  668. )
  669. )
  670. )
  671. )
  672. (pin input line
  673. (at 2.54 -1.27 180)
  674. (length 2.54)
  675. (name "DN1"
  676. (effects
  677. (font
  678. (size 1.27 1.27)
  679. )
  680. )
  681. )
  682. (number "7"
  683. (effects
  684. (font
  685. (size 1.27 1.27)
  686. )
  687. )
  688. )
  689. )
  690. (pin input line
  691. (at 2.54 -3.81 180)
  692. (length 2.54)
  693. (name "DP2"
  694. (effects
  695. (font
  696. (size 1.27 1.27)
  697. )
  698. )
  699. )
  700. (number "8"
  701. (effects
  702. (font
  703. (size 1.27 1.27)
  704. )
  705. )
  706. )
  707. )
  708. (pin input line
  709. (at 2.54 -6.35 180)
  710. (length 2.54)
  711. (name "SBU1"
  712. (effects
  713. (font
  714. (size 1.27 1.27)
  715. )
  716. )
  717. )
  718. (number "9"
  719. (effects
  720. (font
  721. (size 1.27 1.27)
  722. )
  723. )
  724. )
  725. )
  726. )
  727. )
  728. (symbol "Power_Protection:USBLC6-2SC6"
  729. (pin_names hide)
  730. (exclude_from_sim no)
  731. (in_bom yes)
  732. (on_board yes)
  733. (property "Reference" "U"
  734. (at 2.54 8.89 0)
  735. (effects
  736. (font
  737. (size 1.27 1.27)
  738. )
  739. (justify left)
  740. )
  741. )
  742. (property "Value" "USBLC6-2SC6"
  743. (at 2.54 -8.89 0)
  744. (effects
  745. (font
  746. (size 1.27 1.27)
  747. )
  748. (justify left)
  749. )
  750. )
  751. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6"
  752. (at 0 -12.7 0)
  753. (effects
  754. (font
  755. (size 1.27 1.27)
  756. )
  757. (hide yes)
  758. )
  759. )
  760. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf"
  761. (at 5.08 8.89 0)
  762. (effects
  763. (font
  764. (size 1.27 1.27)
  765. )
  766. (hide yes)
  767. )
  768. )
  769. (property "Description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"
  770. (at 0 0 0)
  771. (effects
  772. (font
  773. (size 1.27 1.27)
  774. )
  775. (hide yes)
  776. )
  777. )
  778. (property "ki_keywords" "usb ethernet video"
  779. (at 0 0 0)
  780. (effects
  781. (font
  782. (size 1.27 1.27)
  783. )
  784. (hide yes)
  785. )
  786. )
  787. (property "ki_fp_filters" "SOT?23*"
  788. (at 0 0 0)
  789. (effects
  790. (font
  791. (size 1.27 1.27)
  792. )
  793. (hide yes)
  794. )
  795. )
  796. (symbol "USBLC6-2SC6_0_1"
  797. (rectangle
  798. (start -7.62 -7.62)
  799. (end 7.62 7.62)
  800. (stroke
  801. (width 0.254)
  802. (type default)
  803. )
  804. (fill
  805. (type background)
  806. )
  807. )
  808. (circle
  809. (center -5.08 0)
  810. (radius 0.254)
  811. (stroke
  812. (width 0)
  813. (type default)
  814. )
  815. (fill
  816. (type outline)
  817. )
  818. )
  819. (circle
  820. (center -2.54 0)
  821. (radius 0.254)
  822. (stroke
  823. (width 0)
  824. (type default)
  825. )
  826. (fill
  827. (type outline)
  828. )
  829. )
  830. (rectangle
  831. (start -2.54 6.35)
  832. (end 2.54 -6.35)
  833. (stroke
  834. (width 0)
  835. (type default)
  836. )
  837. (fill
  838. (type none)
  839. )
  840. )
  841. (circle
  842. (center 0 -6.35)
  843. (radius 0.254)
  844. (stroke
  845. (width 0)
  846. (type default)
  847. )
  848. (fill
  849. (type outline)
  850. )
  851. )
  852. (polyline
  853. (pts
  854. (xy -5.08 -2.54) (xy -7.62 -2.54)
  855. )
  856. (stroke
  857. (width 0)
  858. (type default)
  859. )
  860. (fill
  861. (type none)
  862. )
  863. )
  864. (polyline
  865. (pts
  866. (xy -5.08 0) (xy -5.08 -2.54)
  867. )
  868. (stroke
  869. (width 0)
  870. (type default)
  871. )
  872. (fill
  873. (type none)
  874. )
  875. )
  876. (polyline
  877. (pts
  878. (xy -5.08 2.54) (xy -7.62 2.54)
  879. )
  880. (stroke
  881. (width 0)
  882. (type default)
  883. )
  884. (fill
  885. (type none)
  886. )
  887. )
  888. (polyline
  889. (pts
  890. (xy -1.524 -2.794) (xy -3.556 -2.794)
  891. )
  892. (stroke
  893. (width 0)
  894. (type default)
  895. )
  896. (fill
  897. (type none)
  898. )
  899. )
  900. (polyline
  901. (pts
  902. (xy -1.524 4.826) (xy -3.556 4.826)
  903. )
  904. (stroke
  905. (width 0)
  906. (type default)
  907. )
  908. (fill
  909. (type none)
  910. )
  911. )
  912. (polyline
  913. (pts
  914. (xy 0 -7.62) (xy 0 -6.35)
  915. )
  916. (stroke
  917. (width 0)
  918. (type default)
  919. )
  920. (fill
  921. (type none)
  922. )
  923. )
  924. (polyline
  925. (pts
  926. (xy 0 -6.35) (xy 0 1.27)
  927. )
  928. (stroke
  929. (width 0)
  930. (type default)
  931. )
  932. (fill
  933. (type none)
  934. )
  935. )
  936. (polyline
  937. (pts
  938. (xy 0 1.27) (xy 0 6.35)
  939. )
  940. (stroke
  941. (width 0)
  942. (type default)
  943. )
  944. (fill
  945. (type none)
  946. )
  947. )
  948. (polyline
  949. (pts
  950. (xy 0 6.35) (xy 0 7.62)
  951. )
  952. (stroke
  953. (width 0)
  954. (type default)
  955. )
  956. (fill
  957. (type none)
  958. )
  959. )
  960. (polyline
  961. (pts
  962. (xy 1.524 -2.794) (xy 3.556 -2.794)
  963. )
  964. (stroke
  965. (width 0)
  966. (type default)
  967. )
  968. (fill
  969. (type none)
  970. )
  971. )
  972. (polyline
  973. (pts
  974. (xy 1.524 4.826) (xy 3.556 4.826)
  975. )
  976. (stroke
  977. (width 0)
  978. (type default)
  979. )
  980. (fill
  981. (type none)
  982. )
  983. )
  984. (polyline
  985. (pts
  986. (xy 5.08 -2.54) (xy 7.62 -2.54)
  987. )
  988. (stroke
  989. (width 0)
  990. (type default)
  991. )
  992. (fill
  993. (type none)
  994. )
  995. )
  996. (polyline
  997. (pts
  998. (xy 5.08 0) (xy 5.08 -2.54)
  999. )
  1000. (stroke
  1001. (width 0)
  1002. (type default)
  1003. )
  1004. (fill
  1005. (type none)
  1006. )
  1007. )
  1008. (polyline
  1009. (pts
  1010. (xy 5.08 2.54) (xy 7.62 2.54)
  1011. )
  1012. (stroke
  1013. (width 0)
  1014. (type default)
  1015. )
  1016. (fill
  1017. (type none)
  1018. )
  1019. )
  1020. (polyline
  1021. (pts
  1022. (xy -2.54 0) (xy -5.08 0) (xy -5.08 2.54)
  1023. )
  1024. (stroke
  1025. (width 0)
  1026. (type default)
  1027. )
  1028. (fill
  1029. (type none)
  1030. )
  1031. )
  1032. (polyline
  1033. (pts
  1034. (xy 2.54 0) (xy 5.08 0) (xy 5.08 2.54)
  1035. )
  1036. (stroke
  1037. (width 0)
  1038. (type default)
  1039. )
  1040. (fill
  1041. (type none)
  1042. )
  1043. )
  1044. (polyline
  1045. (pts
  1046. (xy -3.556 -4.826) (xy -1.524 -4.826) (xy -2.54 -2.794) (xy -3.556 -4.826)
  1047. )
  1048. (stroke
  1049. (width 0)
  1050. (type default)
  1051. )
  1052. (fill
  1053. (type none)
  1054. )
  1055. )
  1056. (polyline
  1057. (pts
  1058. (xy -3.556 2.794) (xy -1.524 2.794) (xy -2.54 4.826) (xy -3.556 2.794)
  1059. )
  1060. (stroke
  1061. (width 0)
  1062. (type default)
  1063. )
  1064. (fill
  1065. (type none)
  1066. )
  1067. )
  1068. (polyline
  1069. (pts
  1070. (xy -1.016 -1.016) (xy 1.016 -1.016) (xy 0 1.016) (xy -1.016 -1.016)
  1071. )
  1072. (stroke
  1073. (width 0)
  1074. (type default)
  1075. )
  1076. (fill
  1077. (type none)
  1078. )
  1079. )
  1080. (polyline
  1081. (pts
  1082. (xy 1.016 1.016) (xy 0.762 1.016) (xy -1.016 1.016) (xy -1.016 0.508)
  1083. )
  1084. (stroke
  1085. (width 0)
  1086. (type default)
  1087. )
  1088. (fill
  1089. (type none)
  1090. )
  1091. )
  1092. (polyline
  1093. (pts
  1094. (xy 3.556 -4.826) (xy 1.524 -4.826) (xy 2.54 -2.794) (xy 3.556 -4.826)
  1095. )
  1096. (stroke
  1097. (width 0)
  1098. (type default)
  1099. )
  1100. (fill
  1101. (type none)
  1102. )
  1103. )
  1104. (polyline
  1105. (pts
  1106. (xy 3.556 2.794) (xy 1.524 2.794) (xy 2.54 4.826) (xy 3.556 2.794)
  1107. )
  1108. (stroke
  1109. (width 0)
  1110. (type default)
  1111. )
  1112. (fill
  1113. (type none)
  1114. )
  1115. )
  1116. (circle
  1117. (center 0 6.35)
  1118. (radius 0.254)
  1119. (stroke
  1120. (width 0)
  1121. (type default)
  1122. )
  1123. (fill
  1124. (type outline)
  1125. )
  1126. )
  1127. (circle
  1128. (center 2.54 0)
  1129. (radius 0.254)
  1130. (stroke
  1131. (width 0)
  1132. (type default)
  1133. )
  1134. (fill
  1135. (type outline)
  1136. )
  1137. )
  1138. (circle
  1139. (center 5.08 0)
  1140. (radius 0.254)
  1141. (stroke
  1142. (width 0)
  1143. (type default)
  1144. )
  1145. (fill
  1146. (type outline)
  1147. )
  1148. )
  1149. )
  1150. (symbol "USBLC6-2SC6_1_1"
  1151. (pin passive line
  1152. (at -10.16 -2.54 0)
  1153. (length 2.54)
  1154. (name "I/O1"
  1155. (effects
  1156. (font
  1157. (size 1.27 1.27)
  1158. )
  1159. )
  1160. )
  1161. (number "1"
  1162. (effects
  1163. (font
  1164. (size 1.27 1.27)
  1165. )
  1166. )
  1167. )
  1168. )
  1169. (pin passive line
  1170. (at 0 -10.16 90)
  1171. (length 2.54)
  1172. (name "GND"
  1173. (effects
  1174. (font
  1175. (size 1.27 1.27)
  1176. )
  1177. )
  1178. )
  1179. (number "2"
  1180. (effects
  1181. (font
  1182. (size 1.27 1.27)
  1183. )
  1184. )
  1185. )
  1186. )
  1187. (pin passive line
  1188. (at 10.16 -2.54 180)
  1189. (length 2.54)
  1190. (name "I/O2"
  1191. (effects
  1192. (font
  1193. (size 1.27 1.27)
  1194. )
  1195. )
  1196. )
  1197. (number "3"
  1198. (effects
  1199. (font
  1200. (size 1.27 1.27)
  1201. )
  1202. )
  1203. )
  1204. )
  1205. (pin passive line
  1206. (at 10.16 2.54 180)
  1207. (length 2.54)
  1208. (name "I/O2"
  1209. (effects
  1210. (font
  1211. (size 1.27 1.27)
  1212. )
  1213. )
  1214. )
  1215. (number "4"
  1216. (effects
  1217. (font
  1218. (size 1.27 1.27)
  1219. )
  1220. )
  1221. )
  1222. )
  1223. (pin passive line
  1224. (at 0 10.16 270)
  1225. (length 2.54)
  1226. (name "VBUS"
  1227. (effects
  1228. (font
  1229. (size 1.27 1.27)
  1230. )
  1231. )
  1232. )
  1233. (number "5"
  1234. (effects
  1235. (font
  1236. (size 1.27 1.27)
  1237. )
  1238. )
  1239. )
  1240. )
  1241. (pin passive line
  1242. (at -10.16 2.54 0)
  1243. (length 2.54)
  1244. (name "I/O1"
  1245. (effects
  1246. (font
  1247. (size 1.27 1.27)
  1248. )
  1249. )
  1250. )
  1251. (number "6"
  1252. (effects
  1253. (font
  1254. (size 1.27 1.27)
  1255. )
  1256. )
  1257. )
  1258. )
  1259. )
  1260. )
  1261. (symbol "power:+5V"
  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" "+5V"
  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 \"+5V\""
  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 "+5V_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 "+5V_1_1"
  1361. (pin power_in line
  1362. (at 0 0 90)
  1363. (length 0) hide
  1364. (name "+5V"
  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 87.63 71.12)
  1480. (diameter 0)
  1481. (color 0 0 0 0)
  1482. (uuid "05e45f00-3c6b-4c0c-9ffb-3fe26fcda007")
  1483. )
  1484. (junction
  1485. (at 90.17 91.44)
  1486. (diameter 0)
  1487. (color 0 0 0 0)
  1488. (uuid "2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7")
  1489. )
  1490. (junction
  1491. (at 143.51 71.12)
  1492. (diameter 0)
  1493. (color 0 0 0 0)
  1494. (uuid "58a87288-e2bf-4c88-9871-a753efc69e9d")
  1495. )
  1496. (junction
  1497. (at 90.17 96.52)
  1498. (diameter 0)
  1499. (color 0 0 0 0)
  1500. (uuid "621c8eb9-ae87-439a-b350-badb5d559a5a")
  1501. )
  1502. (junction
  1503. (at 81.28 81.28)
  1504. (diameter 0)
  1505. (color 0 0 0 0)
  1506. (uuid "68377e50-69bc-450e-988d-db77ebfcf394")
  1507. )
  1508. (junction
  1509. (at 90.17 76.2)
  1510. (diameter 0)
  1511. (color 0 0 0 0)
  1512. (uuid "9c8eae28-a7c3-4e6a-bd81-98cf70031070")
  1513. )
  1514. (junction
  1515. (at 96.52 71.12)
  1516. (diameter 0)
  1517. (color 0 0 0 0)
  1518. (uuid "c62adb8b-b306-48da-b0ae-f6a287e54f62")
  1519. )
  1520. (junction
  1521. (at 80.01 83.82)
  1522. (diameter 0)
  1523. (color 0 0 0 0)
  1524. (uuid "c7780180-ed39-465b-b4f2-f403f2fe9dea")
  1525. )
  1526. (no_connect
  1527. (at 77.47 73.66)
  1528. (uuid "0fc912fd-5036-4a55-b598-a9af40810824")
  1529. )
  1530. (no_connect
  1531. (at 77.47 88.9)
  1532. (uuid "1765d6b9-ca0e-49c2-8c3c-8ab35eb3909b")
  1533. )
  1534. (no_connect
  1535. (at 77.47 99.06)
  1536. (uuid "89bd1fdd-6a91-474e-8495-7a2ba7eb6260")
  1537. )
  1538. (wire
  1539. (pts
  1540. (xy 77.47 83.82) (xy 80.01 83.82)
  1541. )
  1542. (stroke
  1543. (width 0)
  1544. (type default)
  1545. )
  1546. (uuid "046ca2d8-3ca1-4c64-8090-c45e9adcf30e")
  1547. )
  1548. (wire
  1549. (pts
  1550. (xy 143.51 58.42) (xy 143.51 71.12)
  1551. )
  1552. (stroke
  1553. (width 0)
  1554. (type default)
  1555. )
  1556. (uuid "0c9bbc06-f1c0-4359-8448-9c515b32a886")
  1557. )
  1558. (wire
  1559. (pts
  1560. (xy 106.68 109.22) (xy 106.68 106.68)
  1561. )
  1562. (stroke
  1563. (width 0)
  1564. (type default)
  1565. )
  1566. (uuid "0f62e92c-dce6-45dc-a560-b9db10f66ff3")
  1567. )
  1568. (wire
  1569. (pts
  1570. (xy 80.01 78.74) (xy 80.01 83.82)
  1571. )
  1572. (stroke
  1573. (width 0)
  1574. (type default)
  1575. )
  1576. (uuid "132a293d-17e0-408d-a959-abc7411de4c4")
  1577. )
  1578. (wire
  1579. (pts
  1580. (xy 77.47 86.36) (xy 81.28 86.36)
  1581. )
  1582. (stroke
  1583. (width 0)
  1584. (type default)
  1585. )
  1586. (uuid "16d74262-8635-4a64-9f97-17014fb25562")
  1587. )
  1588. (wire
  1589. (pts
  1590. (xy 77.47 96.52) (xy 90.17 96.52)
  1591. )
  1592. (stroke
  1593. (width 0)
  1594. (type default)
  1595. )
  1596. (uuid "1b5a32e4-0b8e-4f38-b679-71dc277c2087")
  1597. )
  1598. (wire
  1599. (pts
  1600. (xy 81.28 81.28) (xy 81.28 86.36)
  1601. )
  1602. (stroke
  1603. (width 0)
  1604. (type default)
  1605. )
  1606. (uuid "1fb32039-a12b-427e-b06a-f0e9a133d6f9")
  1607. )
  1608. (wire
  1609. (pts
  1610. (xy 143.51 82.55) (xy 143.51 83.82)
  1611. )
  1612. (stroke
  1613. (width 0)
  1614. (type default)
  1615. )
  1616. (uuid "22ab392d-1989-4185-9178-8083812ea067")
  1617. )
  1618. (wire
  1619. (pts
  1620. (xy 96.52 96.52) (xy 99.06 96.52)
  1621. )
  1622. (stroke
  1623. (width 0)
  1624. (type default)
  1625. )
  1626. (uuid "2938bf2d-2d32-4cb0-9d4d-563ea28ffffa")
  1627. )
  1628. (wire
  1629. (pts
  1630. (xy 132.08 71.12) (xy 143.51 71.12)
  1631. )
  1632. (stroke
  1633. (width 0)
  1634. (type default)
  1635. )
  1636. (uuid "2dc66f7e-d85d-4081-ae71-fd8851d6aeda")
  1637. )
  1638. (wire
  1639. (pts
  1640. (xy 87.63 71.12) (xy 87.63 93.98)
  1641. )
  1642. (stroke
  1643. (width 0)
  1644. (type default)
  1645. )
  1646. (uuid "2fb9964c-4cd4-4e81-b5e8-f78759d3adb5")
  1647. )
  1648. (wire
  1649. (pts
  1650. (xy 80.01 83.82) (xy 93.98 83.82)
  1651. )
  1652. (stroke
  1653. (width 0)
  1654. (type default)
  1655. )
  1656. (uuid "39896e95-d5b7-4b2d-91fb-a97d46123782")
  1657. )
  1658. (wire
  1659. (pts
  1660. (xy 86.36 76.2) (xy 90.17 76.2)
  1661. )
  1662. (stroke
  1663. (width 0)
  1664. (type default)
  1665. )
  1666. (uuid "3c66e6e2-f12d-4b23-910e-e478d272dfd5")
  1667. )
  1668. (wire
  1669. (pts
  1670. (xy 121.92 96.52) (xy 121.92 99.06)
  1671. )
  1672. (stroke
  1673. (width 0)
  1674. (type default)
  1675. )
  1676. (uuid "460147d8-e4b6-4910-88e9-07d1ddd6c2df")
  1677. )
  1678. (wire
  1679. (pts
  1680. (xy 111.76 81.28) (xy 111.76 86.36)
  1681. )
  1682. (stroke
  1683. (width 0)
  1684. (type default)
  1685. )
  1686. (uuid "53fda1fb-12bd-4536-80e1-aab5c0e3fc58")
  1687. )
  1688. (wire
  1689. (pts
  1690. (xy 90.17 91.44) (xy 90.17 96.52)
  1691. )
  1692. (stroke
  1693. (width 0)
  1694. (type default)
  1695. )
  1696. (uuid "55cff608-ab38-48d9-ac09-2d0a877ceca1")
  1697. )
  1698. (wire
  1699. (pts
  1700. (xy 77.47 71.12) (xy 87.63 71.12)
  1701. )
  1702. (stroke
  1703. (width 0)
  1704. (type default)
  1705. )
  1706. (uuid "5a889284-4c9f-49be-8f02-e43e18550914")
  1707. )
  1708. (wire
  1709. (pts
  1710. (xy 90.17 76.2) (xy 90.17 91.44)
  1711. )
  1712. (stroke
  1713. (width 0)
  1714. (type default)
  1715. )
  1716. (uuid "6b69fc79-c78f-4df1-9a05-c51d4173705f")
  1717. )
  1718. (wire
  1719. (pts
  1720. (xy 77.47 81.28) (xy 81.28 81.28)
  1721. )
  1722. (stroke
  1723. (width 0)
  1724. (type default)
  1725. )
  1726. (uuid "6e77d4d6-0239-4c20-98f8-23ae4f71d638")
  1727. )
  1728. (wire
  1729. (pts
  1730. (xy 119.38 96.52) (xy 121.92 96.52)
  1731. )
  1732. (stroke
  1733. (width 0)
  1734. (type default)
  1735. )
  1736. (uuid "6fd21292-6577-40e1-bbda-18906b5e9f6f")
  1737. )
  1738. (wire
  1739. (pts
  1740. (xy 81.28 81.28) (xy 106.68 81.28)
  1741. )
  1742. (stroke
  1743. (width 0)
  1744. (type default)
  1745. )
  1746. (uuid "74343e9f-cac0-4aec-a43c-c4538e48108c")
  1747. )
  1748. (wire
  1749. (pts
  1750. (xy 90.17 68.58) (xy 90.17 76.2)
  1751. )
  1752. (stroke
  1753. (width 0)
  1754. (type default)
  1755. )
  1756. (uuid "8385d9f6-6997-423b-b38d-d0ab00c45f3f")
  1757. )
  1758. (wire
  1759. (pts
  1760. (xy 77.47 76.2) (xy 78.74 76.2)
  1761. )
  1762. (stroke
  1763. (width 0)
  1764. (type default)
  1765. )
  1766. (uuid "84febc35-87fd-4cad-8e04-2b66390cfc12")
  1767. )
  1768. (wire
  1769. (pts
  1770. (xy 96.52 96.52) (xy 96.52 71.12)
  1771. )
  1772. (stroke
  1773. (width 0)
  1774. (type default)
  1775. )
  1776. (uuid "87a0ffb1-5477-4b20-a3ac-fef5af129a33")
  1777. )
  1778. (wire
  1779. (pts
  1780. (xy 90.17 96.52) (xy 90.17 101.6)
  1781. )
  1782. (stroke
  1783. (width 0)
  1784. (type default)
  1785. )
  1786. (uuid "8b022692-69b7-4bd6-bf38-57edecf356fa")
  1787. )
  1788. (wire
  1789. (pts
  1790. (xy 106.68 81.28) (xy 106.68 86.36)
  1791. )
  1792. (stroke
  1793. (width 0)
  1794. (type default)
  1795. )
  1796. (uuid "929c74c0-78bf-4efe-a778-fa328e951865")
  1797. )
  1798. (wire
  1799. (pts
  1800. (xy 93.98 83.82) (xy 93.98 109.22)
  1801. )
  1802. (stroke
  1803. (width 0)
  1804. (type default)
  1805. )
  1806. (uuid "a4541b62-7a39-4707-9c6f-80dce1be9cee")
  1807. )
  1808. (wire
  1809. (pts
  1810. (xy 77.47 78.74) (xy 80.01 78.74)
  1811. )
  1812. (stroke
  1813. (width 0)
  1814. (type default)
  1815. )
  1816. (uuid "a6aea586-fa7f-410e-b933-25e3766c3410")
  1817. )
  1818. (wire
  1819. (pts
  1820. (xy 143.51 71.12) (xy 143.51 74.93)
  1821. )
  1822. (stroke
  1823. (width 0)
  1824. (type default)
  1825. )
  1826. (uuid "b606e532-e4c7-444d-b9ff-879f52cfde92")
  1827. )
  1828. (wire
  1829. (pts
  1830. (xy 87.63 71.12) (xy 96.52 71.12)
  1831. )
  1832. (stroke
  1833. (width 0)
  1834. (type default)
  1835. )
  1836. (uuid "b9c0c276-e6f1-47dd-b072-0f92904248ca")
  1837. )
  1838. (wire
  1839. (pts
  1840. (xy 93.98 109.22) (xy 106.68 109.22)
  1841. )
  1842. (stroke
  1843. (width 0)
  1844. (type default)
  1845. )
  1846. (uuid "c10ace36-a93c-4c08-ac75-059ef9e1f71c")
  1847. )
  1848. (wire
  1849. (pts
  1850. (xy 96.52 71.12) (xy 124.46 71.12)
  1851. )
  1852. (stroke
  1853. (width 0)
  1854. (type default)
  1855. )
  1856. (uuid "d5a7688c-7438-4b6d-999f-4f2a3cb18fd6")
  1857. )
  1858. (wire
  1859. (pts
  1860. (xy 77.47 91.44) (xy 78.74 91.44)
  1861. )
  1862. (stroke
  1863. (width 0)
  1864. (type default)
  1865. )
  1866. (uuid "d8370835-89ad-4b62-9f40-d0c10470788a")
  1867. )
  1868. (wire
  1869. (pts
  1870. (xy 77.47 68.58) (xy 90.17 68.58)
  1871. )
  1872. (stroke
  1873. (width 0)
  1874. (type default)
  1875. )
  1876. (uuid "dc7523a5-4408-4a51-bc92-6a47a538c094")
  1877. )
  1878. (wire
  1879. (pts
  1880. (xy 77.47 93.98) (xy 87.63 93.98)
  1881. )
  1882. (stroke
  1883. (width 0)
  1884. (type default)
  1885. )
  1886. (uuid "eb7e294c-b398-413b-8b78-85a66ed5f3ea")
  1887. )
  1888. (wire
  1889. (pts
  1890. (xy 231.14 195.072) (xy 231.267 195.072)
  1891. )
  1892. (stroke
  1893. (width 0)
  1894. (type default)
  1895. )
  1896. (uuid "ee27052d-d497-46ee-988b-4c25ba7fc528")
  1897. )
  1898. (wire
  1899. (pts
  1900. (xy 111.76 109.22) (xy 111.76 106.68)
  1901. )
  1902. (stroke
  1903. (width 0)
  1904. (type default)
  1905. )
  1906. (uuid "f030cfe8-f922-4a12-a58d-2ff6e60a9bb9")
  1907. )
  1908. (wire
  1909. (pts
  1910. (xy 86.36 91.44) (xy 90.17 91.44)
  1911. )
  1912. (stroke
  1913. (width 0)
  1914. (type default)
  1915. )
  1916. (uuid "f2392fe0-54af-4e02-8793-9ba2471944b5")
  1917. )
  1918. (hierarchical_label "USB_D+"
  1919. (shape input)
  1920. (at 111.76 81.28 0)
  1921. (fields_autoplaced yes)
  1922. (effects
  1923. (font
  1924. (size 1.27 1.27)
  1925. )
  1926. (justify left)
  1927. )
  1928. (uuid "1527299a-08b3-47c3-929f-a75c83be365e")
  1929. )
  1930. (hierarchical_label "USB_D-"
  1931. (shape input)
  1932. (at 111.76 109.22 0)
  1933. (fields_autoplaced yes)
  1934. (effects
  1935. (font
  1936. (size 1.27 1.27)
  1937. )
  1938. (justify left)
  1939. )
  1940. (uuid "aa288a22-ea1d-474d-8dae-efe971580843")
  1941. )
  1942. (symbol
  1943. (lib_id "Device:Polyfuse")
  1944. (at 128.27 71.12 270)
  1945. (unit 1)
  1946. (exclude_from_sim no)
  1947. (in_bom yes)
  1948. (on_board yes)
  1949. (dnp no)
  1950. (uuid "00000000-0000-0000-0000-00005cc74192")
  1951. (property "Reference" "F1"
  1952. (at 128.27 68.58 90)
  1953. (effects
  1954. (font
  1955. (size 1.27 1.27)
  1956. )
  1957. )
  1958. )
  1959. (property "Value" "Polyfuse 1 A"
  1960. (at 128.27 74.93 90)
  1961. (effects
  1962. (font
  1963. (size 1.27 1.27)
  1964. )
  1965. )
  1966. )
  1967. (property "Footprint" "Greaseweazle:Fuse_1206_3216Metric"
  1968. (at 123.19 72.39 0)
  1969. (effects
  1970. (font
  1971. (size 1.27 1.27)
  1972. )
  1973. (justify left)
  1974. (hide yes)
  1975. )
  1976. )
  1977. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf"
  1978. (at 128.27 71.12 0)
  1979. (effects
  1980. (font
  1981. (size 1.27 1.27)
  1982. )
  1983. (hide yes)
  1984. )
  1985. )
  1986. (property "Description" ""
  1987. (at 128.27 71.12 0)
  1988. (effects
  1989. (font
  1990. (size 1.27 1.27)
  1991. )
  1992. (hide yes)
  1993. )
  1994. )
  1995. (property "LCSC" "C720075"
  1996. (at 90.17 36.83 0)
  1997. (effects
  1998. (font
  1999. (size 1.27 1.27)
  2000. )
  2001. (hide yes)
  2002. )
  2003. )
  2004. (property "MOUSER" ""
  2005. (at 90.17 36.83 0)
  2006. (effects
  2007. (font
  2008. (size 1.27 1.27)
  2009. )
  2010. (hide yes)
  2011. )
  2012. )
  2013. (property "MPN" ""
  2014. (at 90.17 36.83 0)
  2015. (effects
  2016. (font
  2017. (size 1.27 1.27)
  2018. )
  2019. (hide yes)
  2020. )
  2021. )
  2022. (pin "1"
  2023. (uuid "e3e54dc4-b78e-4f5d-8cb8-bba525840bd1")
  2024. )
  2025. (pin "2"
  2026. (uuid "7923f4cf-3720-454e-a63c-1335d61ae90c")
  2027. )
  2028. (instances
  2029. (project "Greaseweazle"
  2030. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2031. (reference "F1")
  2032. (unit 1)
  2033. )
  2034. )
  2035. )
  2036. )
  2037. (symbol
  2038. (lib_id "power:GND")
  2039. (at 90.17 101.6 0)
  2040. (unit 1)
  2041. (exclude_from_sim no)
  2042. (in_bom yes)
  2043. (on_board yes)
  2044. (dnp no)
  2045. (uuid "00000000-0000-0000-0000-00005cc7520b")
  2046. (property "Reference" "#PWR0104"
  2047. (at 90.17 107.95 0)
  2048. (effects
  2049. (font
  2050. (size 1.27 1.27)
  2051. )
  2052. (hide yes)
  2053. )
  2054. )
  2055. (property "Value" "GND"
  2056. (at 90.297 105.9942 0)
  2057. (effects
  2058. (font
  2059. (size 1.27 1.27)
  2060. )
  2061. )
  2062. )
  2063. (property "Footprint" ""
  2064. (at 90.17 101.6 0)
  2065. (effects
  2066. (font
  2067. (size 1.27 1.27)
  2068. )
  2069. (hide yes)
  2070. )
  2071. )
  2072. (property "Datasheet" ""
  2073. (at 90.17 101.6 0)
  2074. (effects
  2075. (font
  2076. (size 1.27 1.27)
  2077. )
  2078. (hide yes)
  2079. )
  2080. )
  2081. (property "Description" ""
  2082. (at 90.17 101.6 0)
  2083. (effects
  2084. (font
  2085. (size 1.27 1.27)
  2086. )
  2087. (hide yes)
  2088. )
  2089. )
  2090. (pin "1"
  2091. (uuid "d237b04b-80a2-4654-ba41-e47cfae37f65")
  2092. )
  2093. (instances
  2094. (project "Greaseweazle"
  2095. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2096. (reference "#PWR0104")
  2097. (unit 1)
  2098. )
  2099. )
  2100. )
  2101. )
  2102. (symbol
  2103. (lib_id "power:GND")
  2104. (at 143.51 83.82 0)
  2105. (unit 1)
  2106. (exclude_from_sim no)
  2107. (in_bom yes)
  2108. (on_board yes)
  2109. (dnp no)
  2110. (uuid "00000000-0000-0000-0000-00005cc8b39c")
  2111. (property "Reference" "#PWR0102"
  2112. (at 143.51 90.17 0)
  2113. (effects
  2114. (font
  2115. (size 1.27 1.27)
  2116. )
  2117. (hide yes)
  2118. )
  2119. )
  2120. (property "Value" "GND"
  2121. (at 143.637 88.2142 0)
  2122. (effects
  2123. (font
  2124. (size 1.27 1.27)
  2125. )
  2126. )
  2127. )
  2128. (property "Footprint" ""
  2129. (at 143.51 83.82 0)
  2130. (effects
  2131. (font
  2132. (size 1.27 1.27)
  2133. )
  2134. (hide yes)
  2135. )
  2136. )
  2137. (property "Datasheet" ""
  2138. (at 143.51 83.82 0)
  2139. (effects
  2140. (font
  2141. (size 1.27 1.27)
  2142. )
  2143. (hide yes)
  2144. )
  2145. )
  2146. (property "Description" ""
  2147. (at 143.51 83.82 0)
  2148. (effects
  2149. (font
  2150. (size 1.27 1.27)
  2151. )
  2152. (hide yes)
  2153. )
  2154. )
  2155. (pin "1"
  2156. (uuid "535abd59-de73-4701-a51d-ea8da17274cc")
  2157. )
  2158. (instances
  2159. (project "Greaseweazle"
  2160. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2161. (reference "#PWR0102")
  2162. (unit 1)
  2163. )
  2164. )
  2165. )
  2166. )
  2167. (symbol
  2168. (lib_id "Greaseweazle:HRO-TYPE-C-31-M-12")
  2169. (at 74.93 82.55 0)
  2170. (unit 1)
  2171. (exclude_from_sim no)
  2172. (in_bom yes)
  2173. (on_board yes)
  2174. (dnp no)
  2175. (uuid "00000000-0000-0000-0000-00005e68a6b6")
  2176. (property "Reference" "USB1"
  2177. (at 74.93 51.9938 0)
  2178. (effects
  2179. (font
  2180. (size 1.524 1.524)
  2181. )
  2182. )
  2183. )
  2184. (property "Value" "HRO-TYPE-C-31-M-12"
  2185. (at 74.93 54.6862 0)
  2186. (effects
  2187. (font
  2188. (size 1.524 1.524)
  2189. )
  2190. )
  2191. )
  2192. (property "Footprint" "Greaseweazle:HRO-TYPE-C-31-M-12"
  2193. (at 74.93 57.3786 0)
  2194. (effects
  2195. (font
  2196. (size 1.524 1.524)
  2197. )
  2198. )
  2199. )
  2200. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf"
  2201. (at 57.15 81.28 0)
  2202. (effects
  2203. (font
  2204. (size 1.524 1.524)
  2205. )
  2206. (hide yes)
  2207. )
  2208. )
  2209. (property "Description" ""
  2210. (at 74.93 82.55 0)
  2211. (effects
  2212. (font
  2213. (size 1.27 1.27)
  2214. )
  2215. (hide yes)
  2216. )
  2217. )
  2218. (property "LCSC" "C165948"
  2219. (at 74.93 82.55 0)
  2220. (effects
  2221. (font
  2222. (size 1.27 1.27)
  2223. )
  2224. (hide yes)
  2225. )
  2226. )
  2227. (pin "1"
  2228. (uuid "844ae084-b702-4cc4-b628-72ea41b1f0b7")
  2229. )
  2230. (pin "10"
  2231. (uuid "9369e5ea-caad-42d6-9087-a2617ed111ff")
  2232. )
  2233. (pin "11"
  2234. (uuid "445530eb-3c60-4dbb-a9d2-972cfbcab07c")
  2235. )
  2236. (pin "12"
  2237. (uuid "842ba290-aaad-4bdb-be72-30a94d8f1939")
  2238. )
  2239. (pin "13"
  2240. (uuid "eac2f2e2-5f42-48c2-9089-d8676c73c42c")
  2241. )
  2242. (pin "2"
  2243. (uuid "208940d8-fe18-4dbb-a3ab-dfb6808c3a6c")
  2244. )
  2245. (pin "3"
  2246. (uuid "9348f73e-0de9-4560-a2fa-c7bed9f689f2")
  2247. )
  2248. (pin "4"
  2249. (uuid "778afe45-9f16-4ca1-a254-07a0979cd9bb")
  2250. )
  2251. (pin "5"
  2252. (uuid "2d74bb8d-de77-4958-a1db-56a01f938d3b")
  2253. )
  2254. (pin "6"
  2255. (uuid "03eb300a-5f6e-4d3f-b371-2bdb6f7d76d9")
  2256. )
  2257. (pin "7"
  2258. (uuid "041568c4-9dc7-475c-8bfb-b87e32a2005d")
  2259. )
  2260. (pin "8"
  2261. (uuid "7e5ec390-f97b-4804-9629-b010a74c0caf")
  2262. )
  2263. (pin "9"
  2264. (uuid "342334b7-6092-4f61-9771-2b8fc04c1cdc")
  2265. )
  2266. (instances
  2267. (project "Greaseweazle"
  2268. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2269. (reference "USB1")
  2270. (unit 1)
  2271. )
  2272. )
  2273. )
  2274. )
  2275. (symbol
  2276. (lib_id "Device:R")
  2277. (at 82.55 76.2 270)
  2278. (unit 1)
  2279. (exclude_from_sim no)
  2280. (in_bom yes)
  2281. (on_board yes)
  2282. (dnp no)
  2283. (uuid "00000000-0000-0000-0000-00005e733708")
  2284. (property "Reference" "R1"
  2285. (at 82.55 73.66 90)
  2286. (effects
  2287. (font
  2288. (size 1.27 1.27)
  2289. )
  2290. )
  2291. )
  2292. (property "Value" "5.1k"
  2293. (at 82.55 78.74 90)
  2294. (effects
  2295. (font
  2296. (size 1.27 1.27)
  2297. )
  2298. )
  2299. )
  2300. (property "Footprint" "Resistor_SMD:R_0402_1005Metric"
  2301. (at 82.55 74.422 90)
  2302. (effects
  2303. (font
  2304. (size 1.27 1.27)
  2305. )
  2306. (hide yes)
  2307. )
  2308. )
  2309. (property "Datasheet" "~"
  2310. (at 82.55 76.2 0)
  2311. (effects
  2312. (font
  2313. (size 1.27 1.27)
  2314. )
  2315. (hide yes)
  2316. )
  2317. )
  2318. (property "Description" ""
  2319. (at 82.55 76.2 0)
  2320. (effects
  2321. (font
  2322. (size 1.27 1.27)
  2323. )
  2324. (hide yes)
  2325. )
  2326. )
  2327. (property "LCSC" "C25905"
  2328. (at 82.55 76.2 0)
  2329. (effects
  2330. (font
  2331. (size 1.27 1.27)
  2332. )
  2333. (hide yes)
  2334. )
  2335. )
  2336. (property "Supplier" ""
  2337. (at 82.55 76.2 0)
  2338. (effects
  2339. (font
  2340. (size 1.27 1.27)
  2341. )
  2342. (hide yes)
  2343. )
  2344. )
  2345. (pin "1"
  2346. (uuid "0a595de8-49f3-499c-ae51-7b72e1bd481e")
  2347. )
  2348. (pin "2"
  2349. (uuid "dc033443-2703-4264-8c14-41a3d67b6c49")
  2350. )
  2351. (instances
  2352. (project "Greaseweazle"
  2353. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2354. (reference "R1")
  2355. (unit 1)
  2356. )
  2357. )
  2358. )
  2359. )
  2360. (symbol
  2361. (lib_id "Device:R")
  2362. (at 82.55 91.44 270)
  2363. (unit 1)
  2364. (exclude_from_sim no)
  2365. (in_bom yes)
  2366. (on_board yes)
  2367. (dnp no)
  2368. (uuid "00000000-0000-0000-0000-00005e79f20f")
  2369. (property "Reference" "R2"
  2370. (at 82.55 86.1822 90)
  2371. (effects
  2372. (font
  2373. (size 1.27 1.27)
  2374. )
  2375. )
  2376. )
  2377. (property "Value" "5.1k"
  2378. (at 82.55 88.4936 90)
  2379. (effects
  2380. (font
  2381. (size 1.27 1.27)
  2382. )
  2383. )
  2384. )
  2385. (property "Footprint" "Resistor_SMD:R_0402_1005Metric"
  2386. (at 82.55 89.662 90)
  2387. (effects
  2388. (font
  2389. (size 1.27 1.27)
  2390. )
  2391. (hide yes)
  2392. )
  2393. )
  2394. (property "Datasheet" "~"
  2395. (at 82.55 91.44 0)
  2396. (effects
  2397. (font
  2398. (size 1.27 1.27)
  2399. )
  2400. (hide yes)
  2401. )
  2402. )
  2403. (property "Description" ""
  2404. (at 82.55 91.44 0)
  2405. (effects
  2406. (font
  2407. (size 1.27 1.27)
  2408. )
  2409. (hide yes)
  2410. )
  2411. )
  2412. (property "LCSC" "C25905"
  2413. (at 82.55 91.44 0)
  2414. (effects
  2415. (font
  2416. (size 1.27 1.27)
  2417. )
  2418. (hide yes)
  2419. )
  2420. )
  2421. (property "Supplier" ""
  2422. (at 82.55 91.44 0)
  2423. (effects
  2424. (font
  2425. (size 1.27 1.27)
  2426. )
  2427. (hide yes)
  2428. )
  2429. )
  2430. (pin "1"
  2431. (uuid "f105b2f9-77bd-4edf-ad2c-330df90ea317")
  2432. )
  2433. (pin "2"
  2434. (uuid "0ad2dbcc-680f-4d79-840c-e8ea7bda806d")
  2435. )
  2436. (instances
  2437. (project "Greaseweazle"
  2438. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2439. (reference "R2")
  2440. (unit 1)
  2441. )
  2442. )
  2443. )
  2444. )
  2445. (symbol
  2446. (lib_id "Device:C")
  2447. (at 143.51 78.74 0)
  2448. (mirror x)
  2449. (unit 1)
  2450. (exclude_from_sim no)
  2451. (in_bom yes)
  2452. (on_board yes)
  2453. (dnp no)
  2454. (uuid "00000000-0000-0000-0000-00005e7feac9")
  2455. (property "Reference" "C1"
  2456. (at 137.1092 78.74 0)
  2457. (effects
  2458. (font
  2459. (size 1.27 1.27)
  2460. )
  2461. )
  2462. )
  2463. (property "Value" "1uF"
  2464. (at 138.43 81.28 0)
  2465. (effects
  2466. (font
  2467. (size 1.27 1.27)
  2468. )
  2469. )
  2470. )
  2471. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
  2472. (at 144.4752 74.93 0)
  2473. (effects
  2474. (font
  2475. (size 1.27 1.27)
  2476. )
  2477. (hide yes)
  2478. )
  2479. )
  2480. (property "Datasheet" "~"
  2481. (at 143.51 78.74 0)
  2482. (effects
  2483. (font
  2484. (size 1.27 1.27)
  2485. )
  2486. (hide yes)
  2487. )
  2488. )
  2489. (property "Description" ""
  2490. (at 143.51 78.74 0)
  2491. (effects
  2492. (font
  2493. (size 1.27 1.27)
  2494. )
  2495. (hide yes)
  2496. )
  2497. )
  2498. (property "LCSC" "C15849"
  2499. (at 107.95 54.61 0)
  2500. (effects
  2501. (font
  2502. (size 1.27 1.27)
  2503. )
  2504. (hide yes)
  2505. )
  2506. )
  2507. (property "MOUSER" ""
  2508. (at 107.95 54.61 0)
  2509. (effects
  2510. (font
  2511. (size 1.27 1.27)
  2512. )
  2513. (hide yes)
  2514. )
  2515. )
  2516. (property "MPN" ""
  2517. (at 107.95 54.61 0)
  2518. (effects
  2519. (font
  2520. (size 1.27 1.27)
  2521. )
  2522. (hide yes)
  2523. )
  2524. )
  2525. (property "Supplier" ""
  2526. (at 143.51 78.74 0)
  2527. (effects
  2528. (font
  2529. (size 1.27 1.27)
  2530. )
  2531. (hide yes)
  2532. )
  2533. )
  2534. (pin "1"
  2535. (uuid "dc7ff2c0-4946-410e-a713-3255c290e916")
  2536. )
  2537. (pin "2"
  2538. (uuid "a9113c66-602d-470b-b24f-4d1784f6a5e0")
  2539. )
  2540. (instances
  2541. (project "Greaseweazle"
  2542. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2543. (reference "C1")
  2544. (unit 1)
  2545. )
  2546. )
  2547. )
  2548. )
  2549. (symbol
  2550. (lib_id "Power_Protection:USBLC6-2SC6")
  2551. (at 109.22 96.52 90)
  2552. (unit 1)
  2553. (exclude_from_sim no)
  2554. (in_bom yes)
  2555. (on_board yes)
  2556. (dnp no)
  2557. (uuid "00000000-0000-0000-0000-00005e95f9cd")
  2558. (property "Reference" "U2"
  2559. (at 115.57 87.63 90)
  2560. (effects
  2561. (font
  2562. (size 1.27 1.27)
  2563. )
  2564. (justify right)
  2565. )
  2566. )
  2567. (property "Value" "USBLC6-2SC6"
  2568. (at 114.3 85.09 90)
  2569. (effects
  2570. (font
  2571. (size 1.27 1.27)
  2572. )
  2573. (justify right)
  2574. )
  2575. )
  2576. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6"
  2577. (at 99.06 115.57 0)
  2578. (effects
  2579. (font
  2580. (size 1.27 1.27)
  2581. )
  2582. (hide yes)
  2583. )
  2584. )
  2585. (property "Datasheet" ""
  2586. (at 100.33 91.44 0)
  2587. (effects
  2588. (font
  2589. (size 1.27 1.27)
  2590. )
  2591. (hide yes)
  2592. )
  2593. )
  2594. (property "Description" ""
  2595. (at 109.22 96.52 0)
  2596. (effects
  2597. (font
  2598. (size 1.27 1.27)
  2599. )
  2600. (hide yes)
  2601. )
  2602. )
  2603. (property "LCSC" "C7519"
  2604. (at 109.22 96.52 0)
  2605. (effects
  2606. (font
  2607. (size 1.27 1.27)
  2608. )
  2609. (hide yes)
  2610. )
  2611. )
  2612. (pin "1"
  2613. (uuid "c3156dfe-ad86-452a-942c-d88fa4ce14f4")
  2614. )
  2615. (pin "2"
  2616. (uuid "af89d63d-3be6-4dcb-a825-41cb31178289")
  2617. )
  2618. (pin "3"
  2619. (uuid "2e84c38e-66af-4af6-afe9-1ffa7a4dfbae")
  2620. )
  2621. (pin "4"
  2622. (uuid "1bab46dd-f520-45a1-83fe-b0c86807ba63")
  2623. )
  2624. (pin "5"
  2625. (uuid "e64dd6cf-b25a-44a7-a209-ae75962a691a")
  2626. )
  2627. (pin "6"
  2628. (uuid "5e96b56d-27a5-417e-b0ec-349bf63d0a73")
  2629. )
  2630. (instances
  2631. (project "Greaseweazle"
  2632. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2633. (reference "U2")
  2634. (unit 1)
  2635. )
  2636. )
  2637. )
  2638. )
  2639. (symbol
  2640. (lib_id "power:GND")
  2641. (at 121.92 99.06 0)
  2642. (unit 1)
  2643. (exclude_from_sim no)
  2644. (in_bom yes)
  2645. (on_board yes)
  2646. (dnp no)
  2647. (uuid "00000000-0000-0000-0000-00005e9ecde8")
  2648. (property "Reference" "#PWR0105"
  2649. (at 121.92 105.41 0)
  2650. (effects
  2651. (font
  2652. (size 1.27 1.27)
  2653. )
  2654. (hide yes)
  2655. )
  2656. )
  2657. (property "Value" "GND"
  2658. (at 122.047 103.4542 0)
  2659. (effects
  2660. (font
  2661. (size 1.27 1.27)
  2662. )
  2663. )
  2664. )
  2665. (property "Footprint" ""
  2666. (at 121.92 99.06 0)
  2667. (effects
  2668. (font
  2669. (size 1.27 1.27)
  2670. )
  2671. (hide yes)
  2672. )
  2673. )
  2674. (property "Datasheet" ""
  2675. (at 121.92 99.06 0)
  2676. (effects
  2677. (font
  2678. (size 1.27 1.27)
  2679. )
  2680. (hide yes)
  2681. )
  2682. )
  2683. (property "Description" ""
  2684. (at 121.92 99.06 0)
  2685. (effects
  2686. (font
  2687. (size 1.27 1.27)
  2688. )
  2689. (hide yes)
  2690. )
  2691. )
  2692. (pin "1"
  2693. (uuid "9c733c71-8913-4317-8a13-37349cc819db")
  2694. )
  2695. (instances
  2696. (project "Greaseweazle"
  2697. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2698. (reference "#PWR0105")
  2699. (unit 1)
  2700. )
  2701. )
  2702. )
  2703. )
  2704. (symbol
  2705. (lib_id "power:+5V")
  2706. (at 143.51 58.42 0)
  2707. (unit 1)
  2708. (exclude_from_sim no)
  2709. (in_bom yes)
  2710. (on_board yes)
  2711. (dnp no)
  2712. (uuid "00000000-0000-0000-0000-000062237a55")
  2713. (property "Reference" "#PWR0106"
  2714. (at 143.51 62.23 0)
  2715. (effects
  2716. (font
  2717. (size 1.27 1.27)
  2718. )
  2719. (hide yes)
  2720. )
  2721. )
  2722. (property "Value" "+5V"
  2723. (at 143.891 54.0258 0)
  2724. (effects
  2725. (font
  2726. (size 1.27 1.27)
  2727. )
  2728. )
  2729. )
  2730. (property "Footprint" ""
  2731. (at 143.51 58.42 0)
  2732. (effects
  2733. (font
  2734. (size 1.27 1.27)
  2735. )
  2736. (hide yes)
  2737. )
  2738. )
  2739. (property "Datasheet" ""
  2740. (at 143.51 58.42 0)
  2741. (effects
  2742. (font
  2743. (size 1.27 1.27)
  2744. )
  2745. (hide yes)
  2746. )
  2747. )
  2748. (property "Description" ""
  2749. (at 143.51 58.42 0)
  2750. (effects
  2751. (font
  2752. (size 1.27 1.27)
  2753. )
  2754. (hide yes)
  2755. )
  2756. )
  2757. (pin "1"
  2758. (uuid "489a3036-9fd5-47fc-be8b-57babb17c701")
  2759. )
  2760. (instances
  2761. (project "Greaseweazle"
  2762. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
  2763. (reference "#PWR0106")
  2764. (unit 1)
  2765. )
  2766. )
  2767. )
  2768. )
  2769. )