AP3211KTR.kicad_sch 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "DIodeInc:AP3211KTR-G1"
  9. (exclude_from_sim no)
  10. (in_bom yes)
  11. (on_board yes)
  12. (property "Reference" "U"
  13. (at 3.81 -10.16 0)
  14. (effects
  15. (font
  16. (size 1.27 1.27)
  17. )
  18. )
  19. )
  20. (property "Value" "AP3211KTR-G1"
  21. (at 0 10.16 0)
  22. (effects
  23. (font
  24. (size 1.27 1.27)
  25. )
  26. )
  27. )
  28. (property "Footprint" ""
  29. (at 2.54 -2.54 0)
  30. (effects
  31. (font
  32. (size 1.27 1.27)
  33. )
  34. (hide yes)
  35. )
  36. )
  37. (property "Datasheet" ""
  38. (at 2.54 -2.54 0)
  39. (effects
  40. (font
  41. (size 1.27 1.27)
  42. )
  43. (hide yes)
  44. )
  45. )
  46. (property "Description" ""
  47. (at 0 0 0)
  48. (effects
  49. (font
  50. (size 1.27 1.27)
  51. )
  52. (hide yes)
  53. )
  54. )
  55. (property "Partkeepr" "?"
  56. (at 0 0 0)
  57. (effects
  58. (font
  59. (size 1.27 1.27)
  60. )
  61. (hide yes)
  62. )
  63. )
  64. (symbol "AP3211KTR-G1_0_0"
  65. (pin power_in line
  66. (at 0 -11.43 90)
  67. (length 2.54)
  68. (name "GND"
  69. (effects
  70. (font
  71. (size 1.27 1.27)
  72. )
  73. )
  74. )
  75. (number "2"
  76. (effects
  77. (font
  78. (size 1.27 1.27)
  79. )
  80. )
  81. )
  82. )
  83. (pin passive line
  84. (at 7.62 -6.35 180)
  85. (length 2.54)
  86. (name "FB"
  87. (effects
  88. (font
  89. (size 1.27 1.27)
  90. )
  91. )
  92. )
  93. (number "3"
  94. (effects
  95. (font
  96. (size 1.27 1.27)
  97. )
  98. )
  99. )
  100. )
  101. (pin input line
  102. (at -7.62 -6.35 0)
  103. (length 2.54)
  104. (name "EN"
  105. (effects
  106. (font
  107. (size 1.27 1.27)
  108. )
  109. )
  110. )
  111. (number "4"
  112. (effects
  113. (font
  114. (size 1.27 1.27)
  115. )
  116. )
  117. )
  118. )
  119. (pin power_in line
  120. (at -7.62 6.35 0)
  121. (length 2.54)
  122. (name "IN"
  123. (effects
  124. (font
  125. (size 1.27 1.27)
  126. )
  127. )
  128. )
  129. (number "5"
  130. (effects
  131. (font
  132. (size 1.27 1.27)
  133. )
  134. )
  135. )
  136. )
  137. (pin power_out line
  138. (at 7.62 0 180)
  139. (length 2.54)
  140. (name "SW"
  141. (effects
  142. (font
  143. (size 1.27 1.27)
  144. )
  145. )
  146. )
  147. (number "6"
  148. (effects
  149. (font
  150. (size 1.27 1.27)
  151. )
  152. )
  153. )
  154. )
  155. )
  156. (symbol "AP3211KTR-G1_0_1"
  157. (rectangle
  158. (start -5.08 8.89)
  159. (end 5.08 -8.89)
  160. (stroke
  161. (width 0)
  162. (type default)
  163. )
  164. (fill
  165. (type background)
  166. )
  167. )
  168. )
  169. (symbol "AP3211KTR-G1_1_1"
  170. (pin passive line
  171. (at 7.62 6.35 180)
  172. (length 2.54)
  173. (name "BS"
  174. (effects
  175. (font
  176. (size 1.27 1.27)
  177. )
  178. )
  179. )
  180. (number "1"
  181. (effects
  182. (font
  183. (size 1.27 1.27)
  184. )
  185. )
  186. )
  187. )
  188. )
  189. )
  190. (symbol "global:C"
  191. (pin_numbers hide)
  192. (pin_names
  193. (offset 0.254)
  194. )
  195. (exclude_from_sim no)
  196. (in_bom yes)
  197. (on_board yes)
  198. (property "Reference" "C"
  199. (at 0.635 2.54 0)
  200. (effects
  201. (font
  202. (size 1.27 1.27)
  203. )
  204. (justify left)
  205. )
  206. )
  207. (property "Value" "C"
  208. (at 0.635 -2.54 0)
  209. (effects
  210. (font
  211. (size 1.27 1.27)
  212. )
  213. (justify left)
  214. )
  215. )
  216. (property "Footprint" ""
  217. (at 0.9652 -3.81 0)
  218. (effects
  219. (font
  220. (size 1.27 1.27)
  221. )
  222. )
  223. )
  224. (property "Datasheet" ""
  225. (at 0 0 0)
  226. (effects
  227. (font
  228. (size 1.27 1.27)
  229. )
  230. )
  231. )
  232. (property "Description" ""
  233. (at 0 0 0)
  234. (effects
  235. (font
  236. (size 1.27 1.27)
  237. )
  238. (hide yes)
  239. )
  240. )
  241. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
  242. (at 0 0 0)
  243. (effects
  244. (font
  245. (size 1.27 1.27)
  246. )
  247. (hide yes)
  248. )
  249. )
  250. (symbol "C_0_1"
  251. (polyline
  252. (pts
  253. (xy -2.032 -0.762) (xy 2.032 -0.762)
  254. )
  255. (stroke
  256. (width 0.508)
  257. (type default)
  258. )
  259. (fill
  260. (type none)
  261. )
  262. )
  263. (polyline
  264. (pts
  265. (xy -2.032 0.762) (xy 2.032 0.762)
  266. )
  267. (stroke
  268. (width 0.508)
  269. (type default)
  270. )
  271. (fill
  272. (type none)
  273. )
  274. )
  275. )
  276. (symbol "C_1_1"
  277. (pin passive line
  278. (at 0 3.81 270)
  279. (length 2.794)
  280. (name "~"
  281. (effects
  282. (font
  283. (size 1.016 1.016)
  284. )
  285. )
  286. )
  287. (number "1"
  288. (effects
  289. (font
  290. (size 1.016 1.016)
  291. )
  292. )
  293. )
  294. )
  295. (pin passive line
  296. (at 0 -3.81 90)
  297. (length 2.794)
  298. (name "~"
  299. (effects
  300. (font
  301. (size 1.016 1.016)
  302. )
  303. )
  304. )
  305. (number "2"
  306. (effects
  307. (font
  308. (size 1.016 1.016)
  309. )
  310. )
  311. )
  312. )
  313. )
  314. )
  315. (symbol "global:D"
  316. (pin_numbers hide)
  317. (pin_names
  318. (offset 1.016) hide)
  319. (exclude_from_sim no)
  320. (in_bom yes)
  321. (on_board yes)
  322. (property "Reference" "D"
  323. (at 0 2.54 0)
  324. (effects
  325. (font
  326. (size 1.27 1.27)
  327. )
  328. )
  329. )
  330. (property "Value" "D"
  331. (at 0 -2.54 0)
  332. (effects
  333. (font
  334. (size 1.27 1.27)
  335. )
  336. )
  337. )
  338. (property "Footprint" ""
  339. (at 0 0 0)
  340. (effects
  341. (font
  342. (size 1.27 1.27)
  343. )
  344. )
  345. )
  346. (property "Datasheet" ""
  347. (at 0 0 0)
  348. (effects
  349. (font
  350. (size 1.27 1.27)
  351. )
  352. )
  353. )
  354. (property "Description" ""
  355. (at 0 0 0)
  356. (effects
  357. (font
  358. (size 1.27 1.27)
  359. )
  360. (hide yes)
  361. )
  362. )
  363. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*"
  364. (at 0 0 0)
  365. (effects
  366. (font
  367. (size 1.27 1.27)
  368. )
  369. (hide yes)
  370. )
  371. )
  372. (symbol "D_0_1"
  373. (polyline
  374. (pts
  375. (xy -1.27 1.27) (xy -1.27 -1.27)
  376. )
  377. (stroke
  378. (width 0.1524)
  379. (type default)
  380. )
  381. (fill
  382. (type none)
  383. )
  384. )
  385. (polyline
  386. (pts
  387. (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
  388. )
  389. (stroke
  390. (width 0)
  391. (type default)
  392. )
  393. (fill
  394. (type outline)
  395. )
  396. )
  397. )
  398. (symbol "D_1_1"
  399. (pin passive line
  400. (at -3.81 0 0)
  401. (length 2.54)
  402. (name "K"
  403. (effects
  404. (font
  405. (size 1.27 1.27)
  406. )
  407. )
  408. )
  409. (number "1"
  410. (effects
  411. (font
  412. (size 1.27 1.27)
  413. )
  414. )
  415. )
  416. )
  417. (pin passive line
  418. (at 3.81 0 180)
  419. (length 2.54)
  420. (name "A"
  421. (effects
  422. (font
  423. (size 1.27 1.27)
  424. )
  425. )
  426. )
  427. (number "2"
  428. (effects
  429. (font
  430. (size 1.27 1.27)
  431. )
  432. )
  433. )
  434. )
  435. )
  436. )
  437. (symbol "global:FUSE"
  438. (pin_names
  439. (offset 0.254)
  440. )
  441. (exclude_from_sim no)
  442. (in_bom yes)
  443. (on_board yes)
  444. (property "Reference" "F"
  445. (at 2.54 1.27 0)
  446. (effects
  447. (font
  448. (size 1.27 1.27)
  449. )
  450. )
  451. )
  452. (property "Value" "FUSE"
  453. (at -2.54 -1.27 0)
  454. (effects
  455. (font
  456. (size 1.27 1.27)
  457. )
  458. )
  459. )
  460. (property "Footprint" ""
  461. (at 0 0 0)
  462. (effects
  463. (font
  464. (size 1.27 1.27)
  465. )
  466. )
  467. )
  468. (property "Datasheet" ""
  469. (at 0 0 0)
  470. (effects
  471. (font
  472. (size 1.27 1.27)
  473. )
  474. )
  475. )
  476. (property "Description" ""
  477. (at 0 0 0)
  478. (effects
  479. (font
  480. (size 1.27 1.27)
  481. )
  482. (hide yes)
  483. )
  484. )
  485. (symbol "FUSE_0_1"
  486. (arc
  487. (start 0 0)
  488. (mid -1.905 1.8967)
  489. (end -3.81 0)
  490. (stroke
  491. (width 0)
  492. (type default)
  493. )
  494. (fill
  495. (type none)
  496. )
  497. )
  498. (arc
  499. (start 0 0)
  500. (mid 1.905 -1.8967)
  501. (end 3.81 0)
  502. (stroke
  503. (width 0)
  504. (type default)
  505. )
  506. (fill
  507. (type none)
  508. )
  509. )
  510. )
  511. (symbol "FUSE_1_1"
  512. (pin input line
  513. (at -6.35 0 0)
  514. (length 2.54)
  515. (name "~"
  516. (effects
  517. (font
  518. (size 1.016 1.016)
  519. )
  520. )
  521. )
  522. (number "1"
  523. (effects
  524. (font
  525. (size 1.016 1.016)
  526. )
  527. )
  528. )
  529. )
  530. (pin input line
  531. (at 6.35 0 180)
  532. (length 2.54)
  533. (name "~"
  534. (effects
  535. (font
  536. (size 1.016 1.016)
  537. )
  538. )
  539. )
  540. (number "2"
  541. (effects
  542. (font
  543. (size 1.016 1.016)
  544. )
  545. )
  546. )
  547. )
  548. )
  549. )
  550. (symbol "global:INDUCTOR"
  551. (pin_numbers hide)
  552. (pin_names
  553. (offset 1.016) hide)
  554. (exclude_from_sim no)
  555. (in_bom yes)
  556. (on_board yes)
  557. (property "Reference" "L"
  558. (at -1.27 0 90)
  559. (effects
  560. (font
  561. (size 1.27 1.27)
  562. )
  563. )
  564. )
  565. (property "Value" "INDUCTOR"
  566. (at 2.54 0 90)
  567. (effects
  568. (font
  569. (size 1.27 1.27)
  570. )
  571. )
  572. )
  573. (property "Footprint" ""
  574. (at 0 0 0)
  575. (effects
  576. (font
  577. (size 1.27 1.27)
  578. )
  579. )
  580. )
  581. (property "Datasheet" ""
  582. (at 0 0 0)
  583. (effects
  584. (font
  585. (size 1.27 1.27)
  586. )
  587. )
  588. )
  589. (property "Description" ""
  590. (at 0 0 0)
  591. (effects
  592. (font
  593. (size 1.27 1.27)
  594. )
  595. (hide yes)
  596. )
  597. )
  598. (symbol "INDUCTOR_0_1"
  599. (arc
  600. (start 0.0254 -5.0546)
  601. (mid 1.2449 -3.8097)
  602. (end 0.0254 -2.54)
  603. (stroke
  604. (width 0)
  605. (type default)
  606. )
  607. (fill
  608. (type none)
  609. )
  610. )
  611. (arc
  612. (start 0.0254 -2.5146)
  613. (mid 1.2703 -1.2444)
  614. (end 0.0254 0.0508)
  615. (stroke
  616. (width 0)
  617. (type default)
  618. )
  619. (fill
  620. (type none)
  621. )
  622. )
  623. (arc
  624. (start 0.0254 0.0254)
  625. (mid 1.2703 1.2956)
  626. (end 0.0254 2.5908)
  627. (stroke
  628. (width 0)
  629. (type default)
  630. )
  631. (fill
  632. (type none)
  633. )
  634. )
  635. (arc
  636. (start 0.0254 2.5654)
  637. (mid 1.1941 3.7595)
  638. (end 0.0254 4.9784)
  639. (stroke
  640. (width 0)
  641. (type default)
  642. )
  643. (fill
  644. (type none)
  645. )
  646. )
  647. )
  648. (symbol "INDUCTOR_1_1"
  649. (pin passive line
  650. (at 0 7.62 270)
  651. (length 2.54)
  652. (name "1"
  653. (effects
  654. (font
  655. (size 1.27 1.27)
  656. )
  657. )
  658. )
  659. (number "1"
  660. (effects
  661. (font
  662. (size 1.27 1.27)
  663. )
  664. )
  665. )
  666. )
  667. (pin passive line
  668. (at 0 -7.62 90)
  669. (length 2.54)
  670. (name "2"
  671. (effects
  672. (font
  673. (size 1.27 1.27)
  674. )
  675. )
  676. )
  677. (number "2"
  678. (effects
  679. (font
  680. (size 1.27 1.27)
  681. )
  682. )
  683. )
  684. )
  685. )
  686. )
  687. (symbol "global:R"
  688. (pin_numbers hide)
  689. (pin_names
  690. (offset 0)
  691. )
  692. (exclude_from_sim no)
  693. (in_bom yes)
  694. (on_board yes)
  695. (property "Reference" "R"
  696. (at 2.032 0 90)
  697. (effects
  698. (font
  699. (size 1.27 1.27)
  700. )
  701. )
  702. )
  703. (property "Value" "R"
  704. (at 0 0 90)
  705. (effects
  706. (font
  707. (size 1.27 1.27)
  708. )
  709. )
  710. )
  711. (property "Footprint" ""
  712. (at -1.778 0 90)
  713. (effects
  714. (font
  715. (size 1.27 1.27)
  716. )
  717. )
  718. )
  719. (property "Datasheet" ""
  720. (at 0 0 0)
  721. (effects
  722. (font
  723. (size 1.27 1.27)
  724. )
  725. )
  726. )
  727. (property "Description" ""
  728. (at 0 0 0)
  729. (effects
  730. (font
  731. (size 1.27 1.27)
  732. )
  733. (hide yes)
  734. )
  735. )
  736. (property "ki_fp_filters" "R_* Resistor_*"
  737. (at 0 0 0)
  738. (effects
  739. (font
  740. (size 1.27 1.27)
  741. )
  742. (hide yes)
  743. )
  744. )
  745. (symbol "R_0_1"
  746. (rectangle
  747. (start -1.016 -2.54)
  748. (end 1.016 2.54)
  749. (stroke
  750. (width 0.254)
  751. (type default)
  752. )
  753. (fill
  754. (type none)
  755. )
  756. )
  757. )
  758. (symbol "R_1_1"
  759. (pin passive line
  760. (at 0 3.81 270)
  761. (length 1.27)
  762. (name "~"
  763. (effects
  764. (font
  765. (size 1.27 1.27)
  766. )
  767. )
  768. )
  769. (number "1"
  770. (effects
  771. (font
  772. (size 1.27 1.27)
  773. )
  774. )
  775. )
  776. )
  777. (pin passive line
  778. (at 0 -3.81 90)
  779. (length 1.27)
  780. (name "~"
  781. (effects
  782. (font
  783. (size 1.27 1.27)
  784. )
  785. )
  786. )
  787. (number "2"
  788. (effects
  789. (font
  790. (size 1.27 1.27)
  791. )
  792. )
  793. )
  794. )
  795. )
  796. )
  797. (symbol "global:TVS"
  798. (pin_numbers hide)
  799. (pin_names
  800. (offset 1.016) hide)
  801. (exclude_from_sim no)
  802. (in_bom yes)
  803. (on_board yes)
  804. (property "Reference" "D"
  805. (at 3.81 0 90)
  806. (effects
  807. (font
  808. (size 1.27 1.27)
  809. )
  810. )
  811. )
  812. (property "Value" "TVS"
  813. (at -3.81 0 90)
  814. (effects
  815. (font
  816. (size 1.27 1.27)
  817. )
  818. )
  819. )
  820. (property "Footprint" ""
  821. (at 0 0 90)
  822. (effects
  823. (font
  824. (size 1.27 1.27)
  825. )
  826. )
  827. )
  828. (property "Datasheet" ""
  829. (at 0 0 90)
  830. (effects
  831. (font
  832. (size 1.27 1.27)
  833. )
  834. )
  835. )
  836. (property "Description" ""
  837. (at 0 0 0)
  838. (effects
  839. (font
  840. (size 1.27 1.27)
  841. )
  842. (hide yes)
  843. )
  844. )
  845. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*"
  846. (at 0 0 0)
  847. (effects
  848. (font
  849. (size 1.27 1.27)
  850. )
  851. (hide yes)
  852. )
  853. )
  854. (symbol "TVS_0_1"
  855. (polyline
  856. (pts
  857. (xy -1.27 1.27) (xy -2.54 0)
  858. )
  859. (stroke
  860. (width 0)
  861. (type default)
  862. )
  863. (fill
  864. (type none)
  865. )
  866. )
  867. (polyline
  868. (pts
  869. (xy 1.27 1.27) (xy -1.27 1.27)
  870. )
  871. (stroke
  872. (width 0.1524)
  873. (type default)
  874. )
  875. (fill
  876. (type none)
  877. )
  878. )
  879. (polyline
  880. (pts
  881. (xy 1.27 1.27) (xy 2.54 2.54)
  882. )
  883. (stroke
  884. (width 0)
  885. (type default)
  886. )
  887. (fill
  888. (type none)
  889. )
  890. )
  891. (polyline
  892. (pts
  893. (xy 1.27 -1.27) (xy 0 1.27) (xy -1.27 -1.27)
  894. )
  895. (stroke
  896. (width 0)
  897. (type default)
  898. )
  899. (fill
  900. (type outline)
  901. )
  902. )
  903. )
  904. (symbol "TVS_1_1"
  905. (pin passive line
  906. (at 0 3.81 270)
  907. (length 2.54)
  908. (name "K"
  909. (effects
  910. (font
  911. (size 1.27 1.27)
  912. )
  913. )
  914. )
  915. (number "1"
  916. (effects
  917. (font
  918. (size 1.27 1.27)
  919. )
  920. )
  921. )
  922. )
  923. (pin passive line
  924. (at 0 -3.81 90)
  925. (length 2.54)
  926. (name "A"
  927. (effects
  928. (font
  929. (size 1.27 1.27)
  930. )
  931. )
  932. )
  933. (number "2"
  934. (effects
  935. (font
  936. (size 1.27 1.27)
  937. )
  938. )
  939. )
  940. )
  941. )
  942. )
  943. )
  944. (junction
  945. (at 39.37 31.75)
  946. (diameter 0)
  947. (color 0 0 0 0)
  948. (uuid "0291efe4-3105-43fe-9989-f42b88597166")
  949. )
  950. (junction
  951. (at 82.55 38.1)
  952. (diameter 0)
  953. (color 0 0 0 0)
  954. (uuid "105ebf3f-4213-491f-8977-733c0e62e413")
  955. )
  956. (junction
  957. (at 48.26 31.75)
  958. (diameter 0)
  959. (color 0 0 0 0)
  960. (uuid "34023d6b-ebc9-4b1c-a46c-39829fbc69f0")
  961. )
  962. (junction
  963. (at 121.92 38.1)
  964. (diameter 0)
  965. (color 0 0 0 0)
  966. (uuid "51785745-076e-4fae-adf5-0a99d4d24924")
  967. )
  968. (junction
  969. (at 54.61 31.75)
  970. (diameter 0)
  971. (color 0 0 0 0)
  972. (uuid "6c21674e-b03c-44dc-ba38-ea21fd855d70")
  973. )
  974. (junction
  975. (at 86.36 38.1)
  976. (diameter 0)
  977. (color 0 0 0 0)
  978. (uuid "c6af4a17-e18c-4369-8114-27dcba4e1bfc")
  979. )
  980. (junction
  981. (at 109.22 48.26)
  982. (diameter 0)
  983. (color 0 0 0 0)
  984. (uuid "cf077c05-158d-4506-b0b2-286ac756f610")
  985. )
  986. (junction
  987. (at 109.22 38.1)
  988. (diameter 0)
  989. (color 0 0 0 0)
  990. (uuid "ffd17341-2dd4-4bdb-bc59-ce4d41e1d1c8")
  991. )
  992. (wire
  993. (pts
  994. (xy 109.22 38.1) (xy 109.22 39.37)
  995. )
  996. (stroke
  997. (width 0)
  998. (type default)
  999. )
  1000. (uuid "06d9ff05-bca7-448f-92da-2ac5e70caee7")
  1001. )
  1002. (wire
  1003. (pts
  1004. (xy 74.93 48.26) (xy 109.22 48.26)
  1005. )
  1006. (stroke
  1007. (width 0)
  1008. (type default)
  1009. )
  1010. (uuid "14342f47-f0b2-4315-945b-89c024323980")
  1011. )
  1012. (wire
  1013. (pts
  1014. (xy 48.26 44.45) (xy 48.26 31.75)
  1015. )
  1016. (stroke
  1017. (width 0)
  1018. (type default)
  1019. )
  1020. (uuid "2556715b-0ebd-41fa-b210-6fff13917452")
  1021. )
  1022. (wire
  1023. (pts
  1024. (xy 109.22 38.1) (xy 121.92 38.1)
  1025. )
  1026. (stroke
  1027. (width 0)
  1028. (type default)
  1029. )
  1030. (uuid "4e83f921-434a-49e0-bf42-bcbabdd5a05f")
  1031. )
  1032. (wire
  1033. (pts
  1034. (xy 39.37 31.75) (xy 48.26 31.75)
  1035. )
  1036. (stroke
  1037. (width 0)
  1038. (type default)
  1039. )
  1040. (uuid "535d3181-5c66-4982-b7fb-3b0de9f2ca94")
  1041. )
  1042. (wire
  1043. (pts
  1044. (xy 86.36 38.1) (xy 92.71 38.1)
  1045. )
  1046. (stroke
  1047. (width 0)
  1048. (type default)
  1049. )
  1050. (uuid "570b5b81-bbab-415b-8145-0308725958b0")
  1051. )
  1052. (wire
  1053. (pts
  1054. (xy 74.93 31.75) (xy 76.2 31.75)
  1055. )
  1056. (stroke
  1057. (width 0)
  1058. (type default)
  1059. )
  1060. (uuid "6037253a-bbb4-4b0e-8433-1ca6209915a0")
  1061. )
  1062. (wire
  1063. (pts
  1064. (xy 20.32 49.53) (xy 22.86 49.53)
  1065. )
  1066. (stroke
  1067. (width 0)
  1068. (type default)
  1069. )
  1070. (uuid "992d74ea-b18a-48b1-b100-d4cb49af75bf")
  1071. )
  1072. (wire
  1073. (pts
  1074. (xy 55.88 44.45) (xy 59.69 44.45)
  1075. )
  1076. (stroke
  1077. (width 0)
  1078. (type default)
  1079. )
  1080. (uuid "996c6e18-7aaa-4563-95d0-92457a33e709")
  1081. )
  1082. (wire
  1083. (pts
  1084. (xy 76.2 30.48) (xy 82.55 30.48)
  1085. )
  1086. (stroke
  1087. (width 0)
  1088. (type default)
  1089. )
  1090. (uuid "9a67d5fa-c72e-4f6a-a206-a6d5fe87e300")
  1091. )
  1092. (wire
  1093. (pts
  1094. (xy 39.37 31.75) (xy 39.37 35.56)
  1095. )
  1096. (stroke
  1097. (width 0)
  1098. (type default)
  1099. )
  1100. (uuid "a43fd3fd-ada2-438f-bf0e-0b77c91b2a13")
  1101. )
  1102. (wire
  1103. (pts
  1104. (xy 76.2 31.75) (xy 76.2 30.48)
  1105. )
  1106. (stroke
  1107. (width 0)
  1108. (type default)
  1109. )
  1110. (uuid "a50b29f6-ba53-48a4-b7e9-2a8069c0fc51")
  1111. )
  1112. (wire
  1113. (pts
  1114. (xy 107.95 38.1) (xy 109.22 38.1)
  1115. )
  1116. (stroke
  1117. (width 0)
  1118. (type default)
  1119. )
  1120. (uuid "b6e56ee1-b92f-4f9c-9c86-892eebb0a41b")
  1121. )
  1122. (wire
  1123. (pts
  1124. (xy 82.55 38.1) (xy 86.36 38.1)
  1125. )
  1126. (stroke
  1127. (width 0)
  1128. (type default)
  1129. )
  1130. (uuid "b9e38b2e-cd8a-41cf-8f5e-667a1fba2ce6")
  1131. )
  1132. (wire
  1133. (pts
  1134. (xy 121.92 38.1) (xy 134.62 38.1)
  1135. )
  1136. (stroke
  1137. (width 0)
  1138. (type default)
  1139. )
  1140. (uuid "cec26e42-96db-48ff-9ed2-02e68ecfff2d")
  1141. )
  1142. (wire
  1143. (pts
  1144. (xy 74.93 44.45) (xy 74.93 48.26)
  1145. )
  1146. (stroke
  1147. (width 0)
  1148. (type default)
  1149. )
  1150. (uuid "da2e81c9-002c-4e14-bb0f-11979eb81e3e")
  1151. )
  1152. (wire
  1153. (pts
  1154. (xy 48.26 31.75) (xy 54.61 31.75)
  1155. )
  1156. (stroke
  1157. (width 0)
  1158. (type default)
  1159. )
  1160. (uuid "df838eb4-3873-41ab-8fe6-26aedd21f3ce")
  1161. )
  1162. (wire
  1163. (pts
  1164. (xy 54.61 31.75) (xy 59.69 31.75)
  1165. )
  1166. (stroke
  1167. (width 0)
  1168. (type default)
  1169. )
  1170. (uuid "e26d5c11-42f2-498c-8004-d362701e9ec9")
  1171. )
  1172. (wire
  1173. (pts
  1174. (xy 109.22 46.99) (xy 109.22 48.26)
  1175. )
  1176. (stroke
  1177. (width 0)
  1178. (type default)
  1179. )
  1180. (uuid "e3012c60-06d6-4afa-ae15-5bd0eb760c77")
  1181. )
  1182. (wire
  1183. (pts
  1184. (xy 33.02 31.75) (xy 39.37 31.75)
  1185. )
  1186. (stroke
  1187. (width 0)
  1188. (type default)
  1189. )
  1190. (uuid "e428c217-56f7-4ec8-a9f0-6dde26bd479d")
  1191. )
  1192. (wire
  1193. (pts
  1194. (xy 109.22 48.26) (xy 109.22 49.53)
  1195. )
  1196. (stroke
  1197. (width 0)
  1198. (type default)
  1199. )
  1200. (uuid "f8ecba94-b909-46c2-bf37-88337cc0c5f9")
  1201. )
  1202. (wire
  1203. (pts
  1204. (xy 74.93 38.1) (xy 82.55 38.1)
  1205. )
  1206. (stroke
  1207. (width 0)
  1208. (type default)
  1209. )
  1210. (uuid "fa78d2ef-8ba9-4973-84b1-3a08c13394f1")
  1211. )
  1212. (text "VIN beetween 4.5 and 18V"
  1213. (exclude_from_sim no)
  1214. (at 13.97 15.24 0)
  1215. (effects
  1216. (font
  1217. (size 1.27 1.27)
  1218. )
  1219. (justify left bottom)
  1220. )
  1221. (uuid "80d98050-4b74-47c8-b397-ab49f56b007f")
  1222. )
  1223. (text "Vout = (0.81 * (A+B)) / B\nutilisé la fonction TrouveResistance pour trouver le meilleur rapport de résistance\nA = 83.8 B = 16.3 pour 5V\n"
  1224. (exclude_from_sim no)
  1225. (at 101.6 21.59 0)
  1226. (effects
  1227. (font
  1228. (size 1.27 1.27)
  1229. )
  1230. (justify left bottom)
  1231. )
  1232. (uuid "f5312af6-5888-4875-85c6-195f1fac7a69")
  1233. )
  1234. (label "GND"
  1235. (at 86.36 45.72 180)
  1236. (fields_autoplaced yes)
  1237. (effects
  1238. (font
  1239. (size 1.27 1.27)
  1240. )
  1241. (justify right bottom)
  1242. )
  1243. (uuid "05875794-e554-4c47-8495-ced377fdcfe6")
  1244. )
  1245. (label "GND"
  1246. (at 22.86 49.53 0)
  1247. (fields_autoplaced yes)
  1248. (effects
  1249. (font
  1250. (size 1.27 1.27)
  1251. )
  1252. (justify left bottom)
  1253. )
  1254. (uuid "2254b044-8fc3-4bf9-8491-414aa9e28f6b")
  1255. )
  1256. (label "GND"
  1257. (at 67.31 49.53 270)
  1258. (fields_autoplaced yes)
  1259. (effects
  1260. (font
  1261. (size 1.27 1.27)
  1262. )
  1263. (justify right bottom)
  1264. )
  1265. (uuid "547bb3b4-ff47-4d88-a81d-3c2616c60dab")
  1266. )
  1267. (label "GND"
  1268. (at 109.22 57.15 270)
  1269. (fields_autoplaced yes)
  1270. (effects
  1271. (font
  1272. (size 1.27 1.27)
  1273. )
  1274. (justify right bottom)
  1275. )
  1276. (uuid "7d0d84b4-2b49-4050-92d5-5fbe90bfb972")
  1277. )
  1278. (label "GND"
  1279. (at 39.37 43.18 270)
  1280. (fields_autoplaced yes)
  1281. (effects
  1282. (font
  1283. (size 1.27 1.27)
  1284. )
  1285. (justify right bottom)
  1286. )
  1287. (uuid "b2d8b49e-f866-43af-8345-3610ee15e9cb")
  1288. )
  1289. (label "GND"
  1290. (at 121.92 45.72 270)
  1291. (fields_autoplaced yes)
  1292. (effects
  1293. (font
  1294. (size 1.27 1.27)
  1295. )
  1296. (justify right bottom)
  1297. )
  1298. (uuid "d5917165-b910-474b-935c-031beadbeaa4")
  1299. )
  1300. (label "GND"
  1301. (at 54.61 39.37 180)
  1302. (fields_autoplaced yes)
  1303. (effects
  1304. (font
  1305. (size 1.27 1.27)
  1306. )
  1307. (justify right bottom)
  1308. )
  1309. (uuid "e1c984e3-3507-4c0c-9668-c00cddf9aec0")
  1310. )
  1311. (hierarchical_label "3V3"
  1312. (shape output)
  1313. (at 134.62 38.1 0)
  1314. (fields_autoplaced yes)
  1315. (effects
  1316. (font
  1317. (size 1.27 1.27)
  1318. )
  1319. (justify left)
  1320. )
  1321. (uuid "0eadad72-f4d6-448c-b1c1-c86fec05041e")
  1322. )
  1323. (hierarchical_label "Vin"
  1324. (shape input)
  1325. (at 20.32 31.75 180)
  1326. (fields_autoplaced yes)
  1327. (effects
  1328. (font
  1329. (size 1.27 1.27)
  1330. )
  1331. (justify right)
  1332. )
  1333. (uuid "31d630a2-7cb9-4414-8ac0-a54fa6ea35fd")
  1334. )
  1335. (hierarchical_label "GND"
  1336. (shape input)
  1337. (at 20.32 49.53 180)
  1338. (fields_autoplaced yes)
  1339. (effects
  1340. (font
  1341. (size 1.27 1.27)
  1342. )
  1343. (justify right)
  1344. )
  1345. (uuid "355dc975-3404-4052-b86a-b567e3ace22c")
  1346. )
  1347. (symbol
  1348. (lib_id "global:C")
  1349. (at 82.55 34.29 0)
  1350. (unit 1)
  1351. (exclude_from_sim no)
  1352. (in_bom yes)
  1353. (on_board yes)
  1354. (dnp no)
  1355. (fields_autoplaced yes)
  1356. (uuid "048d336f-b609-4390-b71f-13585903d3b0")
  1357. (property "Reference" "C?"
  1358. (at 86.36 33.0199 0)
  1359. (effects
  1360. (font
  1361. (size 1.27 1.27)
  1362. )
  1363. (justify left)
  1364. )
  1365. )
  1366. (property "Value" "10nF"
  1367. (at 86.36 35.5599 0)
  1368. (effects
  1369. (font
  1370. (size 1.27 1.27)
  1371. )
  1372. (justify left)
  1373. )
  1374. )
  1375. (property "Footprint" "C:0805"
  1376. (at 83.5152 38.1 0)
  1377. (effects
  1378. (font
  1379. (size 1.27 1.27)
  1380. )
  1381. (hide yes)
  1382. )
  1383. )
  1384. (property "Datasheet" ""
  1385. (at 82.55 34.29 0)
  1386. (effects
  1387. (font
  1388. (size 1.27 1.27)
  1389. )
  1390. )
  1391. )
  1392. (property "Description" ""
  1393. (at 82.55 34.29 0)
  1394. (effects
  1395. (font
  1396. (size 1.27 1.27)
  1397. )
  1398. (hide yes)
  1399. )
  1400. )
  1401. (property "Partkeepr" "0604"
  1402. (at 82.55 34.29 0)
  1403. (effects
  1404. (font
  1405. (size 1.27 1.27)
  1406. )
  1407. (hide yes)
  1408. )
  1409. )
  1410. (pin "1"
  1411. (uuid "54574f71-ce01-4781-b1a2-245945e99414")
  1412. )
  1413. (pin "2"
  1414. (uuid "f4e08f2b-6010-4419-acef-e8eb7a95a12e")
  1415. )
  1416. (instances
  1417. (project "AP3211KTR"
  1418. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1419. (reference "C?")
  1420. (unit 1)
  1421. )
  1422. )
  1423. (project "AP3211KTR"
  1424. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1425. (reference "C?")
  1426. (unit 1)
  1427. )
  1428. )
  1429. (project "AP3211KTR"
  1430. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1431. (reference "C?")
  1432. (unit 1)
  1433. )
  1434. )
  1435. )
  1436. )
  1437. (symbol
  1438. (lib_id "DIodeInc:AP3211KTR-G1")
  1439. (at 67.31 38.1 0)
  1440. (unit 1)
  1441. (exclude_from_sim no)
  1442. (in_bom yes)
  1443. (on_board yes)
  1444. (dnp no)
  1445. (uuid "504f436b-fcb1-480e-84bd-7664085b476a")
  1446. (property "Reference" "U?"
  1447. (at 69.85 48.26 0)
  1448. (effects
  1449. (font
  1450. (size 1.27 1.27)
  1451. )
  1452. (justify left)
  1453. )
  1454. )
  1455. (property "Value" "AP3211KTR-G1"
  1456. (at 59.69 27.94 0)
  1457. (effects
  1458. (font
  1459. (size 1.27 1.27)
  1460. )
  1461. (justify left)
  1462. )
  1463. )
  1464. (property "Footprint" "U:SOT23-6"
  1465. (at 67.31 38.1 0)
  1466. (effects
  1467. (font
  1468. (size 1.27 1.27)
  1469. )
  1470. (hide yes)
  1471. )
  1472. )
  1473. (property "Datasheet" ""
  1474. (at 67.31 38.1 0)
  1475. (effects
  1476. (font
  1477. (size 1.27 1.27)
  1478. )
  1479. (hide yes)
  1480. )
  1481. )
  1482. (property "Description" ""
  1483. (at 67.31 38.1 0)
  1484. (effects
  1485. (font
  1486. (size 1.27 1.27)
  1487. )
  1488. (hide yes)
  1489. )
  1490. )
  1491. (property "Partkeepr" "1809"
  1492. (at 67.31 38.1 0)
  1493. (effects
  1494. (font
  1495. (size 1.27 1.27)
  1496. )
  1497. (hide yes)
  1498. )
  1499. )
  1500. (pin "2"
  1501. (uuid "3b967743-6c31-4e6e-a0f4-6422d41a9c57")
  1502. )
  1503. (pin "3"
  1504. (uuid "74cda0a5-6ace-46c7-8d87-98ad9f3732ac")
  1505. )
  1506. (pin "4"
  1507. (uuid "3f809e1f-0778-48f1-a405-818d64e0967b")
  1508. )
  1509. (pin "5"
  1510. (uuid "8a831d2e-0d04-44be-a12a-a21990ae1fd5")
  1511. )
  1512. (pin "6"
  1513. (uuid "b2de2038-606f-4b5c-882d-6c5a2573a29e")
  1514. )
  1515. (pin "1"
  1516. (uuid "8ea81251-6486-42a9-abae-1e42e06c49ea")
  1517. )
  1518. (instances
  1519. (project "AP3211KTR"
  1520. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1521. (reference "U?")
  1522. (unit 1)
  1523. )
  1524. )
  1525. (project "AP3211KTR"
  1526. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1527. (reference "U?")
  1528. (unit 1)
  1529. )
  1530. )
  1531. (project "AP3211KTR"
  1532. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1533. (reference "U?")
  1534. (unit 1)
  1535. )
  1536. )
  1537. )
  1538. )
  1539. (symbol
  1540. (lib_id "global:INDUCTOR")
  1541. (at 100.33 38.1 90)
  1542. (unit 1)
  1543. (exclude_from_sim no)
  1544. (in_bom yes)
  1545. (on_board yes)
  1546. (dnp no)
  1547. (fields_autoplaced yes)
  1548. (uuid "54866b1e-7b10-4f6b-b58c-59154c25057a")
  1549. (property "Reference" "L?"
  1550. (at 100.33 31.75 90)
  1551. (effects
  1552. (font
  1553. (size 1.27 1.27)
  1554. )
  1555. )
  1556. )
  1557. (property "Value" "4.7µH"
  1558. (at 100.33 34.29 90)
  1559. (effects
  1560. (font
  1561. (size 1.27 1.27)
  1562. )
  1563. )
  1564. )
  1565. (property "Footprint" "L:0630"
  1566. (at 100.33 38.1 0)
  1567. (effects
  1568. (font
  1569. (size 1.27 1.27)
  1570. )
  1571. (hide yes)
  1572. )
  1573. )
  1574. (property "Datasheet" ""
  1575. (at 100.33 38.1 0)
  1576. (effects
  1577. (font
  1578. (size 1.27 1.27)
  1579. )
  1580. )
  1581. )
  1582. (property "Description" ""
  1583. (at 100.33 38.1 0)
  1584. (effects
  1585. (font
  1586. (size 1.27 1.27)
  1587. )
  1588. (hide yes)
  1589. )
  1590. )
  1591. (property "Partkeepr" "0805"
  1592. (at 100.33 38.1 0)
  1593. (effects
  1594. (font
  1595. (size 1.27 1.27)
  1596. )
  1597. (hide yes)
  1598. )
  1599. )
  1600. (pin "1"
  1601. (uuid "17880507-7688-4a20-a2ff-ef120b9ce672")
  1602. )
  1603. (pin "2"
  1604. (uuid "e3ef6d5c-6e37-4177-9efa-dda0f44e4c0a")
  1605. )
  1606. (instances
  1607. (project "AP3211KTR"
  1608. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1609. (reference "L?")
  1610. (unit 1)
  1611. )
  1612. )
  1613. (project "AP3211KTR"
  1614. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1615. (reference "L?")
  1616. (unit 1)
  1617. )
  1618. )
  1619. (project "AP3211KTR"
  1620. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1621. (reference "L?")
  1622. (unit 1)
  1623. )
  1624. )
  1625. )
  1626. )
  1627. (symbol
  1628. (lib_id "global:R")
  1629. (at 52.07 44.45 270)
  1630. (unit 1)
  1631. (exclude_from_sim no)
  1632. (in_bom yes)
  1633. (on_board yes)
  1634. (dnp no)
  1635. (uuid "64071c9e-3076-43c8-a030-2cf6bdfd9669")
  1636. (property "Reference" "R?"
  1637. (at 50.8 46.99 90)
  1638. (effects
  1639. (font
  1640. (size 1.27 1.27)
  1641. )
  1642. (justify left)
  1643. )
  1644. )
  1645. (property "Value" "100K"
  1646. (at 49.53 44.45 90)
  1647. (effects
  1648. (font
  1649. (size 1.27 1.27)
  1650. )
  1651. (justify left)
  1652. )
  1653. )
  1654. (property "Footprint" "R:0805"
  1655. (at 52.07 42.672 90)
  1656. (effects
  1657. (font
  1658. (size 1.27 1.27)
  1659. )
  1660. (hide yes)
  1661. )
  1662. )
  1663. (property "Datasheet" ""
  1664. (at 52.07 44.45 0)
  1665. (effects
  1666. (font
  1667. (size 1.27 1.27)
  1668. )
  1669. )
  1670. )
  1671. (property "Description" ""
  1672. (at 52.07 44.45 0)
  1673. (effects
  1674. (font
  1675. (size 1.27 1.27)
  1676. )
  1677. (hide yes)
  1678. )
  1679. )
  1680. (property "Partkeepr" "0916"
  1681. (at 52.07 44.45 0)
  1682. (effects
  1683. (font
  1684. (size 1.27 1.27)
  1685. )
  1686. (hide yes)
  1687. )
  1688. )
  1689. (pin "1"
  1690. (uuid "c3867cad-3ba0-4086-a1da-e08470bc2ddc")
  1691. )
  1692. (pin "2"
  1693. (uuid "35eb9553-fe21-4cfa-9aa6-ba217b684c0d")
  1694. )
  1695. (instances
  1696. (project "AP3211KTR"
  1697. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1698. (reference "R?")
  1699. (unit 1)
  1700. )
  1701. )
  1702. (project "AP3211KTR"
  1703. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1704. (reference "R?")
  1705. (unit 1)
  1706. )
  1707. )
  1708. (project "AP3211KTR"
  1709. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1710. (reference "R?")
  1711. (unit 1)
  1712. )
  1713. )
  1714. )
  1715. )
  1716. (symbol
  1717. (lib_id "global:C")
  1718. (at 121.92 41.91 0)
  1719. (unit 1)
  1720. (exclude_from_sim no)
  1721. (in_bom yes)
  1722. (on_board yes)
  1723. (dnp no)
  1724. (fields_autoplaced yes)
  1725. (uuid "6745a070-4000-4cb0-be7a-fb1c908ebe2c")
  1726. (property "Reference" "C?"
  1727. (at 125.73 40.6399 0)
  1728. (effects
  1729. (font
  1730. (size 1.27 1.27)
  1731. )
  1732. (justify left)
  1733. )
  1734. )
  1735. (property "Value" "22µF"
  1736. (at 125.73 43.1799 0)
  1737. (effects
  1738. (font
  1739. (size 1.27 1.27)
  1740. )
  1741. (justify left)
  1742. )
  1743. )
  1744. (property "Footprint" "C:0805"
  1745. (at 122.8852 45.72 0)
  1746. (effects
  1747. (font
  1748. (size 1.27 1.27)
  1749. )
  1750. (hide yes)
  1751. )
  1752. )
  1753. (property "Datasheet" ""
  1754. (at 121.92 41.91 0)
  1755. (effects
  1756. (font
  1757. (size 1.27 1.27)
  1758. )
  1759. )
  1760. )
  1761. (property "Description" ""
  1762. (at 121.92 41.91 0)
  1763. (effects
  1764. (font
  1765. (size 1.27 1.27)
  1766. )
  1767. (hide yes)
  1768. )
  1769. )
  1770. (property "Partkeepr" "0622"
  1771. (at 121.92 41.91 0)
  1772. (effects
  1773. (font
  1774. (size 1.27 1.27)
  1775. )
  1776. (hide yes)
  1777. )
  1778. )
  1779. (pin "1"
  1780. (uuid "ba2b27af-8b14-462f-8733-84de171e8072")
  1781. )
  1782. (pin "2"
  1783. (uuid "fcd25a4a-b74b-4de8-9140-703b6884ae72")
  1784. )
  1785. (instances
  1786. (project "AP3211KTR"
  1787. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1788. (reference "C?")
  1789. (unit 1)
  1790. )
  1791. )
  1792. (project "AP3211KTR"
  1793. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1794. (reference "C?")
  1795. (unit 1)
  1796. )
  1797. )
  1798. (project "AP3211KTR"
  1799. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1800. (reference "C?")
  1801. (unit 1)
  1802. )
  1803. )
  1804. )
  1805. )
  1806. (symbol
  1807. (lib_id "global:R")
  1808. (at 109.22 43.18 0)
  1809. (unit 1)
  1810. (exclude_from_sim no)
  1811. (in_bom yes)
  1812. (on_board yes)
  1813. (dnp no)
  1814. (uuid "9bfe6db6-d6a0-470c-beac-c3acfcd2bc15")
  1815. (property "Reference" "R?"
  1816. (at 111.76 41.9099 0)
  1817. (effects
  1818. (font
  1819. (size 1.27 1.27)
  1820. )
  1821. (justify left)
  1822. )
  1823. )
  1824. (property "Value" "49.9K"
  1825. (at 110.49 44.45 0)
  1826. (effects
  1827. (font
  1828. (size 1.27 1.27)
  1829. )
  1830. (justify left)
  1831. )
  1832. )
  1833. (property "Footprint" "R:0805"
  1834. (at 107.442 43.18 90)
  1835. (effects
  1836. (font
  1837. (size 1.27 1.27)
  1838. )
  1839. (hide yes)
  1840. )
  1841. )
  1842. (property "Datasheet" ""
  1843. (at 109.22 43.18 0)
  1844. (effects
  1845. (font
  1846. (size 1.27 1.27)
  1847. )
  1848. )
  1849. )
  1850. (property "Description" ""
  1851. (at 109.22 43.18 0)
  1852. (effects
  1853. (font
  1854. (size 1.27 1.27)
  1855. )
  1856. (hide yes)
  1857. )
  1858. )
  1859. (property "Partkeepr" "0932"
  1860. (at 109.22 43.18 0)
  1861. (effects
  1862. (font
  1863. (size 1.27 1.27)
  1864. )
  1865. (hide yes)
  1866. )
  1867. )
  1868. (pin "1"
  1869. (uuid "8879e039-6c64-4161-8c84-6e2c1fef648e")
  1870. )
  1871. (pin "2"
  1872. (uuid "364c5d8b-8e9b-47c5-bb9c-34520f41c005")
  1873. )
  1874. (instances
  1875. (project "AP3211KTR"
  1876. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1877. (reference "R?")
  1878. (unit 1)
  1879. )
  1880. )
  1881. (project "AP3211KTR"
  1882. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1883. (reference "R?")
  1884. (unit 1)
  1885. )
  1886. )
  1887. (project "AP3211KTR"
  1888. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1889. (reference "R?")
  1890. (unit 1)
  1891. )
  1892. )
  1893. )
  1894. )
  1895. (symbol
  1896. (lib_id "global:TVS")
  1897. (at 39.37 39.37 0)
  1898. (unit 1)
  1899. (exclude_from_sim no)
  1900. (in_bom yes)
  1901. (on_board yes)
  1902. (dnp no)
  1903. (fields_autoplaced yes)
  1904. (uuid "bf2a0958-b7d5-43d7-b7f1-0a8b243ce1b6")
  1905. (property "Reference" "D?"
  1906. (at 43.18 37.4649 0)
  1907. (effects
  1908. (font
  1909. (size 1.27 1.27)
  1910. )
  1911. (justify left)
  1912. )
  1913. )
  1914. (property "Value" "TVS"
  1915. (at 43.18 40.0049 0)
  1916. (effects
  1917. (font
  1918. (size 1.27 1.27)
  1919. )
  1920. (justify left)
  1921. )
  1922. )
  1923. (property "Footprint" "D:SMB"
  1924. (at 43.18 41.2749 0)
  1925. (effects
  1926. (font
  1927. (size 1.27 1.27)
  1928. )
  1929. (justify left)
  1930. (hide yes)
  1931. )
  1932. )
  1933. (property "Datasheet" ""
  1934. (at 39.37 39.37 90)
  1935. (effects
  1936. (font
  1937. (size 1.27 1.27)
  1938. )
  1939. )
  1940. )
  1941. (property "Description" ""
  1942. (at 39.37 39.37 0)
  1943. (effects
  1944. (font
  1945. (size 1.27 1.27)
  1946. )
  1947. (hide yes)
  1948. )
  1949. )
  1950. (property "Partkeepr" "1400"
  1951. (at 39.37 39.37 0)
  1952. (effects
  1953. (font
  1954. (size 1.27 1.27)
  1955. )
  1956. (hide yes)
  1957. )
  1958. )
  1959. (pin "1"
  1960. (uuid "1d3b2eed-7c3a-439a-ad03-af8357e755de")
  1961. )
  1962. (pin "2"
  1963. (uuid "04c1efb4-d8cd-4876-aa3d-e7780285a187")
  1964. )
  1965. (instances
  1966. (project "AP3211KTR"
  1967. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  1968. (reference "D?")
  1969. (unit 1)
  1970. )
  1971. )
  1972. (project "AP3211KTR"
  1973. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  1974. (reference "D?")
  1975. (unit 1)
  1976. )
  1977. )
  1978. (project "AP3211KTR"
  1979. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  1980. (reference "D?")
  1981. (unit 1)
  1982. )
  1983. )
  1984. )
  1985. )
  1986. (symbol
  1987. (lib_id "global:C")
  1988. (at 54.61 35.56 0)
  1989. (unit 1)
  1990. (exclude_from_sim no)
  1991. (in_bom yes)
  1992. (on_board yes)
  1993. (dnp no)
  1994. (uuid "c49fd1de-fe0d-4c2c-836f-0f01f5c96f03")
  1995. (property "Reference" "C?"
  1996. (at 55.88 33.02 0)
  1997. (effects
  1998. (font
  1999. (size 1.27 1.27)
  2000. )
  2001. (justify left)
  2002. )
  2003. )
  2004. (property "Value" "10µF"
  2005. (at 55.88 38.1 0)
  2006. (effects
  2007. (font
  2008. (size 1.27 1.27)
  2009. )
  2010. (justify left)
  2011. )
  2012. )
  2013. (property "Footprint" "C:0805"
  2014. (at 55.5752 39.37 0)
  2015. (effects
  2016. (font
  2017. (size 1.27 1.27)
  2018. )
  2019. (hide yes)
  2020. )
  2021. )
  2022. (property "Datasheet" ""
  2023. (at 54.61 35.56 0)
  2024. (effects
  2025. (font
  2026. (size 1.27 1.27)
  2027. )
  2028. )
  2029. )
  2030. (property "Description" ""
  2031. (at 54.61 35.56 0)
  2032. (effects
  2033. (font
  2034. (size 1.27 1.27)
  2035. )
  2036. (hide yes)
  2037. )
  2038. )
  2039. (property "Partkeepr" ""
  2040. (at 54.61 35.56 0)
  2041. (effects
  2042. (font
  2043. (size 1.27 1.27)
  2044. )
  2045. (hide yes)
  2046. )
  2047. )
  2048. (pin "1"
  2049. (uuid "be7d7ea3-402c-4517-b0ed-1060de566cb2")
  2050. )
  2051. (pin "2"
  2052. (uuid "cb991dbf-ce47-448f-8f05-e1bb2378c2b3")
  2053. )
  2054. (instances
  2055. (project "AP3211KTR"
  2056. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  2057. (reference "C?")
  2058. (unit 1)
  2059. )
  2060. )
  2061. (project "AP3211KTR"
  2062. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  2063. (reference "C?")
  2064. (unit 1)
  2065. )
  2066. )
  2067. (project "AP3211KTR"
  2068. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  2069. (reference "C?")
  2070. (unit 1)
  2071. )
  2072. )
  2073. )
  2074. )
  2075. (symbol
  2076. (lib_id "global:D")
  2077. (at 86.36 41.91 270)
  2078. (unit 1)
  2079. (exclude_from_sim no)
  2080. (in_bom yes)
  2081. (on_board yes)
  2082. (dnp no)
  2083. (fields_autoplaced yes)
  2084. (uuid "cb6e9cd4-0fcc-4805-940c-175a691ec451")
  2085. (property "Reference" "D?"
  2086. (at 88.9 40.6018 90)
  2087. (effects
  2088. (font
  2089. (size 1.27 1.27)
  2090. )
  2091. (justify left)
  2092. )
  2093. )
  2094. (property "Value" "D"
  2095. (at 88.9 43.1418 90)
  2096. (effects
  2097. (font
  2098. (size 1.27 1.27)
  2099. )
  2100. (justify left)
  2101. )
  2102. )
  2103. (property "Footprint" "D:SOD-123"
  2104. (at 86.36 41.91 0)
  2105. (effects
  2106. (font
  2107. (size 1.27 1.27)
  2108. )
  2109. (hide yes)
  2110. )
  2111. )
  2112. (property "Datasheet" ""
  2113. (at 86.36 41.91 0)
  2114. (effects
  2115. (font
  2116. (size 1.27 1.27)
  2117. )
  2118. )
  2119. )
  2120. (property "Description" ""
  2121. (at 86.36 41.91 0)
  2122. (effects
  2123. (font
  2124. (size 1.27 1.27)
  2125. )
  2126. (hide yes)
  2127. )
  2128. )
  2129. (property "Partkeepr" "1300"
  2130. (at 86.36 41.91 0)
  2131. (effects
  2132. (font
  2133. (size 1.27 1.27)
  2134. )
  2135. (hide yes)
  2136. )
  2137. )
  2138. (pin "1"
  2139. (uuid "6e1c0150-70eb-4cb6-9dd1-e7b41ac4e00e")
  2140. )
  2141. (pin "2"
  2142. (uuid "c852a8f9-b4a3-4a52-9370-5c45a509ebec")
  2143. )
  2144. (instances
  2145. (project "AP3211KTR"
  2146. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  2147. (reference "D?")
  2148. (unit 1)
  2149. )
  2150. )
  2151. (project "AP3211KTR"
  2152. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  2153. (reference "D?")
  2154. (unit 1)
  2155. )
  2156. )
  2157. (project "AP3211KTR"
  2158. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  2159. (reference "D?")
  2160. (unit 1)
  2161. )
  2162. )
  2163. )
  2164. )
  2165. (symbol
  2166. (lib_id "global:FUSE")
  2167. (at 26.67 31.75 0)
  2168. (unit 1)
  2169. (exclude_from_sim no)
  2170. (in_bom yes)
  2171. (on_board yes)
  2172. (dnp no)
  2173. (fields_autoplaced yes)
  2174. (uuid "ec2dd0fb-7ede-4aed-994a-b60356ae27f2")
  2175. (property "Reference" "F?"
  2176. (at 26.67 24.13 0)
  2177. (effects
  2178. (font
  2179. (size 1.27 1.27)
  2180. )
  2181. )
  2182. )
  2183. (property "Value" "FUSE"
  2184. (at 26.67 26.67 0)
  2185. (effects
  2186. (font
  2187. (size 1.27 1.27)
  2188. )
  2189. )
  2190. )
  2191. (property "Footprint" "F:1812"
  2192. (at 26.67 31.75 0)
  2193. (effects
  2194. (font
  2195. (size 1.27 1.27)
  2196. )
  2197. (hide yes)
  2198. )
  2199. )
  2200. (property "Datasheet" ""
  2201. (at 26.67 31.75 0)
  2202. (effects
  2203. (font
  2204. (size 1.27 1.27)
  2205. )
  2206. )
  2207. )
  2208. (property "Description" ""
  2209. (at 26.67 31.75 0)
  2210. (effects
  2211. (font
  2212. (size 1.27 1.27)
  2213. )
  2214. (hide yes)
  2215. )
  2216. )
  2217. (property "Partkeepr" "1450"
  2218. (at 26.67 31.75 0)
  2219. (effects
  2220. (font
  2221. (size 1.27 1.27)
  2222. )
  2223. (hide yes)
  2224. )
  2225. )
  2226. (pin "1"
  2227. (uuid "0b168102-da15-4ab5-a3af-58c689f523f0")
  2228. )
  2229. (pin "2"
  2230. (uuid "3c7760df-f7ff-43d1-aab7-dfaeb61652e4")
  2231. )
  2232. (instances
  2233. (project "AP3211KTR"
  2234. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  2235. (reference "F?")
  2236. (unit 1)
  2237. )
  2238. )
  2239. (project "AP3211KTR"
  2240. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  2241. (reference "F?")
  2242. (unit 1)
  2243. )
  2244. )
  2245. (project "AP3211KTR"
  2246. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  2247. (reference "F?")
  2248. (unit 1)
  2249. )
  2250. )
  2251. )
  2252. )
  2253. (symbol
  2254. (lib_id "global:R")
  2255. (at 109.22 53.34 0)
  2256. (unit 1)
  2257. (exclude_from_sim no)
  2258. (in_bom yes)
  2259. (on_board yes)
  2260. (dnp no)
  2261. (fields_autoplaced yes)
  2262. (uuid "fa12c611-ac2e-4ec1-97a9-4f4fa838d897")
  2263. (property "Reference" "R?"
  2264. (at 111.76 52.0699 0)
  2265. (effects
  2266. (font
  2267. (size 1.27 1.27)
  2268. )
  2269. (justify left)
  2270. )
  2271. )
  2272. (property "Value" "16.3K"
  2273. (at 111.76 54.6099 0)
  2274. (effects
  2275. (font
  2276. (size 1.27 1.27)
  2277. )
  2278. (justify left)
  2279. )
  2280. )
  2281. (property "Footprint" "R:0805"
  2282. (at 107.442 53.34 90)
  2283. (effects
  2284. (font
  2285. (size 1.27 1.27)
  2286. )
  2287. (hide yes)
  2288. )
  2289. )
  2290. (property "Datasheet" ""
  2291. (at 109.22 53.34 0)
  2292. (effects
  2293. (font
  2294. (size 1.27 1.27)
  2295. )
  2296. )
  2297. )
  2298. (property "Description" ""
  2299. (at 109.22 53.34 0)
  2300. (effects
  2301. (font
  2302. (size 1.27 1.27)
  2303. )
  2304. (hide yes)
  2305. )
  2306. )
  2307. (property "Partkeepr" "0933"
  2308. (at 109.22 53.34 0)
  2309. (effects
  2310. (font
  2311. (size 1.27 1.27)
  2312. )
  2313. (hide yes)
  2314. )
  2315. )
  2316. (pin "1"
  2317. (uuid "19ad5732-89bc-4eb2-b35f-a863399af3b9")
  2318. )
  2319. (pin "2"
  2320. (uuid "e50c745b-b58c-43ee-a5cb-2f431044248a")
  2321. )
  2322. (instances
  2323. (project "AP3211KTR"
  2324. (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
  2325. (reference "R?")
  2326. (unit 1)
  2327. )
  2328. )
  2329. (project "AP3211KTR"
  2330. (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
  2331. (reference "R?")
  2332. (unit 1)
  2333. )
  2334. )
  2335. (project "AP3211KTR"
  2336. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  2337. (reference "R?")
  2338. (unit 1)
  2339. )
  2340. )
  2341. )
  2342. )
  2343. )