Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

jlc_schematics.kicad_sym 65KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767
  1. (kicad_symbol_lib (version 20210201) (generator TousstNicolas/JLC2KiCad_lib)
  2. (symbol "RP2040" (in_bom yes) (on_board yes)
  3. (property "Reference" "U" (id 0) (at 0 1.27 0)
  4. (effects (font (size 1.27 1.27)))
  5. )
  6. (property "Value" "RP2040" (id 1) (at 0 -2.54 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Footprint" "jlc_footprints:LQFN-56_L7.0-W7.0-P0.4-EP" (id 2) (at 0 -10.16 0)
  10. (effects (font (size 1.27 1.27) italic) hide)
  11. )
  12. (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20210621/C2040_96F425825606B7957D87DD32E2512CA9.pdf" (id 3) (at -2.286 0.127 0)
  13. (effects (font (size 1.27 1.27)) (justify left) hide)
  14. )
  15. (property "ki_keywords" "C2040" (id 4) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "LCSC" "C2040" (id 5) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (symbol "RP2040_0_1"
  22. (pin bidirectional line
  23. (at 31.750063500127002 17.78003556007112 180)
  24. (length 2.54000508001016)
  25. (name "GPIO7" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  26. (number "9" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  27. )
  28. (pin bidirectional line
  29. (at 31.750063500127002 20.32004064008128 180)
  30. (length 2.54000508001016)
  31. (name "GPIO6" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  32. (number "8" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  33. )
  34. (pin bidirectional line
  35. (at 31.750063500127002 22.860045720091442 180)
  36. (length 2.54000508001016)
  37. (name "GPIO5" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  38. (number "7" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  39. )
  40. (pin bidirectional line
  41. (at 31.750063500127002 25.400050800101603 180)
  42. (length 2.54000508001016)
  43. (name "GPIO4" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  44. (number "6" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  45. )
  46. (pin bidirectional line
  47. (at 0.0 -48.260096520193045 90)
  48. (length 2.54000508001016)
  49. (name "GND" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  50. (number "57" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  51. )
  52. (pin bidirectional line
  53. (at -31.750063500127002 34.29006858013716 0)
  54. (length 2.54000508001016)
  55. (name "QSPI_SS" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  56. (number "56" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  57. )
  58. (pin bidirectional line
  59. (at -31.750063500127002 27.94005588011176 0)
  60. (length 2.54000508001016)
  61. (name "QSPI_SD1" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  62. (number "55" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  63. )
  64. (pin bidirectional line
  65. (at -31.750063500127002 25.400050800101603 0)
  66. (length 2.54000508001016)
  67. (name "QSPI_SD2" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  68. (number "54" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  69. )
  70. (pin bidirectional line
  71. (at -31.750063500127002 30.48006096012192 0)
  72. (length 2.54000508001016)
  73. (name "QSPI_SD0" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  74. (number "53" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  75. )
  76. (pin output line
  77. (at -31.750063500127002 19.0500381000762 0)
  78. (length 2.54000508001016)
  79. (name "QSPI_SCLK" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  80. (number "52" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  81. )
  82. (pin bidirectional line
  83. (at -31.750063500127002 22.860045720091442 0)
  84. (length 2.54000508001016)
  85. (name "QSPI_SD3" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  86. (number "51" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  87. )
  88. (pin bidirectional line
  89. (at -20.32004064008128 53.34010668021336 270)
  90. (length 2.54000508001016)
  91. (name "DVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  92. (number "50" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  93. )
  94. (pin bidirectional line
  95. (at 31.750063500127002 27.94005588011176 180)
  96. (length 2.54000508001016)
  97. (name "GPIO3" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  98. (number "5" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  99. )
  100. (pin bidirectional line
  101. (at -3.81000762001524 53.34010668021336 270)
  102. (length 2.54000508001016)
  103. (name "IOVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  104. (number "49" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  105. )
  106. (pin bidirectional line
  107. (at 12.700025400050801 53.34010668021336 270)
  108. (length 2.54000508001016)
  109. (name "USB_VDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  110. (number "48" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  111. )
  112. (pin bidirectional line
  113. (at 31.750063500127002 45.720091440182884 180)
  114. (length 2.54000508001016)
  115. (name "USB_DP" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  116. (number "47" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  117. )
  118. (pin bidirectional line
  119. (at 31.750063500127002 43.18008636017272 180)
  120. (length 2.54000508001016)
  121. (name "USB_DM" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  122. (number "46" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  123. )
  124. (pin bidirectional line
  125. (at -12.700025400050801 53.34010668021336 270)
  126. (length 2.54000508001016)
  127. (name "VREG_VOUT" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  128. (number "45" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  129. )
  130. (pin bidirectional line
  131. (at -8.89001778003556 53.34010668021336 270)
  132. (length 2.54000508001016)
  133. (name "VREG_IN" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  134. (number "44" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  135. )
  136. (pin bidirectional line
  137. (at 16.51003302006604 53.34010668021336 270)
  138. (length 2.54000508001016)
  139. (name "ADC_AVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  140. (number "43" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  141. )
  142. (pin bidirectional line
  143. (at -1.27000254000508 53.34010668021336 270)
  144. (length 2.54000508001016)
  145. (name "IOVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  146. (number "42" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  147. )
  148. (pin bidirectional line
  149. (at 31.750063500127002 -40.64008128016256 180)
  150. (length 2.54000508001016)
  151. (name "GPIO29_ADC3" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  152. (number "41" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  153. )
  154. (pin bidirectional line
  155. (at 31.750063500127002 -38.1000762001524 180)
  156. (length 2.54000508001016)
  157. (name "GPIO28_ADC2" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  158. (number "40" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  159. )
  160. (pin bidirectional line
  161. (at 31.750063500127002 30.48006096012192 180)
  162. (length 2.54000508001016)
  163. (name "GPIO2" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  164. (number "4" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  165. )
  166. (pin bidirectional line
  167. (at 31.750063500127002 -35.56007112014224 180)
  168. (length 2.54000508001016)
  169. (name "GPIO27_ADC1" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  170. (number "39" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  171. )
  172. (pin bidirectional line
  173. (at 31.750063500127002 -33.02006604013208 180)
  174. (length 2.54000508001016)
  175. (name "GPIO26_ADC0" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  176. (number "38" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  177. )
  178. (pin bidirectional line
  179. (at 31.750063500127002 -27.94005588011176 180)
  180. (length 2.54000508001016)
  181. (name "GPIO25" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  182. (number "37" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  183. )
  184. (pin bidirectional line
  185. (at 31.750063500127002 -25.400050800101603 180)
  186. (length 2.54000508001016)
  187. (name "GPIO24" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  188. (number "36" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  189. )
  190. (pin bidirectional line
  191. (at 31.750063500127002 -22.860045720091442 180)
  192. (length 2.54000508001016)
  193. (name "GPIO23" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  194. (number "35" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  195. )
  196. (pin bidirectional line
  197. (at 31.750063500127002 -20.32004064008128 180)
  198. (length 2.54000508001016)
  199. (name "GPIO22" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  200. (number "34" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  201. )
  202. (pin bidirectional line
  203. (at 1.27000254000508 53.34010668021336 270)
  204. (length 2.54000508001016)
  205. (name "IOVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  206. (number "33" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  207. )
  208. (pin bidirectional line
  209. (at 31.750063500127002 -17.78003556007112 180)
  210. (length 2.54000508001016)
  211. (name "GPIO21" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  212. (number "32" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  213. )
  214. (pin bidirectional line
  215. (at 31.750063500127002 -15.24003048006096 180)
  216. (length 2.54000508001016)
  217. (name "GPIO20" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  218. (number "31" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  219. )
  220. (pin bidirectional line
  221. (at 31.750063500127002 -12.700025400050801 180)
  222. (length 2.54000508001016)
  223. (name "GPIO19" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  224. (number "30" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  225. )
  226. (pin bidirectional line
  227. (at 31.750063500127002 33.02006604013208 180)
  228. (length 2.54000508001016)
  229. (name "GPIO1" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  230. (number "3" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  231. )
  232. (pin bidirectional line
  233. (at 31.750063500127002 -10.16002032004064 180)
  234. (length 2.54000508001016)
  235. (name "GPIO18" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  236. (number "29" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  237. )
  238. (pin bidirectional line
  239. (at 31.750063500127002 -7.62001524003048 180)
  240. (length 2.54000508001016)
  241. (name "GPIO17" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  242. (number "28" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  243. )
  244. (pin bidirectional line
  245. (at 31.750063500127002 -5.08001016002032 180)
  246. (length 2.54000508001016)
  247. (name "GPIO16" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  248. (number "27" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  249. )
  250. (pin input line
  251. (at -31.750063500127002 -17.78003556007112 0)
  252. (length 2.54000508001016)
  253. (name "RUN" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  254. (number "26" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  255. )
  256. (pin bidirectional line
  257. (at -31.750063500127002 -31.750063500127002 0)
  258. (length 2.54000508001016)
  259. (name "SWD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  260. (number "25" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  261. )
  262. (pin output line
  263. (at -31.750063500127002 -29.21005842011684 0)
  264. (length 2.54000508001016)
  265. (name "SWCLK" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  266. (number "24" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  267. )
  268. (pin bidirectional line
  269. (at -17.78003556007112 53.34010668021336 270)
  270. (length 2.54000508001016)
  271. (name "DVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  272. (number "23" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  273. )
  274. (pin bidirectional line
  275. (at 3.81000762001524 53.34010668021336 270)
  276. (length 2.54000508001016)
  277. (name "IOVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  278. (number "22" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  279. )
  280. (pin unspecified line
  281. (at -31.750063500127002 -5.08001016002032 0)
  282. (length 2.54000508001016)
  283. (name "XOUT" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  284. (number "21" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  285. )
  286. (pin input line
  287. (at -31.750063500127002 -0.0 0)
  288. (length 2.54000508001016)
  289. (name "XIN" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  290. (number "20" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  291. )
  292. (pin bidirectional line
  293. (at 31.750063500127002 35.56007112014224 180)
  294. (length 2.54000508001016)
  295. (name "GPIO0" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  296. (number "2" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  297. )
  298. (pin unspecified line
  299. (at -12.700025400050801 -48.260096520193045 90)
  300. (length 2.54000508001016)
  301. (name "TESTEN" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  302. (number "19" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  303. )
  304. (pin bidirectional line
  305. (at 31.750063500127002 -2.54000508001016 180)
  306. (length 2.54000508001016)
  307. (name "GPIO15" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  308. (number "18" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  309. )
  310. (pin bidirectional line
  311. (at 31.750063500127002 -0.0 180)
  312. (length 2.54000508001016)
  313. (name "GPIO14" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  314. (number "17" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  315. )
  316. (pin bidirectional line
  317. (at 31.750063500127002 2.54000508001016 180)
  318. (length 2.54000508001016)
  319. (name "GPIO13" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  320. (number "16" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  321. )
  322. (pin bidirectional line
  323. (at 31.750063500127002 5.08001016002032 180)
  324. (length 2.54000508001016)
  325. (name "GPIO12" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  326. (number "15" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  327. )
  328. (pin bidirectional line
  329. (at 31.750063500127002 7.62001524003048 180)
  330. (length 2.54000508001016)
  331. (name "GPIO11" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  332. (number "14" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  333. )
  334. (pin bidirectional line
  335. (at 31.750063500127002 10.16002032004064 180)
  336. (length 2.54000508001016)
  337. (name "GPIO10" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  338. (number "13" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  339. )
  340. (pin bidirectional line
  341. (at 31.750063500127002 12.700025400050801 180)
  342. (length 2.54000508001016)
  343. (name "GPIO9" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  344. (number "12" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  345. )
  346. (pin bidirectional line
  347. (at 31.750063500127002 15.24003048006096 180)
  348. (length 2.54000508001016)
  349. (name "GPIO8" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  350. (number "11" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  351. )
  352. (pin bidirectional line
  353. (at 6.350012700025401 53.34010668021336 270)
  354. (length 2.54000508001016)
  355. (name "IOVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  356. (number "10" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  357. )
  358. (pin bidirectional line
  359. (at 8.89001778003556 53.34010668021336 270)
  360. (length 2.54000508001016)
  361. (name "IOVDD" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  362. (number "1" (effects (font (size 1.4732029464058929 1.4732029464058929))))
  363. )
  364. (text
  365. "RP2040"
  366. (at 0.0 2.54000508001016 1800.0)
  367. (effects (font (size 2.921005842011684 2.921005842011684)))
  368. )
  369. (text
  370. "Raspberry Pi"
  371. (at 0.0 7.62001524003048 1800.0)
  372. (effects (font (size 2.921005842011684 2.921005842011684)))
  373. )
  374. (rectangle
  375. (start -29.21005842011684 50.800101600203206)
  376. (end 29.21005842011684 -45.720091440182884)
  377. (stroke (width 0) (type default) (color 0 0 0 0))
  378. (fill (type background))
  379. )
  380. )
  381. )
  382. (symbol "W25Q128JVSIQ" (in_bom yes) (on_board yes)
  383. (property "Reference" "U" (id 0) (at 0 1.27 0)
  384. (effects (font (size 1.27 1.27)))
  385. )
  386. (property "Value" "W25Q128JVSIQ" (id 1) (at 0 -2.54 0)
  387. (effects (font (size 1.27 1.27)))
  388. )
  389. (property "Footprint" "jlc_footprints:SOIC-8_L5.3-W5.3-P1.27-LS8.0-BL" (id 2) (at 0 -10.16 0)
  390. (effects (font (size 1.27 1.27) italic) hide)
  391. )
  392. (property "Datasheet" "https://item.szlcsc.com/63461.html" (id 3) (at -2.286 0.127 0)
  393. (effects (font (size 1.27 1.27)) (justify left) hide)
  394. )
  395. (property "ki_keywords" "C113767" (id 4) (at 0 0 0)
  396. (effects (font (size 1.27 1.27)) hide)
  397. )
  398. (property "LCSC" "C113767" (id 5) (at 0 0 0)
  399. (effects (font (size 1.27 1.27)) hide)
  400. )
  401. (symbol "W25Q128JVSIQ_0_1"
  402. (rectangle
  403. (start -24.130048260096522 6.350012700025401)
  404. (end 24.130048260096522 -6.350012700025401)
  405. (stroke (width 0) (type default) (color 0 0 0 0))
  406. (fill (type background))
  407. )
  408. (circle
  409. (center -22.860045720091442 5.08001016002032)
  410. (radius 0.381000762001524)
  411. (stroke (width 0) (type default) (color 0 0 0 0))
  412. (fill (type background))
  413. )
  414. (pin unspecified line
  415. (at -26.67005334010668 3.81000762001524 0)
  416. (length 2.54000508001016)
  417. (name "CS#" (effects (font (size 1 1))))
  418. (number "1" (effects (font (size 1 1))))
  419. )
  420. (pin unspecified line
  421. (at -26.67005334010668 1.27000254000508 0)
  422. (length 2.54000508001016)
  423. (name "DO(IO1)" (effects (font (size 1 1))))
  424. (number "2" (effects (font (size 1 1))))
  425. )
  426. (pin unspecified line
  427. (at -26.67005334010668 -1.27000254000508 0)
  428. (length 2.54000508001016)
  429. (name "WP#(IO2)" (effects (font (size 1 1))))
  430. (number "3" (effects (font (size 1 1))))
  431. )
  432. (pin unspecified line
  433. (at -26.67005334010668 -3.81000762001524 0)
  434. (length 2.54000508001016)
  435. (name "GND" (effects (font (size 1 1))))
  436. (number "4" (effects (font (size 1 1))))
  437. )
  438. (pin unspecified line
  439. (at 26.67005334010668 -3.81000762001524 180)
  440. (length 2.54000508001016)
  441. (name "DI(IO0)" (effects (font (size 1 1))))
  442. (number "5" (effects (font (size 1 1))))
  443. )
  444. (pin unspecified line
  445. (at 26.67005334010668 -1.27000254000508 180)
  446. (length 2.54000508001016)
  447. (name "CLK" (effects (font (size 1 1))))
  448. (number "6" (effects (font (size 1 1))))
  449. )
  450. (pin unspecified line
  451. (at 26.67005334010668 1.27000254000508 180)
  452. (length 2.54000508001016)
  453. (name "HOLD#orRESET#(IO3)" (effects (font (size 1 1))))
  454. (number "7" (effects (font (size 1 1))))
  455. )
  456. (pin unspecified line
  457. (at 26.67005334010668 3.81000762001524 180)
  458. (length 2.54000508001016)
  459. (name "VCC" (effects (font (size 1 1))))
  460. (number "8" (effects (font (size 1 1))))
  461. )
  462. )
  463. )
  464. (symbol "NCP1117ST33T3G" (in_bom yes) (on_board yes)
  465. (property "Reference" "U" (id 0) (at 0 1.27 0)
  466. (effects (font (size 1.27 1.27)))
  467. )
  468. (property "Value" "NCP1117ST33T3G" (id 1) (at 0 -2.54 0)
  469. (effects (font (size 1.27 1.27)))
  470. )
  471. (property "Footprint" "jlc_footprints:SOT-223-3_L6.5-W3.4-P2.30-LS7.0-BR" (id 2) (at 0 -10.16 0)
  472. (effects (font (size 1.27 1.27) italic) hide)
  473. )
  474. (property "Datasheet" "https://item.szlcsc.com/410724.html" (id 3) (at -2.286 0.127 0)
  475. (effects (font (size 1.27 1.27)) (justify left) hide)
  476. )
  477. (property "ki_keywords" "C26537" (id 4) (at 0 0 0)
  478. (effects (font (size 1.27 1.27)) hide)
  479. )
  480. (property "LCSC" "C26537" (id 5) (at 0 0 0)
  481. (effects (font (size 1.27 1.27)) hide)
  482. )
  483. (symbol "NCP1117ST33T3G_0_1"
  484. (rectangle
  485. (start -7.62001524003048 6.350012700025401)
  486. (end 7.62001524003048 -6.350012700025401)
  487. (stroke (width 0) (type default) (color 0 0 0 0))
  488. (fill (type background))
  489. )
  490. (circle
  491. (center -6.350012700025401 5.08001016002032)
  492. (radius 0.381000762001524)
  493. (stroke (width 0) (type default) (color 0 0 0 0))
  494. (fill (type background))
  495. )
  496. (pin unspecified line
  497. (at -10.16002032004064 3.81000762001524 0)
  498. (length 2.54000508001016)
  499. (name "ADJ/GND" (effects (font (size 1 1))))
  500. (number "1" (effects (font (size 1 1))))
  501. )
  502. (pin unspecified line
  503. (at -10.16002032004064 1.27000254000508 0)
  504. (length 2.54000508001016)
  505. (name "OUTPUT" (effects (font (size 1 1))))
  506. (number "2" (effects (font (size 1 1))))
  507. )
  508. (pin unspecified line
  509. (at -10.16002032004064 -1.27000254000508 0)
  510. (length 2.54000508001016)
  511. (name "INPUT" (effects (font (size 1 1))))
  512. (number "3" (effects (font (size 1 1))))
  513. )
  514. (pin unspecified line
  515. (at -10.16002032004064 -3.81000762001524 0)
  516. (length 2.54000508001016)
  517. (name "TAB" (effects (font (size 1 1))))
  518. (number "4" (effects (font (size 1 1))))
  519. )
  520. )
  521. )
  522. (symbol "SS54_C22452" (pin_names hide) (in_bom yes) (on_board yes)
  523. (property "Reference" "U" (id 0) (at 0 1.27 0)
  524. (effects (font (size 1.27 1.27)))
  525. )
  526. (property "Value" "SS54_C22452" (id 1) (at 0 -2.54 0)
  527. (effects (font (size 1.27 1.27)))
  528. )
  529. (property "Footprint" "jlc_footprints:SMA_L4.4-W2.8-LS5.4-R-RD" (id 2) (at 0 -10.16 0)
  530. (effects (font (size 1.27 1.27) italic) hide)
  531. )
  532. (property "Datasheet" "https://item.szlcsc.com/310096.html" (id 3) (at -2.286 0.127 0)
  533. (effects (font (size 1.27 1.27)) (justify left) hide)
  534. )
  535. (property "ki_keywords" "C22452" (id 4) (at 0 0 0)
  536. (effects (font (size 1.27 1.27)) hide)
  537. )
  538. (property "LCSC" "C22452" (id 5) (at 0 0 0)
  539. (effects (font (size 1.27 1.27)) hide)
  540. )
  541. (symbol "SS54_C22452_0_1"
  542. (pin unspecified line
  543. (at 5.08001016002032 -0.0 180)
  544. (length 3.81000762001524)
  545. (name "A" (effects (font (size 1 1))))
  546. (number "1" (effects (font (size 1 1))))
  547. )
  548. (pin unspecified line
  549. (at -5.08001016002032 -0.0 0)
  550. (length 3.81000762001524)
  551. (name "K" (effects (font (size 1 1))))
  552. (number "2" (effects (font (size 1 1))))
  553. )
  554. (polyline
  555. (pts
  556. (xy -2.0320040640081283 1.524003048006096)
  557. (xy -2.0320040640081283 1.7780035560071121)
  558. (xy -1.524003048006096 1.7780035560071121)
  559. (xy -1.524003048006096 -2.0320040640081283)
  560. (xy -1.0160020320040641 -2.0320040640081283)
  561. (xy -1.0160020320040641 -1.7780035560071121)
  562. )
  563. (stroke (width 0) (type default) (color 0 0 0 0))
  564. (fill (type none))
  565. )
  566. (polyline
  567. (pts
  568. (xy 1.27000254000508 1.524003048006096)
  569. (xy -1.27000254000508 -0.0)
  570. (xy 1.27000254000508 -1.7780035560071121)
  571. (xy 1.27000254000508 1.524003048006096)
  572. )
  573. (stroke (width 0) (type default) (color 0 0 0 0))
  574. (fill (type background))
  575. )
  576. )
  577. )
  578. (symbol "TJA1042T_3_1J" (in_bom yes) (on_board yes)
  579. (property "Reference" "U" (id 0) (at 0 1.27 0)
  580. (effects (font (size 1.27 1.27)))
  581. )
  582. (property "Value" "TJA1042T_3_1J" (id 1) (at 0 -2.54 0)
  583. (effects (font (size 1.27 1.27)))
  584. )
  585. (property "Footprint" "jlc_footprints:SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL" (id 2) (at 0 -10.16 0)
  586. (effects (font (size 1.27 1.27) italic) hide)
  587. )
  588. (property "Datasheet" "https://item.szlcsc.com/417287.html" (id 3) (at -2.286 0.127 0)
  589. (effects (font (size 1.27 1.27)) (justify left) hide)
  590. )
  591. (property "ki_keywords" "C132227" (id 4) (at 0 0 0)
  592. (effects (font (size 1.27 1.27)) hide)
  593. )
  594. (property "LCSC" "C132227" (id 5) (at 0 0 0)
  595. (effects (font (size 1.27 1.27)) hide)
  596. )
  597. (symbol "TJA1042T_3_1J_0_1"
  598. (rectangle
  599. (start -10.16002032004064 6.350012700025401)
  600. (end 10.16002032004064 -6.350012700025401)
  601. (stroke (width 0) (type default) (color 0 0 0 0))
  602. (fill (type background))
  603. )
  604. (circle
  605. (center -8.89001778003556 5.08001016002032)
  606. (radius 0.381000762001524)
  607. (stroke (width 0) (type default) (color 0 0 0 0))
  608. (fill (type background))
  609. )
  610. (pin unspecified line
  611. (at -12.700025400050801 3.81000762001524 0)
  612. (length 2.54000508001016)
  613. (name "TXD" (effects (font (size 1 1))))
  614. (number "1" (effects (font (size 1 1))))
  615. )
  616. (pin unspecified line
  617. (at -12.700025400050801 1.27000254000508 0)
  618. (length 2.54000508001016)
  619. (name "GND" (effects (font (size 1 1))))
  620. (number "2" (effects (font (size 1 1))))
  621. )
  622. (pin unspecified line
  623. (at -12.700025400050801 -1.27000254000508 0)
  624. (length 2.54000508001016)
  625. (name "VCC" (effects (font (size 1 1))))
  626. (number "3" (effects (font (size 1 1))))
  627. )
  628. (pin unspecified line
  629. (at -12.700025400050801 -3.81000762001524 0)
  630. (length 2.54000508001016)
  631. (name "RXD" (effects (font (size 1 1))))
  632. (number "4" (effects (font (size 1 1))))
  633. )
  634. (pin unspecified line
  635. (at 12.700025400050801 -3.81000762001524 180)
  636. (length 2.54000508001016)
  637. (name "VIO" (effects (font (size 1 1))))
  638. (number "5" (effects (font (size 1 1))))
  639. )
  640. (pin unspecified line
  641. (at 12.700025400050801 -1.27000254000508 180)
  642. (length 2.54000508001016)
  643. (name "CANL" (effects (font (size 1 1))))
  644. (number "6" (effects (font (size 1 1))))
  645. )
  646. (pin unspecified line
  647. (at 12.700025400050801 1.27000254000508 180)
  648. (length 2.54000508001016)
  649. (name "CANH" (effects (font (size 1 1))))
  650. (number "7" (effects (font (size 1 1))))
  651. )
  652. (pin unspecified line
  653. (at 12.700025400050801 3.81000762001524 180)
  654. (length 2.54000508001016)
  655. (name "STB" (effects (font (size 1 1))))
  656. (number "8" (effects (font (size 1 1))))
  657. )
  658. )
  659. )
  660. (symbol "DS1129-05-S80BP-X" (pin_names hide) (in_bom yes) (on_board yes)
  661. (property "Reference" "U" (id 0) (at 0 1.27 0)
  662. (effects (font (size 1.27 1.27)))
  663. )
  664. (property "Value" "DS1129-05-S80BP-X" (id 1) (at 0 -2.54 0)
  665. (effects (font (size 1.27 1.27)))
  666. )
  667. (property "Footprint" "jlc_footprints:RJ45-TH_DS1129-05-S80BP-X" (id 2) (at 0 -10.16 0)
  668. (effects (font (size 1.27 1.27) italic) hide)
  669. )
  670. (property "Datasheet" "https://item.szlcsc.com/87757.html" (id 3) (at -2.286 0.127 0)
  671. (effects (font (size 1.27 1.27)) (justify left) hide)
  672. )
  673. (property "ki_keywords" "C86580" (id 4) (at 0 0 0)
  674. (effects (font (size 1.27 1.27)) hide)
  675. )
  676. (property "LCSC" "C86580" (id 5) (at 0 0 0)
  677. (effects (font (size 1.27 1.27)) hide)
  678. )
  679. (symbol "DS1129-05-S80BP-X_1_1"
  680. (rectangle
  681. (start -10.16002032004064 11.430022860045721)
  682. (end 10.16002032004064 -7.62001524003048)
  683. (stroke (width 0) (type default) (color 0 0 0 0))
  684. (fill (type background))
  685. )
  686. (polyline
  687. (pts
  688. (xy -4.3180086360172725 5.08001016002032)
  689. (xy -4.3180086360172725 6.350012700025401)
  690. (xy -4.3180086360172725 6.350012700025401)
  691. )
  692. (stroke (width 0) (type default) (color 0 0 0 0))
  693. (fill (type none))
  694. )
  695. (polyline
  696. (pts
  697. (xy -3.048006096012192 6.350012700025401)
  698. (xy -3.048006096012192 5.08001016002032)
  699. (xy -3.048006096012192 5.08001016002032)
  700. )
  701. (stroke (width 0) (type default) (color 0 0 0 0))
  702. (fill (type none))
  703. )
  704. (polyline
  705. (pts
  706. (xy -1.7780035560071121 6.350012700025401)
  707. (xy -1.7780035560071121 5.08001016002032)
  708. (xy -1.7780035560071121 5.08001016002032)
  709. )
  710. (stroke (width 0) (type default) (color 0 0 0 0))
  711. (fill (type none))
  712. )
  713. (polyline
  714. (pts
  715. (xy -0.5080010160020321 6.350012700025401)
  716. (xy -0.5080010160020321 5.08001016002032)
  717. (xy -0.5080010160020321 5.08001016002032)
  718. )
  719. (stroke (width 0) (type default) (color 0 0 0 0))
  720. (fill (type none))
  721. )
  722. (polyline
  723. (pts
  724. (xy 0.762001524003048 6.350012700025401)
  725. (xy 0.762001524003048 5.08001016002032)
  726. (xy 0.762001524003048 5.08001016002032)
  727. )
  728. (stroke (width 0) (type default) (color 0 0 0 0))
  729. (fill (type none))
  730. )
  731. (polyline
  732. (pts
  733. (xy 2.0320040640081283 6.350012700025401)
  734. (xy 2.0320040640081283 5.08001016002032)
  735. (xy 2.0320040640081283 5.08001016002032)
  736. )
  737. (stroke (width 0) (type default) (color 0 0 0 0))
  738. (fill (type none))
  739. )
  740. (polyline
  741. (pts
  742. (xy 3.3020066040132083 5.08001016002032)
  743. (xy 3.3020066040132083 6.350012700025401)
  744. (xy 3.3020066040132083 6.350012700025401)
  745. )
  746. (stroke (width 0) (type default) (color 0 0 0 0))
  747. (fill (type none))
  748. )
  749. (polyline
  750. (pts
  751. (xy 4.572009144018288 5.08001016002032)
  752. (xy 4.572009144018288 6.350012700025401)
  753. (xy 4.572009144018288 6.350012700025401)
  754. )
  755. (stroke (width 0) (type default) (color 0 0 0 0))
  756. (fill (type none))
  757. )
  758. (polyline
  759. (pts
  760. (xy -5.588011176022352 6.350012700025401)
  761. (xy 5.842011684023368 6.350012700025401)
  762. (xy 5.842011684023368 -3.81000762001524)
  763. (xy 3.3020066040132083 -3.81000762001524)
  764. (xy 3.3020066040132083 -5.08001016002032)
  765. (xy 2.0320040640081283 -5.08001016002032)
  766. (xy 2.0320040640081283 -6.350012700025401)
  767. (xy -1.7780035560071121 -6.350012700025401)
  768. (xy -1.7780035560071121 -5.08001016002032)
  769. (xy -3.048006096012192 -5.08001016002032)
  770. (xy -3.048006096012192 -3.81000762001524)
  771. (xy -5.588011176022352 -3.81000762001524)
  772. (xy -5.588011176022352 6.350012700025401)
  773. (xy -5.588011176022352 6.350012700025401)
  774. )
  775. (stroke (width 0) (type default) (color 0 0 0 0))
  776. (fill (type none))
  777. )
  778. (pin unspecified line
  779. (at -8.89001778003556 -11.430022860045721 90)
  780. (length 3.81000762001524)
  781. (name "1" (effects (font (size 1 1))))
  782. (number "1" (effects (font (size 1 1))))
  783. )
  784. (pin unspecified line
  785. (at -6.350012700025401 -11.430022860045721 90)
  786. (length 3.81000762001524)
  787. (name "2" (effects (font (size 1 1))))
  788. (number "2" (effects (font (size 1 1))))
  789. )
  790. (pin unspecified line
  791. (at -3.81000762001524 -11.430022860045721 90)
  792. (length 3.81000762001524)
  793. (name "3" (effects (font (size 1 1))))
  794. (number "3" (effects (font (size 1 1))))
  795. )
  796. (pin unspecified line
  797. (at -1.27000254000508 -11.430022860045721 90)
  798. (length 3.81000762001524)
  799. (name "4" (effects (font (size 1 1))))
  800. (number "4" (effects (font (size 1 1))))
  801. )
  802. (pin unspecified line
  803. (at 1.27000254000508 -11.430022860045721 90)
  804. (length 3.81000762001524)
  805. (name "5" (effects (font (size 1 1))))
  806. (number "5" (effects (font (size 1 1))))
  807. )
  808. (pin unspecified line
  809. (at 3.81000762001524 -11.430022860045721 90)
  810. (length 3.81000762001524)
  811. (name "6" (effects (font (size 1 1))))
  812. (number "6" (effects (font (size 1 1))))
  813. )
  814. (pin unspecified line
  815. (at 6.350012700025401 -11.430022860045721 90)
  816. (length 3.81000762001524)
  817. (name "7" (effects (font (size 1 1))))
  818. (number "7" (effects (font (size 1 1))))
  819. )
  820. (pin unspecified line
  821. (at 8.89001778003556 -11.430022860045721 90)
  822. (length 3.81000762001524)
  823. (name "8" (effects (font (size 1 1))))
  824. (number "8" (effects (font (size 1 1))))
  825. )
  826. (pin unspecified line
  827. (at 15.24003048006096 8.89001778003556 180)
  828. (length 5.08001016002032)
  829. (name "18" (effects (font (size 1 1))))
  830. (number "18" (effects (font (size 1 1))))
  831. )
  832. (pin unspecified line
  833. (at -15.24003048006096 8.89001778003556 0)
  834. (length 5.08001016002032)
  835. (name "17" (effects (font (size 1 1))))
  836. (number "17" (effects (font (size 1 1))))
  837. )
  838. )
  839. (symbol "DS1129-05-S80BP-X_2_1"
  840. (rectangle
  841. (start -10.16002032004064 11.430022860045721)
  842. (end 10.16002032004064 -7.62001524003048)
  843. (stroke (width 0) (type default) (color 0 0 0 0))
  844. (fill (type background))
  845. )
  846. (polyline
  847. (pts
  848. (xy -4.3180086360172725 5.08001016002032)
  849. (xy -4.3180086360172725 6.350012700025401)
  850. (xy -4.3180086360172725 6.350012700025401)
  851. )
  852. (stroke (width 0) (type default) (color 0 0 0 0))
  853. (fill (type none))
  854. )
  855. (polyline
  856. (pts
  857. (xy -3.048006096012192 6.350012700025401)
  858. (xy -3.048006096012192 5.08001016002032)
  859. (xy -3.048006096012192 5.08001016002032)
  860. )
  861. (stroke (width 0) (type default) (color 0 0 0 0))
  862. (fill (type none))
  863. )
  864. (polyline
  865. (pts
  866. (xy -1.7780035560071121 6.350012700025401)
  867. (xy -1.7780035560071121 5.08001016002032)
  868. (xy -1.7780035560071121 5.08001016002032)
  869. )
  870. (stroke (width 0) (type default) (color 0 0 0 0))
  871. (fill (type none))
  872. )
  873. (polyline
  874. (pts
  875. (xy -0.5080010160020321 6.350012700025401)
  876. (xy -0.5080010160020321 5.08001016002032)
  877. (xy -0.5080010160020321 5.08001016002032)
  878. )
  879. (stroke (width 0) (type default) (color 0 0 0 0))
  880. (fill (type none))
  881. )
  882. (polyline
  883. (pts
  884. (xy 0.762001524003048 6.350012700025401)
  885. (xy 0.762001524003048 5.08001016002032)
  886. (xy 0.762001524003048 5.08001016002032)
  887. )
  888. (stroke (width 0) (type default) (color 0 0 0 0))
  889. (fill (type none))
  890. )
  891. (polyline
  892. (pts
  893. (xy 2.0320040640081283 6.350012700025401)
  894. (xy 2.0320040640081283 5.08001016002032)
  895. (xy 2.0320040640081283 5.08001016002032)
  896. )
  897. (stroke (width 0) (type default) (color 0 0 0 0))
  898. (fill (type none))
  899. )
  900. (polyline
  901. (pts
  902. (xy 3.3020066040132083 5.08001016002032)
  903. (xy 3.3020066040132083 6.350012700025401)
  904. (xy 3.3020066040132083 6.350012700025401)
  905. )
  906. (stroke (width 0) (type default) (color 0 0 0 0))
  907. (fill (type none))
  908. )
  909. (polyline
  910. (pts
  911. (xy 4.572009144018288 5.08001016002032)
  912. (xy 4.572009144018288 6.350012700025401)
  913. (xy 4.572009144018288 6.350012700025401)
  914. )
  915. (stroke (width 0) (type default) (color 0 0 0 0))
  916. (fill (type none))
  917. )
  918. (polyline
  919. (pts
  920. (xy -5.588011176022352 6.350012700025401)
  921. (xy 5.842011684023368 6.350012700025401)
  922. (xy 5.842011684023368 -3.81000762001524)
  923. (xy 3.3020066040132083 -3.81000762001524)
  924. (xy 3.3020066040132083 -5.08001016002032)
  925. (xy 2.0320040640081283 -5.08001016002032)
  926. (xy 2.0320040640081283 -6.350012700025401)
  927. (xy -1.7780035560071121 -6.350012700025401)
  928. (xy -1.7780035560071121 -5.08001016002032)
  929. (xy -3.048006096012192 -5.08001016002032)
  930. (xy -3.048006096012192 -3.81000762001524)
  931. (xy -5.588011176022352 -3.81000762001524)
  932. (xy -5.588011176022352 6.350012700025401)
  933. (xy -5.588011176022352 6.350012700025401)
  934. )
  935. (stroke (width 0) (type default) (color 0 0 0 0))
  936. (fill (type none))
  937. )
  938. (pin unspecified line
  939. (at -8.89001778003556 -11.430022860045721 90)
  940. (length 3.81000762001524)
  941. (name "9" (effects (font (size 1 1))))
  942. (number "9" (effects (font (size 1 1))))
  943. )
  944. (pin unspecified line
  945. (at -6.350012700025401 -11.430022860045721 90)
  946. (length 3.81000762001524)
  947. (name "10" (effects (font (size 1 1))))
  948. (number "10" (effects (font (size 1 1))))
  949. )
  950. (pin unspecified line
  951. (at -3.81000762001524 -11.430022860045721 90)
  952. (length 3.81000762001524)
  953. (name "11" (effects (font (size 1 1))))
  954. (number "11" (effects (font (size 1 1))))
  955. )
  956. (pin unspecified line
  957. (at -1.27000254000508 -11.430022860045721 90)
  958. (length 3.81000762001524)
  959. (name "12" (effects (font (size 1 1))))
  960. (number "12" (effects (font (size 1 1))))
  961. )
  962. (pin unspecified line
  963. (at 1.27000254000508 -11.430022860045721 90)
  964. (length 3.81000762001524)
  965. (name "13" (effects (font (size 1 1))))
  966. (number "13" (effects (font (size 1 1))))
  967. )
  968. (pin unspecified line
  969. (at 3.81000762001524 -11.430022860045721 90)
  970. (length 3.81000762001524)
  971. (name "14" (effects (font (size 1 1))))
  972. (number "14" (effects (font (size 1 1))))
  973. )
  974. (pin unspecified line
  975. (at 6.350012700025401 -11.430022860045721 90)
  976. (length 3.81000762001524)
  977. (name "15" (effects (font (size 1 1))))
  978. (number "15" (effects (font (size 1 1))))
  979. )
  980. (pin unspecified line
  981. (at 8.89001778003556 -11.430022860045721 90)
  982. (length 3.81000762001524)
  983. (name "16" (effects (font (size 1 1))))
  984. (number "16" (effects (font (size 1 1))))
  985. )
  986. (pin unspecified line
  987. (at -15.24003048006096 8.89001778003556 0)
  988. (length 5.08001016002032)
  989. (name "19" (effects (font (size 1 1))))
  990. (number "19" (effects (font (size 1 1))))
  991. )
  992. )
  993. )
  994. (symbol "LM2576S-5_0_TR" (in_bom yes) (on_board yes)
  995. (property "Reference" "U" (id 0) (at 0 1.27 0)
  996. (effects (font (size 1.27 1.27)))
  997. )
  998. (property "Value" "LM2576S-5_0_TR" (id 1) (at 0 -2.54 0)
  999. (effects (font (size 1.27 1.27)))
  1000. )
  1001. (property "Footprint" "jlc_footprints:TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR" (id 2) (at 0 -10.16 0)
  1002. (effects (font (size 1.27 1.27) italic) hide)
  1003. )
  1004. (property "Datasheet" "https://item.szlcsc.com/139878.html" (id 3) (at -2.286 0.127 0)
  1005. (effects (font (size 1.27 1.27)) (justify left) hide)
  1006. )
  1007. (property "ki_keywords" "C194472" (id 4) (at 0 0 0)
  1008. (effects (font (size 1.27 1.27)) hide)
  1009. )
  1010. (property "LCSC" "C194472" (id 5) (at 0 0 0)
  1011. (effects (font (size 1.27 1.27)) hide)
  1012. )
  1013. (symbol "LM2576S-5_0_TR_0_1"
  1014. (rectangle
  1015. (start -10.16002032004064 7.62001524003048)
  1016. (end 10.16002032004064 -7.62001524003048)
  1017. (stroke (width 0) (type default) (color 0 0 0 0))
  1018. (fill (type background))
  1019. )
  1020. (pin unspecified line
  1021. (at 15.24003048006096 -0.0 180)
  1022. (length 5.08001016002032)
  1023. (name "FB" (effects (font (size 1 1))))
  1024. (number "4" (effects (font (size 1 1))))
  1025. )
  1026. (pin power_in line
  1027. (at -15.24003048006096 5.08001016002032 0)
  1028. (length 5.08001016002032)
  1029. (name "VIN" (effects (font (size 1 1))))
  1030. (number "1" (effects (font (size 1 1))))
  1031. )
  1032. (pin unspecified line
  1033. (at -15.24003048006096 -0.0 0)
  1034. (length 5.08001016002032)
  1035. (name "ON#/OFF" (effects (font (size 1 1))))
  1036. (number "5" (effects (font (size 1 1))))
  1037. )
  1038. (pin power_in line
  1039. (at -15.24003048006096 -5.08001016002032 0)
  1040. (length 5.08001016002032)
  1041. (name "GND" (effects (font (size 1 1))))
  1042. (number "3" (effects (font (size 1 1))))
  1043. )
  1044. (pin power_in line
  1045. (at 15.24003048006096 -5.08001016002032 180)
  1046. (length 5.08001016002032)
  1047. (name "TAB" (effects (font (size 1 1))))
  1048. (number "6" (effects (font (size 1 1))))
  1049. )
  1050. (pin power_in line
  1051. (at 15.24003048006096 5.08001016002032 180)
  1052. (length 5.08001016002032)
  1053. (name "OUT" (effects (font (size 1 1))))
  1054. (number "2" (effects (font (size 1 1))))
  1055. )
  1056. )
  1057. )
  1058. (symbol "105450-0101" (in_bom yes) (on_board yes)
  1059. (property "Reference" "U" (id 0) (at 0 1.27 0)
  1060. (effects (font (size 1.27 1.27)))
  1061. )
  1062. (property "Value" "105450-0101" (id 1) (at 0 -2.54 0)
  1063. (effects (font (size 1.27 1.27)))
  1064. )
  1065. (property "Footprint" "jlc_footprints:USB-C-SMD_TYPE-C-USB-18" (id 2) (at 0 -10.16 0)
  1066. (effects (font (size 1.27 1.27) italic) hide)
  1067. )
  1068. (property "Datasheet" "https://item.szlcsc.com/145400.html" (id 3) (at -2.286 0.127 0)
  1069. (effects (font (size 1.27 1.27)) (justify left) hide)
  1070. )
  1071. (property "ki_keywords" "C134092" (id 4) (at 0 0 0)
  1072. (effects (font (size 1.27 1.27)) hide)
  1073. )
  1074. (property "LCSC" "C134092" (id 5) (at 0 0 0)
  1075. (effects (font (size 1.27 1.27)) hide)
  1076. )
  1077. (symbol "105450-0101_0_1"
  1078. (rectangle
  1079. (start -8.89001778003556 16.51003302006604)
  1080. (end 8.89001778003556 -16.51003302006604)
  1081. (stroke (width 0) (type default) (color 0 0 0 0))
  1082. (fill (type background))
  1083. )
  1084. (circle
  1085. (center -7.62001524003048 15.24003048006096)
  1086. (radius 0.381000762001524)
  1087. (stroke (width 0) (type default) (color 0 0 0 0))
  1088. (fill (type background))
  1089. )
  1090. (pin unspecified line
  1091. (at -11.430022860045721 13.97002794005588 0)
  1092. (length 2.54000508001016)
  1093. (name "GND" (effects (font (size 1 1))))
  1094. (number "B1" (effects (font (size 1 1))))
  1095. )
  1096. (pin unspecified line
  1097. (at -11.430022860045721 11.430022860045721 0)
  1098. (length 2.54000508001016)
  1099. (name "TX2+" (effects (font (size 1 1))))
  1100. (number "B2" (effects (font (size 1 1))))
  1101. )
  1102. (pin unspecified line
  1103. (at -11.430022860045721 8.89001778003556 0)
  1104. (length 2.54000508001016)
  1105. (name "TX2-" (effects (font (size 1 1))))
  1106. (number "B3" (effects (font (size 1 1))))
  1107. )
  1108. (pin unspecified line
  1109. (at -11.430022860045721 6.350012700025401 0)
  1110. (length 2.54000508001016)
  1111. (name "VBUS" (effects (font (size 1 1))))
  1112. (number "B4" (effects (font (size 1 1))))
  1113. )
  1114. (pin unspecified line
  1115. (at -11.430022860045721 3.81000762001524 0)
  1116. (length 2.54000508001016)
  1117. (name "CC2" (effects (font (size 1 1))))
  1118. (number "B5" (effects (font (size 1 1))))
  1119. )
  1120. (pin unspecified line
  1121. (at -11.430022860045721 1.27000254000508 0)
  1122. (length 2.54000508001016)
  1123. (name "D+" (effects (font (size 1 1))))
  1124. (number "B6" (effects (font (size 1 1))))
  1125. )
  1126. (pin unspecified line
  1127. (at -11.430022860045721 -1.27000254000508 0)
  1128. (length 2.54000508001016)
  1129. (name "D-" (effects (font (size 1 1))))
  1130. (number "B7" (effects (font (size 1 1))))
  1131. )
  1132. (pin unspecified line
  1133. (at -11.430022860045721 -3.81000762001524 0)
  1134. (length 2.54000508001016)
  1135. (name "SBU2" (effects (font (size 1 1))))
  1136. (number "B8" (effects (font (size 1 1))))
  1137. )
  1138. (pin unspecified line
  1139. (at -11.430022860045721 -6.350012700025401 0)
  1140. (length 2.54000508001016)
  1141. (name "VBUS" (effects (font (size 1 1))))
  1142. (number "B9" (effects (font (size 1 1))))
  1143. )
  1144. (pin unspecified line
  1145. (at -11.430022860045721 -8.89001778003556 0)
  1146. (length 2.54000508001016)
  1147. (name "RX1-" (effects (font (size 1 1))))
  1148. (number "B10" (effects (font (size 1 1))))
  1149. )
  1150. (pin unspecified line
  1151. (at -11.430022860045721 -11.430022860045721 0)
  1152. (length 2.54000508001016)
  1153. (name "RX1+" (effects (font (size 1 1))))
  1154. (number "B11" (effects (font (size 1 1))))
  1155. )
  1156. (pin unspecified line
  1157. (at -11.430022860045721 -13.97002794005588 0)
  1158. (length 2.54000508001016)
  1159. (name "GND" (effects (font (size 1 1))))
  1160. (number "B12" (effects (font (size 1 1))))
  1161. )
  1162. (pin unspecified line
  1163. (at -1.27000254000508 21.59004318008636 270)
  1164. (length 5.08001016002032)
  1165. (name "0" (effects (font (size 1 1))))
  1166. (number "0" (effects (font (size 1 1))))
  1167. )
  1168. (pin unspecified line
  1169. (at 1.27000254000508 21.59004318008636 270)
  1170. (length 5.08001016002032)
  1171. (name "25" (effects (font (size 1 1))))
  1172. (number "0" (effects (font (size 1 1))))
  1173. )
  1174. (pin unspecified line
  1175. (at -1.27000254000508 -21.59004318008636 90)
  1176. (length 5.08001016002032)
  1177. (name "0" (effects (font (size 1 1))))
  1178. (number "0" (effects (font (size 1 1))))
  1179. )
  1180. (pin unspecified line
  1181. (at 1.27000254000508 -21.59004318008636 90)
  1182. (length 5.08001016002032)
  1183. (name "0" (effects (font (size 1 1))))
  1184. (number "0" (effects (font (size 1 1))))
  1185. )
  1186. (pin unspecified line
  1187. (at 11.430022860045721 -13.97002794005588 180)
  1188. (length 2.54000508001016)
  1189. (name "GND" (effects (font (size 1 1))))
  1190. (number "A1" (effects (font (size 1 1))))
  1191. )
  1192. (pin unspecified line
  1193. (at 11.430022860045721 -11.430022860045721 180)
  1194. (length 2.54000508001016)
  1195. (name "TX1+" (effects (font (size 1 1))))
  1196. (number "A2" (effects (font (size 1 1))))
  1197. )
  1198. (pin unspecified line
  1199. (at 11.430022860045721 -8.89001778003556 180)
  1200. (length 2.54000508001016)
  1201. (name "TX1-" (effects (font (size 1 1))))
  1202. (number "A3" (effects (font (size 1 1))))
  1203. )
  1204. (pin unspecified line
  1205. (at 11.430022860045721 -6.350012700025401 180)
  1206. (length 2.54000508001016)
  1207. (name "VBUS" (effects (font (size 1 1))))
  1208. (number "A4" (effects (font (size 1 1))))
  1209. )
  1210. (pin unspecified line
  1211. (at 11.430022860045721 -3.81000762001524 180)
  1212. (length 2.54000508001016)
  1213. (name "CC1" (effects (font (size 1 1))))
  1214. (number "A5" (effects (font (size 1 1))))
  1215. )
  1216. (pin unspecified line
  1217. (at 11.430022860045721 -1.27000254000508 180)
  1218. (length 2.54000508001016)
  1219. (name "D+" (effects (font (size 1 1))))
  1220. (number "A6" (effects (font (size 1 1))))
  1221. )
  1222. (pin unspecified line
  1223. (at 11.430022860045721 1.27000254000508 180)
  1224. (length 2.54000508001016)
  1225. (name "D-" (effects (font (size 1 1))))
  1226. (number "A7" (effects (font (size 1 1))))
  1227. )
  1228. (pin unspecified line
  1229. (at 11.430022860045721 3.81000762001524 180)
  1230. (length 2.54000508001016)
  1231. (name "SBU1" (effects (font (size 1 1))))
  1232. (number "A8" (effects (font (size 1 1))))
  1233. )
  1234. (pin unspecified line
  1235. (at 11.430022860045721 6.350012700025401 180)
  1236. (length 2.54000508001016)
  1237. (name "VBUS" (effects (font (size 1 1))))
  1238. (number "A9" (effects (font (size 1 1))))
  1239. )
  1240. (pin unspecified line
  1241. (at 11.430022860045721 8.89001778003556 180)
  1242. (length 2.54000508001016)
  1243. (name "RX2-" (effects (font (size 1 1))))
  1244. (number "A10" (effects (font (size 1 1))))
  1245. )
  1246. (pin unspecified line
  1247. (at 11.430022860045721 11.430022860045721 180)
  1248. (length 2.54000508001016)
  1249. (name "RX2+" (effects (font (size 1 1))))
  1250. (number "A11" (effects (font (size 1 1))))
  1251. )
  1252. (pin unspecified line
  1253. (at 11.430022860045721 13.97002794005588 180)
  1254. (length 2.54000508001016)
  1255. (name "GND" (effects (font (size 1 1))))
  1256. (number "A12" (effects (font (size 1 1))))
  1257. )
  1258. )
  1259. )
  1260. (symbol "U-USBAR04P-F000" (in_bom yes) (on_board yes)
  1261. (property "Reference" "U" (id 0) (at 0 1.27 0)
  1262. (effects (font (size 1.27 1.27)))
  1263. )
  1264. (property "Value" "U-USBAR04P-F000" (id 1) (at 0 -2.54 0)
  1265. (effects (font (size 1.27 1.27)))
  1266. )
  1267. (property "Footprint" "jlc_footprints:USB-A-TH_USB-302-T" (id 2) (at 0 -10.16 0)
  1268. (effects (font (size 1.27 1.27) italic) hide)
  1269. )
  1270. (property "Datasheet" "https://item.szlcsc.com/113689.html" (id 3) (at -2.286 0.127 0)
  1271. (effects (font (size 1.27 1.27)) (justify left) hide)
  1272. )
  1273. (property "ki_keywords" "C386740" (id 4) (at 0 0 0)
  1274. (effects (font (size 1.27 1.27)) hide)
  1275. )
  1276. (property "LCSC" "C386740" (id 5) (at 0 0 0)
  1277. (effects (font (size 1.27 1.27)) hide)
  1278. )
  1279. (symbol "U-USBAR04P-F000_0_1"
  1280. (rectangle
  1281. (start -2.54000508001016 10.16002032004064)
  1282. (end 7.62001524003048 -7.62001524003048)
  1283. (stroke (width 0) (type default) (color 0 0 0 0))
  1284. (fill (type background))
  1285. )
  1286. (pin unspecified line
  1287. (at -7.62001524003048 7.62001524003048 0)
  1288. (length 5.08001016002032)
  1289. (name "VCC" (effects (font (size 1 1))))
  1290. (number "1" (effects (font (size 1 1))))
  1291. )
  1292. (pin unspecified line
  1293. (at -7.62001524003048 5.08001016002032 0)
  1294. (length 5.08001016002032)
  1295. (name "D-" (effects (font (size 1 1))))
  1296. (number "2" (effects (font (size 1 1))))
  1297. )
  1298. (pin unspecified line
  1299. (at -7.62001524003048 2.54000508001016 0)
  1300. (length 5.08001016002032)
  1301. (name "D+" (effects (font (size 1 1))))
  1302. (number "3" (effects (font (size 1 1))))
  1303. )
  1304. (pin unspecified line
  1305. (at -7.62001524003048 -0.0 0)
  1306. (length 5.08001016002032)
  1307. (name "GND" (effects (font (size 1 1))))
  1308. (number "4" (effects (font (size 1 1))))
  1309. )
  1310. (pin unspecified line
  1311. (at -7.62001524003048 -2.54000508001016 0)
  1312. (length 5.08001016002032)
  1313. (name "SH1" (effects (font (size 1 1))))
  1314. (number "5" (effects (font (size 1 1))))
  1315. )
  1316. (pin unspecified line
  1317. (at -7.62001524003048 -5.08001016002032 0)
  1318. (length 5.08001016002032)
  1319. (name "SH2" (effects (font (size 1 1))))
  1320. (number "6" (effects (font (size 1 1))))
  1321. )
  1322. )
  1323. )
  1324. (symbol "ABM3-12_000MHZ-D2Y-T" (pin_names hide) (in_bom yes) (on_board yes)
  1325. (property "Reference" "X" (id 0) (at 0 1.27 0)
  1326. (effects (font (size 1.27 1.27)))
  1327. )
  1328. (property "Value" "ABM3-12_000MHZ-D2Y-T" (id 1) (at 0 -2.54 0)
  1329. (effects (font (size 1.27 1.27)))
  1330. )
  1331. (property "Footprint" "jlc_footprints:OSC-SMD_2P-L5.0-W3.2" (id 2) (at 0 -10.16 0)
  1332. (effects (font (size 1.27 1.27) italic) hide)
  1333. )
  1334. (property "Datasheet" "https://item.szlcsc.com/315173.html" (id 3) (at -2.286 0.127 0)
  1335. (effects (font (size 1.27 1.27)) (justify left) hide)
  1336. )
  1337. (property "ki_keywords" "C148313" (id 4) (at 0 0 0)
  1338. (effects (font (size 1.27 1.27)) hide)
  1339. )
  1340. (property "LCSC" "C148313" (id 5) (at 0 0 0)
  1341. (effects (font (size 1.27 1.27)) hide)
  1342. )
  1343. (property "Frequency" "12MHz" (id 6) (at 0 0 0)
  1344. (effects (font (size 1.27 1.27)) hide)
  1345. )
  1346. (symbol "ABM3-12_000MHZ-D2Y-T_0_1"
  1347. (pin input line
  1348. (at -5.08001016002032 -0.0 0)
  1349. (length 3.81000762001524)
  1350. (name "OSC1" (effects (font (size 1 1))))
  1351. (number "1" (effects (font (size 1 1))))
  1352. )
  1353. (pin input line
  1354. (at 5.08001016002032 -0.0 180)
  1355. (length 3.81000762001524)
  1356. (name "OSC2" (effects (font (size 1 1))))
  1357. (number "2" (effects (font (size 1 1))))
  1358. )
  1359. (polyline
  1360. (pts
  1361. (xy -1.27000254000508 -1.0160020320040641)
  1362. (xy -1.27000254000508 1.0160020320040641)
  1363. )
  1364. (stroke (width 0) (type default) (color 0 0 0 0))
  1365. (fill (type none))
  1366. )
  1367. (polyline
  1368. (pts
  1369. (xy 0.762001524003048 -1.7780035560071121)
  1370. (xy -0.762001524003048 -1.7780035560071121)
  1371. )
  1372. (stroke (width 0) (type default) (color 0 0 0 0))
  1373. (fill (type none))
  1374. )
  1375. (polyline
  1376. (pts
  1377. (xy 1.27000254000508 -1.0160020320040641)
  1378. (xy 1.27000254000508 1.0160020320040641)
  1379. )
  1380. (stroke (width 0) (type default) (color 0 0 0 0))
  1381. (fill (type none))
  1382. )
  1383. (polyline
  1384. (pts
  1385. (xy -0.762001524003048 -1.7780035560071121)
  1386. (xy -0.762001524003048 1.7780035560071121)
  1387. (xy 0.762001524003048 1.7780035560071121)
  1388. (xy 0.762001524003048 -1.7780035560071121)
  1389. )
  1390. (stroke (width 0) (type default) (color 0 0 0 0))
  1391. (fill (type none))
  1392. )
  1393. (polyline
  1394. (pts
  1395. (xy 1.27000254000508 -1.7780035560071121)
  1396. (xy 1.27000254000508 1.7780035560071121)
  1397. )
  1398. (stroke (width 0) (type default) (color 0 0 0 0))
  1399. (fill (type none))
  1400. )
  1401. (polyline
  1402. (pts
  1403. (xy -1.27000254000508 -1.7780035560071121)
  1404. (xy -1.27000254000508 1.7780035560071121)
  1405. )
  1406. (stroke (width 0) (type default) (color 0 0 0 0))
  1407. (fill (type none))
  1408. )
  1409. (polyline
  1410. (pts
  1411. (xy 0.762001524003048 1.7780035560071121)
  1412. (xy 0.762001524003048 -1.7780035560071121)
  1413. (xy -0.762001524003048 -1.7780035560071121)
  1414. (xy -0.762001524003048 1.7780035560071121)
  1415. (xy 0.762001524003048 1.7780035560071121)
  1416. )
  1417. (stroke (width 0) (type default) (color 0 0 0 0))
  1418. (fill (type none))
  1419. )
  1420. )
  1421. )
  1422. (symbol "CR-02FL6----1K" (pin_names hide) (in_bom yes) (on_board yes)
  1423. (property "Reference" "R" (id 0) (at 0 1.27 0)
  1424. (effects (font (size 1.27 1.27)))
  1425. )
  1426. (property "Value" "CR-02FL6----1K" (id 1) (at 0 -2.54 0)
  1427. (effects (font (size 1.27 1.27)))
  1428. )
  1429. (property "Footprint" "jlc_footprints:R0402" (id 2) (at 0 -10.16 0)
  1430. (effects (font (size 1.27 1.27) italic) hide)
  1431. )
  1432. (property "Datasheet" "https://item.szlcsc.com/323315.html" (id 3) (at -2.286 0.127 0)
  1433. (effects (font (size 1.27 1.27)) (justify left) hide)
  1434. )
  1435. (property "ki_keywords" "C279981" (id 4) (at 0 0 0)
  1436. (effects (font (size 1.27 1.27)) hide)
  1437. )
  1438. (property "LCSC" "C279981" (id 5) (at 0 0 0)
  1439. (effects (font (size 1.27 1.27)) hide)
  1440. )
  1441. (property "Resistance" "1kΩ" (id 6) (at 0 0 0)
  1442. (effects (font (size 1.27 1.27)) hide)
  1443. )
  1444. (symbol "CR-02FL6----1K_0_1"
  1445. (rectangle
  1446. (start -2.54000508001016 1.0160020320040641)
  1447. (end 2.54000508001016 -1.0160020320040641)
  1448. (stroke (width 0) (type default) (color 0 0 0 0))
  1449. (fill (type background))
  1450. )
  1451. (pin unspecified line
  1452. (at 5.08001016002032 -0.0 180)
  1453. (length 2.54000508001016)
  1454. (name "2" (effects (font (size 1 1))))
  1455. (number "2" (effects (font (size 1 1))))
  1456. )
  1457. (pin unspecified line
  1458. (at -5.08001016002032 -0.0 0)
  1459. (length 2.54000508001016)
  1460. (name "1" (effects (font (size 1 1))))
  1461. (number "1" (effects (font (size 1 1))))
  1462. )
  1463. )
  1464. )
  1465. (symbol "C0402C0G270G500NTB" (pin_names hide) (in_bom yes) (on_board yes)
  1466. (property "Reference" "C" (id 0) (at 0 1.27 0)
  1467. (effects (font (size 1.27 1.27)))
  1468. )
  1469. (property "Value" "C0402C0G270G500NTB" (id 1) (at 0 -2.54 0)
  1470. (effects (font (size 1.27 1.27)))
  1471. )
  1472. (property "Footprint" "jlc_footprints:C0402" (id 2) (at 0 -10.16 0)
  1473. (effects (font (size 1.27 1.27) italic) hide)
  1474. )
  1475. (property "Datasheet" "https://item.szlcsc.com/15869.html" (id 3) (at -2.286 0.127 0)
  1476. (effects (font (size 1.27 1.27)) (justify left) hide)
  1477. )
  1478. (property "ki_keywords" "C140675" (id 4) (at 0 0 0)
  1479. (effects (font (size 1.27 1.27)) hide)
  1480. )
  1481. (property "LCSC" "C140675" (id 5) (at 0 0 0)
  1482. (effects (font (size 1.27 1.27)) hide)
  1483. )
  1484. (property "Capacitance" "27pF" (id 6) (at 0 0 0)
  1485. (effects (font (size 1.27 1.27)) hide)
  1486. )
  1487. (symbol "C0402C0G270G500NTB_0_1"
  1488. (polyline
  1489. (pts
  1490. (xy -0.5080010160020321 -2.0320040640081283)
  1491. (xy -0.5080010160020321 2.0320040640081283)
  1492. )
  1493. (stroke (width 0) (type default) (color 0 0 0 0))
  1494. (fill (type none))
  1495. )
  1496. (pin unspecified line
  1497. (at -5.08001016002032 -0.0 0)
  1498. (length 2.54000508001016)
  1499. (name "1" (effects (font (size 1 1))))
  1500. (number "1" (effects (font (size 1 1))))
  1501. )
  1502. (polyline
  1503. (pts
  1504. (xy 2.54000508001016 -0.0)
  1505. (xy 0.5080010160020321 -0.0)
  1506. )
  1507. (stroke (width 0) (type default) (color 0 0 0 0))
  1508. (fill (type none))
  1509. )
  1510. (polyline
  1511. (pts
  1512. (xy 0.5080010160020321 2.0320040640081283)
  1513. (xy 0.5080010160020321 -2.0320040640081283)
  1514. )
  1515. (stroke (width 0) (type default) (color 0 0 0 0))
  1516. (fill (type none))
  1517. )
  1518. (pin unspecified line
  1519. (at 5.08001016002032 -0.0 180)
  1520. (length 2.54000508001016)
  1521. (name "2" (effects (font (size 1 1))))
  1522. (number "2" (effects (font (size 1 1))))
  1523. )
  1524. (polyline
  1525. (pts
  1526. (xy -0.5080010160020321 -0.0)
  1527. (xy -2.54000508001016 -0.0)
  1528. )
  1529. (stroke (width 0) (type default) (color 0 0 0 0))
  1530. (fill (type none))
  1531. )
  1532. )
  1533. )
  1534. (symbol "CR-02FL6---5K1" (pin_names hide) (in_bom yes) (on_board yes)
  1535. (property "Reference" "R" (id 0) (at 0 1.27 0)
  1536. (effects (font (size 1.27 1.27)))
  1537. )
  1538. (property "Value" "CR-02FL6---5K1" (id 1) (at 0 -2.54 0)
  1539. (effects (font (size 1.27 1.27)))
  1540. )
  1541. (property "Footprint" "jlc_footprints:R0402" (id 2) (at 0 -10.16 0)
  1542. (effects (font (size 1.27 1.27) italic) hide)
  1543. )
  1544. (property "Datasheet" "https://item.szlcsc.com/323315.html" (id 3) (at -2.286 0.127 0)
  1545. (effects (font (size 1.27 1.27)) (justify left) hide)
  1546. )
  1547. (property "ki_keywords" "C409700" (id 4) (at 0 0 0)
  1548. (effects (font (size 1.27 1.27)) hide)
  1549. )
  1550. (property "LCSC" "C409700" (id 5) (at 0 0 0)
  1551. (effects (font (size 1.27 1.27)) hide)
  1552. )
  1553. (property "Resistance" "5.1kΩ" (id 6) (at 0 0 0)
  1554. (effects (font (size 1.27 1.27)) hide)
  1555. )
  1556. (symbol "CR-02FL6---5K1_0_1"
  1557. (rectangle
  1558. (start -2.54000508001016 1.27000254000508)
  1559. (end 2.54000508001016 -1.27000254000508)
  1560. (stroke (width 0) (type default) (color 0 0 0 0))
  1561. (fill (type background))
  1562. )
  1563. (pin unspecified line
  1564. (at 5.08001016002032 -0.0 180)
  1565. (length 2.54000508001016)
  1566. (name "2" (effects (font (size 1 1))))
  1567. (number "2" (effects (font (size 1 1))))
  1568. )
  1569. (pin unspecified line
  1570. (at -5.08001016002032 -0.0 0)
  1571. (length 2.54000508001016)
  1572. (name "1" (effects (font (size 1 1))))
  1573. (number "1" (effects (font (size 1 1))))
  1574. )
  1575. )
  1576. )
  1577. (symbol "WR04X27R4FTL" (pin_names hide) (in_bom yes) (on_board yes)
  1578. (property "Reference" "R" (id 0) (at 0 1.27 0)
  1579. (effects (font (size 1.27 1.27)))
  1580. )
  1581. (property "Value" "WR04X27R4FTL" (id 1) (at 0 -2.54 0)
  1582. (effects (font (size 1.27 1.27)))
  1583. )
  1584. (property "Footprint" "jlc_footprints:R0402" (id 2) (at 0 -10.16 0)
  1585. (effects (font (size 1.27 1.27) italic) hide)
  1586. )
  1587. (property "Datasheet" "https://item.szlcsc.com/323315.html" (id 3) (at -2.286 0.127 0)
  1588. (effects (font (size 1.27 1.27)) (justify left) hide)
  1589. )
  1590. (property "ki_keywords" "C172043" (id 4) (at 0 0 0)
  1591. (effects (font (size 1.27 1.27)) hide)
  1592. )
  1593. (property "LCSC" "C172043" (id 5) (at 0 0 0)
  1594. (effects (font (size 1.27 1.27)) hide)
  1595. )
  1596. (property "Resistance" "27.4Ω" (id 6) (at 0 0 0)
  1597. (effects (font (size 1.27 1.27)) hide)
  1598. )
  1599. (symbol "WR04X27R4FTL_0_1"
  1600. (rectangle
  1601. (start -2.54000508001016 1.0160020320040641)
  1602. (end 2.54000508001016 -1.0160020320040641)
  1603. (stroke (width 0) (type default) (color 0 0 0 0))
  1604. (fill (type background))
  1605. )
  1606. (pin unspecified line
  1607. (at 5.08001016002032 -0.0 180)
  1608. (length 2.54000508001016)
  1609. (name "2" (effects (font (size 1 1))))
  1610. (number "2" (effects (font (size 1 1))))
  1611. )
  1612. (pin unspecified line
  1613. (at -5.08001016002032 -0.0 0)
  1614. (length 2.54000508001016)
  1615. (name "1" (effects (font (size 1 1))))
  1616. (number "1" (effects (font (size 1 1))))
  1617. )
  1618. )
  1619. )
  1620. (symbol "CC0402KRX7R8BB104" (pin_names hide) (in_bom yes) (on_board yes)
  1621. (property "Reference" "C" (id 0) (at 0 1.27 0)
  1622. (effects (font (size 1.27 1.27)))
  1623. )
  1624. (property "Value" "CC0402KRX7R8BB104" (id 1) (at 0 -2.54 0)
  1625. (effects (font (size 1.27 1.27)))
  1626. )
  1627. (property "Footprint" "jlc_footprints:C0402" (id 2) (at 0 -10.16 0)
  1628. (effects (font (size 1.27 1.27) italic) hide)
  1629. )
  1630. (property "Datasheet" "https://item.szlcsc.com/15869.html" (id 3) (at -2.286 0.127 0)
  1631. (effects (font (size 1.27 1.27)) (justify left) hide)
  1632. )
  1633. (property "ki_keywords" "C105883" (id 4) (at 0 0 0)
  1634. (effects (font (size 1.27 1.27)) hide)
  1635. )
  1636. (property "LCSC" "C105883" (id 5) (at 0 0 0)
  1637. (effects (font (size 1.27 1.27)) hide)
  1638. )
  1639. (property "Capacitance" "100nF" (id 6) (at 0 0 0)
  1640. (effects (font (size 1.27 1.27)) hide)
  1641. )
  1642. (symbol "CC0402KRX7R8BB104_0_1"
  1643. (polyline
  1644. (pts
  1645. (xy -0.5080010160020321 2.0320040640081283)
  1646. (xy -0.5080010160020321 -2.0320040640081283)
  1647. )
  1648. (stroke (width 0) (type default) (color 0 0 0 0))
  1649. (fill (type none))
  1650. )
  1651. (polyline
  1652. (pts
  1653. (xy 0.5080010160020321 2.0320040640081283)
  1654. (xy 0.5080010160020321 -2.0320040640081283)
  1655. )
  1656. (stroke (width 0) (type default) (color 0 0 0 0))
  1657. (fill (type none))
  1658. )
  1659. (pin input line
  1660. (at -3.81000762001524 -0.0 0)
  1661. (length 2.54000508001016)
  1662. (name "1" (effects (font (size 1 1))))
  1663. (number "1" (effects (font (size 1 1))))
  1664. )
  1665. (pin input line
  1666. (at 3.81000762001524 -0.0 180)
  1667. (length 2.54000508001016)
  1668. (name "2" (effects (font (size 1 1))))
  1669. (number "2" (effects (font (size 1 1))))
  1670. )
  1671. (polyline
  1672. (pts
  1673. (xy -1.27000254000508 -0.0)
  1674. (xy -0.5080010160020321 -0.0)
  1675. )
  1676. (stroke (width 0) (type default) (color 0 0 0 0))
  1677. (fill (type none))
  1678. )
  1679. (polyline
  1680. (pts
  1681. (xy 0.5080010160020321 -0.0)
  1682. (xy 1.27000254000508 -0.0)
  1683. )
  1684. (stroke (width 0) (type default) (color 0 0 0 0))
  1685. (fill (type none))
  1686. )
  1687. )
  1688. )
  1689. (symbol "0402X105K160" (pin_names hide) (in_bom yes) (on_board yes)
  1690. (property "Reference" "C" (id 0) (at 0 1.27 0)
  1691. (effects (font (size 1.27 1.27)))
  1692. )
  1693. (property "Value" "0402X105K160" (id 1) (at 0 -2.54 0)
  1694. (effects (font (size 1.27 1.27)))
  1695. )
  1696. (property "Footprint" "jlc_footprints:C0402" (id 2) (at 0 -10.16 0)
  1697. (effects (font (size 1.27 1.27) italic) hide)
  1698. )
  1699. (property "Datasheet" "https://item.szlcsc.com/15869.html" (id 3) (at -2.286 0.127 0)
  1700. (effects (font (size 1.27 1.27)) (justify left) hide)
  1701. )
  1702. (property "ki_keywords" "C83063" (id 4) (at 0 0 0)
  1703. (effects (font (size 1.27 1.27)) hide)
  1704. )
  1705. (property "LCSC" "C83063" (id 5) (at 0 0 0)
  1706. (effects (font (size 1.27 1.27)) hide)
  1707. )
  1708. (property "Capacitance" "1uF" (id 6) (at 0 0 0)
  1709. (effects (font (size 1.27 1.27)) hide)
  1710. )
  1711. (symbol "0402X105K160_0_1"
  1712. (polyline
  1713. (pts
  1714. (xy -0.5080010160020321 -2.0320040640081283)
  1715. (xy -0.5080010160020321 2.0320040640081283)
  1716. )
  1717. (stroke (width 0) (type default) (color 0 0 0 0))
  1718. (fill (type none))
  1719. )
  1720. (pin unspecified line
  1721. (at -5.08001016002032 -0.0 0)
  1722. (length 2.54000508001016)
  1723. (name "1" (effects (font (size 1 1))))
  1724. (number "1" (effects (font (size 1 1))))
  1725. )
  1726. (polyline
  1727. (pts
  1728. (xy 2.54000508001016 -0.0)
  1729. (xy 0.5080010160020321 -0.0)
  1730. )
  1731. (stroke (width 0) (type default) (color 0 0 0 0))
  1732. (fill (type none))
  1733. )
  1734. (polyline
  1735. (pts
  1736. (xy 0.5080010160020321 2.0320040640081283)
  1737. (xy 0.5080010160020321 -2.0320040640081283)
  1738. )
  1739. (stroke (width 0) (type default) (color 0 0 0 0))
  1740. (fill (type none))
  1741. )
  1742. (pin unspecified line
  1743. (at 5.08001016002032 -0.0 180)
  1744. (length 2.54000508001016)
  1745. (name "2" (effects (font (size 1 1))))
  1746. (number "2" (effects (font (size 1 1))))
  1747. )
  1748. (polyline
  1749. (pts
  1750. (xy -0.5080010160020321 -0.0)
  1751. (xy -2.54000508001016 -0.0)
  1752. )
  1753. (stroke (width 0) (type default) (color 0 0 0 0))
  1754. (fill (type none))
  1755. )
  1756. )
  1757. )
  1758. )