usb.kicad_sch 43 KB

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