forecast_Air202.xml 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <export version="D">
  3. <design>
  4. <source>F:\坚果云\研发资料(A)\孢子仪\YF_BZYV2\BZY-2.3\forecast_Air202.sch</source>
  5. <date>2020-08-04 15:51:01</date>
  6. <tool>Eeschema (5.1.4)-1</tool>
  7. <sheet number="1" name="/" tstamps="/">
  8. <title_block>
  9. <title>DCBZY</title>
  10. <company>yunfei</company>
  11. <rev>DC-V1.1</rev>
  12. <date>2019-07-30</date>
  13. <source>forecast_Air202.sch</source>
  14. <comment number="1" value="lcg"/>
  15. <comment number="2" value=""/>
  16. <comment number="3" value=""/>
  17. <comment number="4" value=""/>
  18. </title_block>
  19. </sheet>
  20. <sheet number="2" name="/STM8S003/" tstamps="/5AA262B8/">
  21. <title_block>
  22. <title>DCBZY</title>
  23. <company>yunfei</company>
  24. <rev>DC-V1.1</rev>
  25. <date>2019-07-30</date>
  26. <source>STM8S003.sch</source>
  27. <comment number="1" value="lcg"/>
  28. <comment number="2" value=""/>
  29. <comment number="3" value=""/>
  30. <comment number="4" value=""/>
  31. </title_block>
  32. </sheet>
  33. <sheet number="3" name="/POWER/" tstamps="/5AA29947/">
  34. <title_block>
  35. <title>DCBZY</title>
  36. <company>yunfei</company>
  37. <rev>DC-V1.1</rev>
  38. <date>2019-07-30</date>
  39. <source>POWER.sch</source>
  40. <comment number="1" value="lcg"/>
  41. <comment number="2" value=""/>
  42. <comment number="3" value=""/>
  43. <comment number="4" value=""/>
  44. </title_block>
  45. </sheet>
  46. <sheet number="4" name="/AIR202/" tstamps="/5AA28A58/">
  47. <title_block>
  48. <title>DCBZY</title>
  49. <company>yunfei</company>
  50. <rev>DC-V1.1</rev>
  51. <date>2019-07-30</date>
  52. <source>AIR202.sch</source>
  53. <comment number="1" value="lcg"/>
  54. <comment number="2" value=""/>
  55. <comment number="3" value=""/>
  56. <comment number="4" value=""/>
  57. </title_block>
  58. </sheet>
  59. </design>
  60. <components>
  61. <comp ref="R6">
  62. <value>5001</value>
  63. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  64. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  65. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  66. <tstamp>5D4049DA</tstamp>
  67. </comp>
  68. <comp ref="J25">
  69. <value>TEST_1P</value>
  70. <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
  71. <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
  72. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  73. <tstamp>5CA72C9C</tstamp>
  74. </comp>
  75. <comp ref="U2">
  76. <value>STM8S003</value>
  77. <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
  78. <libsource lib="forecast_Air202-rescue" part="STM8S003-RESCUE-forecast_Air202" description=""/>
  79. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  80. <tstamp>5AA4B7EF</tstamp>
  81. </comp>
  82. <comp ref="U3">
  83. <value>SC662K-33</value>
  84. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  85. <libsource lib="forecast_Air202-rescue" part="APE8865N-33-HF-3-RESCUE-forecast_Air202" description=""/>
  86. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  87. <tstamp>5AA4A238</tstamp>
  88. </comp>
  89. <comp ref="J3">
  90. <value>Download</value>
  91. <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
  92. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  93. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  94. <tstamp>5AAC450F</tstamp>
  95. </comp>
  96. <comp ref="C11">
  97. <value>104</value>
  98. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  99. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  100. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  101. <tstamp>5AAA0E43</tstamp>
  102. </comp>
  103. <comp ref="C12">
  104. <value>106</value>
  105. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  106. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  107. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  108. <tstamp>5AA9EF7E</tstamp>
  109. </comp>
  110. <comp ref="C10">
  111. <value>104</value>
  112. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  113. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  114. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  115. <tstamp>5AA99873</tstamp>
  116. </comp>
  117. <comp ref="C8">
  118. <value>106</value>
  119. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  120. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  121. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  122. <tstamp>5AA9972D</tstamp>
  123. </comp>
  124. <comp ref="C9">
  125. <value>106</value>
  126. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  127. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  128. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  129. <tstamp>5AA99370</tstamp>
  130. </comp>
  131. <comp ref="K8">
  132. <value>4117</value>
  133. <footprint>My_KF3.96:4117</footprint>
  134. <libsource lib="forecast_Air202-rescue" part="4117" description=""/>
  135. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  136. <tstamp>5D693085</tstamp>
  137. </comp>
  138. <comp ref="R18">
  139. <value>472</value>
  140. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  141. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  142. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  143. <tstamp>5D421672</tstamp>
  144. </comp>
  145. <comp ref="R26">
  146. <value>104</value>
  147. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  148. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  149. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  150. <tstamp>5D42165F</tstamp>
  151. </comp>
  152. <comp ref="Q8">
  153. <value>5551</value>
  154. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  155. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  156. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  157. <tstamp>5D421659</tstamp>
  158. </comp>
  159. <comp ref="D2">
  160. <value>RS1M</value>
  161. <footprint>Diode_SMD:D_SMA</footprint>
  162. <libsource lib="forecast_Air202-rescue" part="D-Device" description=""/>
  163. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  164. <tstamp>5D421653</tstamp>
  165. </comp>
  166. <comp ref="J10">
  167. <value>COOL</value>
  168. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal</footprint>
  169. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  170. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  171. <tstamp>5D421625</tstamp>
  172. </comp>
  173. <comp ref="R19">
  174. <value>472</value>
  175. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  176. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  177. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  178. <tstamp>5AAABD39</tstamp>
  179. </comp>
  180. <comp ref="R20">
  181. <value>104</value>
  182. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  183. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  184. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  185. <tstamp>5AAABD33</tstamp>
  186. </comp>
  187. <comp ref="Q10">
  188. <value>5551</value>
  189. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  190. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  191. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  192. <tstamp>5AAABD2D</tstamp>
  193. </comp>
  194. <comp ref="D12">
  195. <value>RS1M</value>
  196. <footprint>Diode_SMD:D_SMA</footprint>
  197. <libsource lib="forecast_Air202-rescue" part="D-Device" description=""/>
  198. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  199. <tstamp>5AAABD27</tstamp>
  200. </comp>
  201. <comp ref="K7">
  202. <value>4117</value>
  203. <footprint>My_KF3.96:4117</footprint>
  204. <libsource lib="forecast_Air202-rescue" part="4117" description=""/>
  205. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  206. <tstamp>5C7FEE9D</tstamp>
  207. </comp>
  208. <comp ref="R8">
  209. <value>103</value>
  210. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  211. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  212. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  213. <tstamp>5D40129B</tstamp>
  214. </comp>
  215. <comp ref="Q3">
  216. <value>5551</value>
  217. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  218. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  219. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  220. <tstamp>5D4012A2</tstamp>
  221. </comp>
  222. <comp ref="R7">
  223. <value>102</value>
  224. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  225. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  226. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  227. <tstamp>5D4012A9</tstamp>
  228. </comp>
  229. <comp ref="R4">
  230. <value>102</value>
  231. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  232. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  233. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  234. <tstamp>5D4012B0</tstamp>
  235. </comp>
  236. <comp ref="Q4">
  237. <value>IRF540N</value>
  238. <footprint>Package_TO_SOT_SMD:TO-263-2</footprint>
  239. <libsource lib="forecast_Air202-rescue" part="IRF540N" description=""/>
  240. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  241. <tstamp>5D4012BD</tstamp>
  242. </comp>
  243. <comp ref="J1">
  244. <value>TURN_MOTOR</value>
  245. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical</footprint>
  246. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  247. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  248. <tstamp>5D4012C4</tstamp>
  249. </comp>
  250. <comp ref="R11">
  251. <value>472</value>
  252. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  253. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  254. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  255. <tstamp>5D4012D1</tstamp>
  256. </comp>
  257. <comp ref="R16">
  258. <value>103</value>
  259. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  260. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  261. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  262. <tstamp>5D423F00</tstamp>
  263. </comp>
  264. <comp ref="Q6">
  265. <value>5551</value>
  266. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  267. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  268. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  269. <tstamp>5D423F06</tstamp>
  270. </comp>
  271. <comp ref="R15">
  272. <value>102</value>
  273. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  274. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  275. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  276. <tstamp>5D423F0C</tstamp>
  277. </comp>
  278. <comp ref="R14">
  279. <value>102</value>
  280. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  281. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  282. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  283. <tstamp>5D423F12</tstamp>
  284. </comp>
  285. <comp ref="Q7">
  286. <value>IRF540N</value>
  287. <footprint>Package_TO_SOT_SMD:TO-263-2</footprint>
  288. <libsource lib="forecast_Air202-rescue" part="IRF540N" description=""/>
  289. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  290. <tstamp>5D423F1E</tstamp>
  291. </comp>
  292. <comp ref="R17">
  293. <value>472</value>
  294. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  295. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  296. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  297. <tstamp>5D423F30</tstamp>
  298. </comp>
  299. <comp ref="R38">
  300. <value>103</value>
  301. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  302. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  303. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  304. <tstamp>5D424172</tstamp>
  305. </comp>
  306. <comp ref="Q9">
  307. <value>5551</value>
  308. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  309. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  310. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  311. <tstamp>5D424178</tstamp>
  312. </comp>
  313. <comp ref="R37">
  314. <value>102</value>
  315. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  316. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  317. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  318. <tstamp>5D42417E</tstamp>
  319. </comp>
  320. <comp ref="R36">
  321. <value>102</value>
  322. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  323. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  324. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  325. <tstamp>5D424184</tstamp>
  326. </comp>
  327. <comp ref="Q11">
  328. <value>IRF540N</value>
  329. <footprint>Package_TO_SOT_SMD:TO-263-2</footprint>
  330. <libsource lib="forecast_Air202-rescue" part="IRF540N" description=""/>
  331. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  332. <tstamp>5D424190</tstamp>
  333. </comp>
  334. <comp ref="J19">
  335. <value>WIND2</value>
  336. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical</footprint>
  337. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  338. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  339. <tstamp>5D424196</tstamp>
  340. </comp>
  341. <comp ref="R39">
  342. <value>472</value>
  343. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  344. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  345. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  346. <tstamp>5D4241A2</tstamp>
  347. </comp>
  348. <comp ref="D5">
  349. <value>SS34</value>
  350. <footprint>Diode_SMD:D_SMA</footprint>
  351. <datasheet>~</datasheet>
  352. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  353. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  354. <tstamp>5D719FD0</tstamp>
  355. </comp>
  356. <comp ref="D6">
  357. <value>SS34</value>
  358. <footprint>Diode_SMD:D_SMA</footprint>
  359. <datasheet>~</datasheet>
  360. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  361. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  362. <tstamp>5D75D88C</tstamp>
  363. </comp>
  364. <comp ref="D7">
  365. <value>SS34</value>
  366. <footprint>Diode_SMD:D_SMA</footprint>
  367. <datasheet>~</datasheet>
  368. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  369. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  370. <tstamp>5D89D703</tstamp>
  371. </comp>
  372. <comp ref="J17">
  373. <value>WIND</value>
  374. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical</footprint>
  375. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  376. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  377. <tstamp>5D423F24</tstamp>
  378. </comp>
  379. <comp ref="U7">
  380. <value>DRV8871DDA</value>
  381. <footprint>Package_SO:Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias</footprint>
  382. <datasheet>http://www.ti.com/lit/ds/symlink/drv8871.pdf</datasheet>
  383. <libsource lib="Driver_Motor" part="DRV8871DDA" description="Brushed DC Motor Driver, PWM Control, 45V, 3.6A, Current limiting, HTSOP-8"/>
  384. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  385. <tstamp>5DD58A54</tstamp>
  386. </comp>
  387. <comp ref="R10">
  388. <value>1742</value>
  389. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  390. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  391. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  392. <tstamp>5D7BA1BF</tstamp>
  393. </comp>
  394. <comp ref="C7">
  395. <value>104</value>
  396. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  397. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  398. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  399. <tstamp>5D8385F4</tstamp>
  400. </comp>
  401. <comp ref="C6">
  402. <value>47uF</value>
  403. <footprint>Capacitor_THT:CP_Radial_D6.3mm_P2.50mm</footprint>
  404. <datasheet>~</datasheet>
  405. <libsource lib="Device" part="CP" description="Polarized capacitor"/>
  406. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  407. <tstamp>5D855CE6</tstamp>
  408. </comp>
  409. <comp ref="J2">
  410. <value>HEAT</value>
  411. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal</footprint>
  412. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  413. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  414. <tstamp>5C131CEB</tstamp>
  415. </comp>
  416. <comp ref="J13">
  417. <value>fanshilin</value>
  418. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical</footprint>
  419. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  420. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  421. <tstamp>5D8BE0D0</tstamp>
  422. </comp>
  423. <comp ref="R2">
  424. <value>472</value>
  425. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  426. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  427. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  428. <tstamp>5E2180F8</tstamp>
  429. </comp>
  430. <comp ref="R5">
  431. <value>2000</value>
  432. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  433. <datasheet>~</datasheet>
  434. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  435. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  436. <tstamp>5E2180FE</tstamp>
  437. </comp>
  438. <comp ref="C1">
  439. <value>106</value>
  440. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  441. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  442. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  443. <tstamp>5E218104</tstamp>
  444. </comp>
  445. <comp ref="R3">
  446. <value>472</value>
  447. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  448. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  449. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  450. <tstamp>5E218110</tstamp>
  451. </comp>
  452. <comp ref="R9">
  453. <value>2000</value>
  454. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  455. <datasheet>~</datasheet>
  456. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  457. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  458. <tstamp>5E218129</tstamp>
  459. </comp>
  460. <comp ref="J12">
  461. <value>TURN</value>
  462. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
  463. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  464. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  465. <tstamp>5E21813E</tstamp>
  466. </comp>
  467. <comp ref="J9">
  468. <value>ntc</value>
  469. <footprint>Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical</footprint>
  470. <datasheet>~</datasheet>
  471. <libsource lib="CONN" part="Conn_01x02" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  472. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  473. <tstamp>5D7F75D5</tstamp>
  474. </comp>
  475. <comp ref="R1">
  476. <value>472</value>
  477. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  478. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  479. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  480. <tstamp>5D893B4D</tstamp>
  481. </comp>
  482. <comp ref="J4">
  483. <value>ADC</value>
  484. <footprint>Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical</footprint>
  485. <datasheet>~</datasheet>
  486. <libsource lib="CONN" part="Conn_01x02" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  487. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  488. <tstamp>5D893B59</tstamp>
  489. </comp>
  490. <comp ref="J14">
  491. <value>LIMIT</value>
  492. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
  493. <datasheet>~</datasheet>
  494. <libsource lib="CONN" part="Conn_01x04" description="Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  495. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  496. <tstamp>5F17E12C</tstamp>
  497. </comp>
  498. <comp ref="R12">
  499. <value>472</value>
  500. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  501. <datasheet>~</datasheet>
  502. <libsource lib="Device" part="R" description="Resistor"/>
  503. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  504. <tstamp>5F17FBE3</tstamp>
  505. </comp>
  506. <comp ref="R13">
  507. <value>472</value>
  508. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  509. <datasheet>~</datasheet>
  510. <libsource lib="Device" part="R" description="Resistor"/>
  511. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  512. <tstamp>5F1817AA</tstamp>
  513. </comp>
  514. <comp ref="R43">
  515. <value>2000</value>
  516. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  517. <datasheet>~</datasheet>
  518. <libsource lib="Device" part="R" description="Resistor"/>
  519. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  520. <tstamp>5F221E14</tstamp>
  521. </comp>
  522. <comp ref="R61">
  523. <value>2000</value>
  524. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  525. <datasheet>~</datasheet>
  526. <libsource lib="Device" part="R" description="Resistor"/>
  527. <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
  528. <tstamp>5F254336</tstamp>
  529. </comp>
  530. <comp ref="U6">
  531. <value>JW5033H</value>
  532. <footprint>Package_TO_SOT_SMD:TSOT-23-6_HandSoldering</footprint>
  533. <libsource lib="forecast_Air202-rescue" part="JW5033H" description=""/>
  534. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  535. <tstamp>5AA2CC01</tstamp>
  536. </comp>
  537. <comp ref="R41">
  538. <value>104</value>
  539. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  540. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  541. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  542. <tstamp>5AA2CC0D</tstamp>
  543. </comp>
  544. <comp ref="C35">
  545. <value>106</value>
  546. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  547. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  548. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  549. <tstamp>5AA2CC1F</tstamp>
  550. </comp>
  551. <comp ref="L2">
  552. <value>4.7uH</value>
  553. <footprint>Inductor_SMD:L_Taiyo-Yuden_NR-40xx</footprint>
  554. <libsource lib="forecast_Air202-rescue" part="L-Device" description=""/>
  555. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  556. <tstamp>5AA2CC25</tstamp>
  557. </comp>
  558. <comp ref="R42">
  559. <value>2002</value>
  560. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  561. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  562. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  563. <tstamp>5AA2CC2B</tstamp>
  564. </comp>
  565. <comp ref="C31">
  566. <value>104</value>
  567. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  568. <libsource lib="forecast_Air202-rescue" part="C_Small-Device" description=""/>
  569. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  570. <tstamp>5AA2CC37</tstamp>
  571. </comp>
  572. <comp ref="R40">
  573. <value>8202</value>
  574. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  575. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  576. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  577. <tstamp>5AA2CC3D</tstamp>
  578. </comp>
  579. <comp ref="C32">
  580. <value>1mF</value>
  581. <footprint>Capacitor_THT:CP_Radial_D8.0mm_P3.50mm</footprint>
  582. <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
  583. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  584. <tstamp>5AA2CC49</tstamp>
  585. </comp>
  586. <comp ref="C33">
  587. <value>106</value>
  588. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  589. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  590. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  591. <tstamp>5AA2CCB6</tstamp>
  592. </comp>
  593. <comp ref="C43">
  594. <value>104</value>
  595. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  596. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  597. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  598. <tstamp>5AA60379</tstamp>
  599. </comp>
  600. <comp ref="J16">
  601. <value>V_BAT</value>
  602. <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal</footprint>
  603. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  604. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  605. <tstamp>5C1296EC</tstamp>
  606. </comp>
  607. <comp ref="F1">
  608. <value>5A</value>
  609. <footprint>My_Fuseholder:Fuseholder5x20_BF-013</footprint>
  610. <libsource lib="forecast_Air202-rescue" part="Fuse-Device" description=""/>
  611. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  612. <tstamp>5C1296F9</tstamp>
  613. </comp>
  614. <comp ref="R21">
  615. <value>104</value>
  616. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  617. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  618. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  619. <tstamp>5C129728</tstamp>
  620. </comp>
  621. <comp ref="C3">
  622. <value>470uF/50V</value>
  623. <footprint>Capacitor_THT:CP_Radial_D10.0mm_P5.00mm</footprint>
  624. <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
  625. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  626. <tstamp>5C12972F</tstamp>
  627. </comp>
  628. <comp ref="C2">
  629. <value>104</value>
  630. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  631. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  632. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  633. <tstamp>5C129736</tstamp>
  634. </comp>
  635. <comp ref="U8">
  636. <value>LM2596S-12</value>
  637. <footprint>Package_TO_SOT_SMD:TO-263-5_TabPin3</footprint>
  638. <libsource lib="forecast_Air202-rescue" part="LM2576" description=""/>
  639. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  640. <tstamp>5C12973D</tstamp>
  641. </comp>
  642. <comp ref="L1">
  643. <value>68uH</value>
  644. <footprint>Inductor_SMD:L_Wuerth_HCI-1350</footprint>
  645. <libsource lib="forecast_Air202-rescue" part="L-Device" description=""/>
  646. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  647. <tstamp>5C12974A</tstamp>
  648. </comp>
  649. <comp ref="D1">
  650. <value>SS34</value>
  651. <footprint>Diode_SMD:D_SMA</footprint>
  652. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  653. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  654. <tstamp>5C12978B</tstamp>
  655. </comp>
  656. <comp ref="C44">
  657. <value>1mF</value>
  658. <footprint>Capacitor_THT:CP_Radial_D10.0mm_P5.00mm</footprint>
  659. <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
  660. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  661. <tstamp>5AA6E9DE</tstamp>
  662. </comp>
  663. <comp ref="C4">
  664. <value>180uF</value>
  665. <footprint>Capacitor_THT:CP_Radial_D8.0mm_P3.50mm</footprint>
  666. <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
  667. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  668. <tstamp>5C129774</tstamp>
  669. </comp>
  670. <comp ref="R54">
  671. <value>104</value>
  672. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  673. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  674. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  675. <tstamp>5CA5B9C2</tstamp>
  676. </comp>
  677. <comp ref="R55">
  678. <value>2201</value>
  679. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  680. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  681. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  682. <tstamp>5CA7D73B</tstamp>
  683. </comp>
  684. <comp ref="R56">
  685. <value>2000</value>
  686. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  687. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  688. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  689. <tstamp>5CA7D742</tstamp>
  690. </comp>
  691. <comp ref="J28">
  692. <value>TEST_1P</value>
  693. <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
  694. <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
  695. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  696. <tstamp>5CA71EE0</tstamp>
  697. </comp>
  698. <comp ref="J27">
  699. <value>TEST_1P</value>
  700. <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
  701. <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
  702. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  703. <tstamp>5CA724C7</tstamp>
  704. </comp>
  705. <comp ref="Q5">
  706. <value>Q_PMOS_GDS</value>
  707. <footprint>Package_TO_SOT_SMD:TO-252-2</footprint>
  708. <libsource lib="forecast_Air202-rescue" part="Q_PMOS_GDS-Device" description=""/>
  709. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  710. <tstamp>5CB8347F</tstamp>
  711. </comp>
  712. <comp ref="C29">
  713. <value>680uF/50V</value>
  714. <footprint>Capacitor_THT:CP_Radial_D10.0mm_P5.00mm</footprint>
  715. <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
  716. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  717. <tstamp>5D44F215</tstamp>
  718. </comp>
  719. <comp ref="U1">
  720. <value>LM2596S-5</value>
  721. <footprint>Package_TO_SOT_SMD:TO-263-5_TabPin3</footprint>
  722. <libsource lib="forecast_Air202-rescue" part="LM2576" description=""/>
  723. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  724. <tstamp>5D44F221</tstamp>
  725. </comp>
  726. <comp ref="L4">
  727. <value>33uH</value>
  728. <footprint>Inductor_SMD:L_Wuerth_HCI-1335</footprint>
  729. <libsource lib="forecast_Air202-rescue" part="L-Device" description=""/>
  730. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  731. <tstamp>5D44F22D</tstamp>
  732. </comp>
  733. <comp ref="D3">
  734. <value>SS34</value>
  735. <footprint>Diode_SMD:D_SMA</footprint>
  736. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  737. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  738. <tstamp>5D44F239</tstamp>
  739. </comp>
  740. <comp ref="C30">
  741. <value>220uF</value>
  742. <footprint>Capacitor_THT:CP_Radial_D6.3mm_P2.50mm</footprint>
  743. <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
  744. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  745. <tstamp>5D44F245</tstamp>
  746. </comp>
  747. <comp ref="J15">
  748. <value>TEST_1P</value>
  749. <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
  750. <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
  751. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  752. <tstamp>5D44F279</tstamp>
  753. </comp>
  754. <comp ref="C34">
  755. <value>22uF</value>
  756. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  757. <datasheet>~</datasheet>
  758. <libsource lib="Device" part="C" description="Unpolarized capacitor"/>
  759. <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
  760. <tstamp>5F21E512</tstamp>
  761. </comp>
  762. <comp ref="C15">
  763. <value>104</value>
  764. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  765. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  766. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  767. <tstamp>5AA2E7F6</tstamp>
  768. </comp>
  769. <comp ref="C18">
  770. <value>33pF</value>
  771. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  772. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  773. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  774. <tstamp>5AA2E7FA</tstamp>
  775. </comp>
  776. <comp ref="R35">
  777. <value>22R</value>
  778. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  779. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  780. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  781. <tstamp>5AA2E7FB</tstamp>
  782. </comp>
  783. <comp ref="C21">
  784. <value>33pF</value>
  785. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  786. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  787. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  788. <tstamp>5AA2E7FC</tstamp>
  789. </comp>
  790. <comp ref="C20">
  791. <value>33pF</value>
  792. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  793. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  794. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  795. <tstamp>5AA2E7FD</tstamp>
  796. </comp>
  797. <comp ref="C19">
  798. <value>104</value>
  799. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  800. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  801. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  802. <tstamp>5AA2E7FE</tstamp>
  803. </comp>
  804. <comp ref="U5">
  805. <value>ESDA6V8AV5</value>
  806. <footprint>Package_TO_SOT_SMD:SOT-553</footprint>
  807. <libsource lib="forecast_Air202-rescue" part="ESDA6V8AV5" description=""/>
  808. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  809. <tstamp>5AA2E7FF</tstamp>
  810. </comp>
  811. <comp ref="MK1">
  812. <value>M_PAD</value>
  813. <footprint>MountingHole:MountingHole_3mm_Pad</footprint>
  814. <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
  815. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  816. <tstamp>5AA2E80A</tstamp>
  817. </comp>
  818. <comp ref="MK2">
  819. <value>M_PAD</value>
  820. <footprint>MountingHole:MountingHole_3.5mm_Pad</footprint>
  821. <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
  822. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  823. <tstamp>5AA2E80B</tstamp>
  824. </comp>
  825. <comp ref="MK4">
  826. <value>M_PAD</value>
  827. <footprint>MountingHole:MountingHole_3.5mm</footprint>
  828. <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
  829. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  830. <tstamp>5AA2E80C</tstamp>
  831. </comp>
  832. <comp ref="MK3">
  833. <value>M_PAD</value>
  834. <footprint>MountingHole:MountingHole_3.5mm</footprint>
  835. <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
  836. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  837. <tstamp>5AA2E80D</tstamp>
  838. </comp>
  839. <comp ref="R32">
  840. <value>22R</value>
  841. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  842. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  843. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  844. <tstamp>5AA2E817</tstamp>
  845. </comp>
  846. <comp ref="R34">
  847. <value>22R</value>
  848. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  849. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  850. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  851. <tstamp>5AA2E818</tstamp>
  852. </comp>
  853. <comp ref="AE1">
  854. <value>GSM</value>
  855. <footprint>RTU_Lib:SMA_THT_Jack_Straight</footprint>
  856. <libsource lib="forecast_Air202-rescue" part="Antenna_Shield-Device" description=""/>
  857. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  858. <tstamp>5AA2E86A</tstamp>
  859. </comp>
  860. <comp ref="R29">
  861. <value>472</value>
  862. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  863. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  864. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  865. <tstamp>5AA2E873</tstamp>
  866. </comp>
  867. <comp ref="R30">
  868. <value>472</value>
  869. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  870. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  871. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  872. <tstamp>5AA2E874</tstamp>
  873. </comp>
  874. <comp ref="C14">
  875. <value>106</value>
  876. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  877. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  878. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  879. <tstamp>5AA2E879</tstamp>
  880. </comp>
  881. <comp ref="U4">
  882. <value>Air202</value>
  883. <footprint>My_RF_Modules:Air202</footprint>
  884. <libsource lib="forecast_Air202-rescue" part="Air202" description=""/>
  885. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  886. <tstamp>5AA2E7ED</tstamp>
  887. </comp>
  888. <comp ref="C26">
  889. <value>33pF</value>
  890. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  891. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  892. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  893. <tstamp>5AA373AD</tstamp>
  894. </comp>
  895. <comp ref="C23">
  896. <value>10pF</value>
  897. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  898. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  899. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  900. <tstamp>5AA381B9</tstamp>
  901. </comp>
  902. <comp ref="C24">
  903. <value>10pF</value>
  904. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  905. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  906. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  907. <tstamp>5AA3821B</tstamp>
  908. </comp>
  909. <comp ref="C27">
  910. <value>33pF</value>
  911. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  912. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  913. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  914. <tstamp>5AA3827C</tstamp>
  915. </comp>
  916. <comp ref="C25">
  917. <value>10pF</value>
  918. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  919. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  920. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  921. <tstamp>5AA383B4</tstamp>
  922. </comp>
  923. <comp ref="C28">
  924. <value>33pF</value>
  925. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  926. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  927. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  928. <tstamp>5AA38419</tstamp>
  929. </comp>
  930. <comp ref="C16">
  931. <value>10pF</value>
  932. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  933. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  934. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  935. <tstamp>5AA38E2A</tstamp>
  936. </comp>
  937. <comp ref="C17">
  938. <value>33pF</value>
  939. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  940. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  941. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  942. <tstamp>5AA38EA1</tstamp>
  943. </comp>
  944. <comp ref="J11">
  945. <value>Horn</value>
  946. <footprint>Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical</footprint>
  947. <libsource lib="forecast_Air202-rescue" part="Conn_01x02" description=""/>
  948. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  949. <tstamp>5AA3ACEF</tstamp>
  950. </comp>
  951. <comp ref="R31">
  952. <value>471</value>
  953. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  954. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  955. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  956. <tstamp>5AA51623</tstamp>
  957. </comp>
  958. <comp ref="R33">
  959. <value>471</value>
  960. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  961. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  962. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  963. <tstamp>5AA51EA8</tstamp>
  964. </comp>
  965. <comp ref="J5">
  966. <value>CtrUart</value>
  967. <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
  968. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  969. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  970. <tstamp>5AA5FF9A</tstamp>
  971. </comp>
  972. <comp ref="J6">
  973. <value>AM2320</value>
  974. <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
  975. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  976. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  977. <tstamp>5AA606AC</tstamp>
  978. </comp>
  979. <comp ref="J7">
  980. <value>Debug</value>
  981. <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
  982. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  983. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  984. <tstamp>5AB20FD2</tstamp>
  985. </comp>
  986. <comp ref="R48">
  987. <value>471</value>
  988. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  989. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  990. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  991. <tstamp>5AB5D104</tstamp>
  992. </comp>
  993. <comp ref="R47">
  994. <value>471</value>
  995. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  996. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  997. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  998. <tstamp>5AB5DD6A</tstamp>
  999. </comp>
  1000. <comp ref="R49">
  1001. <value>471</value>
  1002. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1003. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1004. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1005. <tstamp>5AB62DDA</tstamp>
  1006. </comp>
  1007. <comp ref="R50">
  1008. <value>471</value>
  1009. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1010. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1011. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1012. <tstamp>5AB63469</tstamp>
  1013. </comp>
  1014. <comp ref="Q13">
  1015. <value>5551</value>
  1016. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1017. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  1018. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1019. <tstamp>5D4003D8</tstamp>
  1020. </comp>
  1021. <comp ref="R59">
  1022. <value>472</value>
  1023. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1024. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1025. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1026. <tstamp>5D4003DF</tstamp>
  1027. </comp>
  1028. <comp ref="R57">
  1029. <value>472</value>
  1030. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1031. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1032. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1033. <tstamp>5D4003E6</tstamp>
  1034. </comp>
  1035. <comp ref="R51">
  1036. <value>472</value>
  1037. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1038. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1039. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1040. <tstamp>5D4003F3</tstamp>
  1041. </comp>
  1042. <comp ref="J21">
  1043. <value>5VLED</value>
  1044. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical</footprint>
  1045. <libsource lib="forecast_Air202-rescue" part="Conn_01x02" description=""/>
  1046. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1047. <tstamp>5D427140</tstamp>
  1048. </comp>
  1049. <comp ref="Q12">
  1050. <value>5N04</value>
  1051. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1052. <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
  1053. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1054. <tstamp>5D427147</tstamp>
  1055. </comp>
  1056. <comp ref="R58">
  1057. <value>102</value>
  1058. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1059. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1060. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1061. <tstamp>5D42714E</tstamp>
  1062. </comp>
  1063. <comp ref="R53">
  1064. <value>104</value>
  1065. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1066. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1067. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1068. <tstamp>5D427155</tstamp>
  1069. </comp>
  1070. <comp ref="J22">
  1071. <value>TURN_MOTOR</value>
  1072. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical</footprint>
  1073. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
  1074. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1075. <tstamp>5D42D12E</tstamp>
  1076. </comp>
  1077. <comp ref="J23">
  1078. <value>Screw_Terminal_01x04</value>
  1079. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
  1080. <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x04" description=""/>
  1081. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1082. <tstamp>5D43118F</tstamp>
  1083. </comp>
  1084. <comp ref="R52">
  1085. <value>472</value>
  1086. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1087. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1088. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1089. <tstamp>5D4359CE</tstamp>
  1090. </comp>
  1091. <comp ref="R23">
  1092. <value>472</value>
  1093. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1094. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1095. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1096. <tstamp>5D3FE719</tstamp>
  1097. </comp>
  1098. <comp ref="R45">
  1099. <value>2000</value>
  1100. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1101. <datasheet>~</datasheet>
  1102. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1103. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1104. <tstamp>5D5521C5</tstamp>
  1105. </comp>
  1106. <comp ref="R44">
  1107. <value>2000</value>
  1108. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1109. <datasheet>~</datasheet>
  1110. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1111. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1112. <tstamp>5D6108C0</tstamp>
  1113. </comp>
  1114. <comp ref="D8">
  1115. <value>SS34</value>
  1116. <footprint>Diode_SMD:D_SMA</footprint>
  1117. <datasheet>~</datasheet>
  1118. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  1119. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1120. <tstamp>5D8CC347</tstamp>
  1121. </comp>
  1122. <comp ref="R63">
  1123. <value>4702</value>
  1124. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1125. <datasheet>~</datasheet>
  1126. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1127. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1128. <tstamp>5DAA149F</tstamp>
  1129. </comp>
  1130. <comp ref="R64">
  1131. <value>472</value>
  1132. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1133. <datasheet>~</datasheet>
  1134. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1135. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1136. <tstamp>5DB98FF6</tstamp>
  1137. </comp>
  1138. <comp ref="Q2">
  1139. <value>5N04</value>
  1140. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1141. <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
  1142. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1143. <tstamp>5DEE20AB</tstamp>
  1144. </comp>
  1145. <comp ref="R67">
  1146. <value>4702</value>
  1147. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1148. <datasheet>~</datasheet>
  1149. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1150. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1151. <tstamp>5DFB2327</tstamp>
  1152. </comp>
  1153. <comp ref="R68">
  1154. <value>472</value>
  1155. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1156. <datasheet>~</datasheet>
  1157. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1158. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1159. <tstamp>5DFB2334</tstamp>
  1160. </comp>
  1161. <comp ref="Q16">
  1162. <value>5N04</value>
  1163. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1164. <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
  1165. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1166. <tstamp>5DFB2347</tstamp>
  1167. </comp>
  1168. <comp ref="R65">
  1169. <value>4702</value>
  1170. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1171. <datasheet>~</datasheet>
  1172. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1173. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1174. <tstamp>5DFCB835</tstamp>
  1175. </comp>
  1176. <comp ref="R66">
  1177. <value>472</value>
  1178. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1179. <datasheet>~</datasheet>
  1180. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1181. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1182. <tstamp>5DFCB842</tstamp>
  1183. </comp>
  1184. <comp ref="Q15">
  1185. <value>5N04</value>
  1186. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1187. <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
  1188. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1189. <tstamp>5DFCB855</tstamp>
  1190. </comp>
  1191. <comp ref="D14">
  1192. <value>LED</value>
  1193. <footprint>LED_SMD:LED_0805_2012Metric</footprint>
  1194. <libsource lib="forecast_Air202-rescue" part="LED-Device" description=""/>
  1195. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1196. <tstamp>5AA65A7E</tstamp>
  1197. </comp>
  1198. <comp ref="R46">
  1199. <value>472</value>
  1200. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1201. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1202. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1203. <tstamp>5AA65516</tstamp>
  1204. </comp>
  1205. <comp ref="J8">
  1206. <value>LCD</value>
  1207. <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
  1208. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  1209. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1210. <tstamp>5AA50034</tstamp>
  1211. </comp>
  1212. <comp ref="J18">
  1213. <value>LIMIT</value>
  1214. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
  1215. <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
  1216. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1217. <tstamp>5E0D793A</tstamp>
  1218. </comp>
  1219. <comp ref="R24">
  1220. <value>102</value>
  1221. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1222. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1223. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1224. <tstamp>5D3F1C2E</tstamp>
  1225. </comp>
  1226. <comp ref="J30">
  1227. <value>DiYe</value>
  1228. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical</footprint>
  1229. <libsource lib="forecast_Air202-rescue" part="Conn_01x02" description=""/>
  1230. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1231. <tstamp>5D3F1C22</tstamp>
  1232. </comp>
  1233. <comp ref="Q1">
  1234. <value>5N04</value>
  1235. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1236. <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
  1237. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1238. <tstamp>5D3F1C28</tstamp>
  1239. </comp>
  1240. <comp ref="R25">
  1241. <value>104</value>
  1242. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1243. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1244. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1245. <tstamp>5D3F1C34</tstamp>
  1246. </comp>
  1247. <comp ref="D9">
  1248. <value>SS34</value>
  1249. <footprint>Diode_SMD:D_SMA</footprint>
  1250. <datasheet>~</datasheet>
  1251. <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
  1252. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1253. <tstamp>5D6EDB96</tstamp>
  1254. </comp>
  1255. <comp ref="R22">
  1256. <value>102</value>
  1257. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1258. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1259. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1260. <tstamp>5DC3A47F</tstamp>
  1261. </comp>
  1262. <comp ref="Q14">
  1263. <value>5P40</value>
  1264. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1265. <datasheet>~</datasheet>
  1266. <libsource lib="Device" part="Q_PMOS_GSD" description="P-MOSFET transistor, gate/source/drain"/>
  1267. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1268. <tstamp>5DA0FDBD</tstamp>
  1269. </comp>
  1270. <comp ref="R27">
  1271. <value>102</value>
  1272. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1273. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1274. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1275. <tstamp>5D891013</tstamp>
  1276. </comp>
  1277. <comp ref="Q19">
  1278. <value>5551</value>
  1279. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1280. <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
  1281. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1282. <tstamp>5D840406</tstamp>
  1283. </comp>
  1284. <comp ref="R60">
  1285. <value>102</value>
  1286. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1287. <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
  1288. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1289. <tstamp>5D441041</tstamp>
  1290. </comp>
  1291. <comp ref="D13">
  1292. <value>LED</value>
  1293. <footprint>LED_SMD:LED_0805_2012Metric</footprint>
  1294. <libsource lib="forecast_Air202-rescue" part="LED-Device" description=""/>
  1295. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1296. <tstamp>5DE3D4AE</tstamp>
  1297. </comp>
  1298. <comp ref="U9">
  1299. <value>SIM_QFN</value>
  1300. <footprint>My_Connectors:SIM_QFN8</footprint>
  1301. <libsource lib="My_Jack" part="SIM_QFN" description=""/>
  1302. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1303. <tstamp>5F43168A</tstamp>
  1304. </comp>
  1305. <comp ref="U10">
  1306. <value>SIM_8P</value>
  1307. <footprint>My_Connectors:SIMCard_8P_Micro</footprint>
  1308. <libsource lib="My_Jack" part="SIM_8P" description=""/>
  1309. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1310. <tstamp>5F4CD8F6</tstamp>
  1311. </comp>
  1312. <comp ref="R62">
  1313. <value>0</value>
  1314. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  1315. <datasheet>~</datasheet>
  1316. <libsource lib="Device" part="R" description="Resistor"/>
  1317. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1318. <tstamp>5FA6C04C</tstamp>
  1319. </comp>
  1320. <comp ref="C22">
  1321. <value>33pF</value>
  1322. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1323. <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
  1324. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1325. <tstamp>5AA2E7F9</tstamp>
  1326. </comp>
  1327. <comp ref="J20">
  1328. <value>Conn_01x03</value>
  1329. <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical</footprint>
  1330. <datasheet>~</datasheet>
  1331. <libsource lib="Connector_Generic" part="Conn_01x03" description="Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  1332. <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
  1333. <tstamp>5F54AB47</tstamp>
  1334. </comp>
  1335. </components>
  1336. <libparts>
  1337. <libpart lib="CONN" part="Conn_01x02">
  1338. <description>Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
  1339. <docs>~</docs>
  1340. <footprints>
  1341. <fp>Connector*:*_1x??_*</fp>
  1342. </footprints>
  1343. <fields>
  1344. <field name="Reference">J</field>
  1345. <field name="Value">Conn_01x02</field>
  1346. </fields>
  1347. <pins>
  1348. <pin num="1" name="Pin_1" type="passive"/>
  1349. <pin num="2" name="Pin_2" type="passive"/>
  1350. </pins>
  1351. </libpart>
  1352. <libpart lib="CONN" part="Conn_01x04">
  1353. <description>Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
  1354. <docs>~</docs>
  1355. <footprints>
  1356. <fp>Connector*:*_1x??_*</fp>
  1357. </footprints>
  1358. <fields>
  1359. <field name="Reference">J</field>
  1360. <field name="Value">Conn_01x04</field>
  1361. </fields>
  1362. <pins>
  1363. <pin num="1" name="Pin_1" type="passive"/>
  1364. <pin num="2" name="Pin_2" type="passive"/>
  1365. <pin num="3" name="Pin_3" type="passive"/>
  1366. <pin num="4" name="Pin_4" type="passive"/>
  1367. </pins>
  1368. </libpart>
  1369. <libpart lib="Connector_Generic" part="Conn_01x03">
  1370. <description>Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
  1371. <docs>~</docs>
  1372. <footprints>
  1373. <fp>Connector*:*_1x??_*</fp>
  1374. </footprints>
  1375. <fields>
  1376. <field name="Reference">J</field>
  1377. <field name="Value">Conn_01x03</field>
  1378. </fields>
  1379. <pins>
  1380. <pin num="1" name="Pin_1" type="passive"/>
  1381. <pin num="2" name="Pin_2" type="passive"/>
  1382. <pin num="3" name="Pin_3" type="passive"/>
  1383. </pins>
  1384. </libpart>
  1385. <libpart lib="Device" part="C">
  1386. <description>Unpolarized capacitor</description>
  1387. <docs>~</docs>
  1388. <footprints>
  1389. <fp>C_*</fp>
  1390. </footprints>
  1391. <fields>
  1392. <field name="Reference">C</field>
  1393. <field name="Value">C</field>
  1394. </fields>
  1395. <pins>
  1396. <pin num="1" name="~" type="passive"/>
  1397. <pin num="2" name="~" type="passive"/>
  1398. </pins>
  1399. </libpart>
  1400. <libpart lib="Device" part="CP">
  1401. <description>Polarized capacitor</description>
  1402. <docs>~</docs>
  1403. <footprints>
  1404. <fp>CP_*</fp>
  1405. </footprints>
  1406. <fields>
  1407. <field name="Reference">C</field>
  1408. <field name="Value">CP</field>
  1409. </fields>
  1410. <pins>
  1411. <pin num="1" name="~" type="passive"/>
  1412. <pin num="2" name="~" type="passive"/>
  1413. </pins>
  1414. </libpart>
  1415. <libpart lib="Device" part="Q_PMOS_GSD">
  1416. <description>P-MOSFET transistor, gate/source/drain</description>
  1417. <docs>~</docs>
  1418. <fields>
  1419. <field name="Reference">Q</field>
  1420. <field name="Value">Q_PMOS_GSD</field>
  1421. </fields>
  1422. <pins>
  1423. <pin num="1" name="G" type="input"/>
  1424. <pin num="2" name="S" type="passive"/>
  1425. <pin num="3" name="D" type="passive"/>
  1426. </pins>
  1427. </libpart>
  1428. <libpart lib="Device" part="R">
  1429. <description>Resistor</description>
  1430. <docs>~</docs>
  1431. <footprints>
  1432. <fp>R_*</fp>
  1433. </footprints>
  1434. <fields>
  1435. <field name="Reference">R</field>
  1436. <field name="Value">R</field>
  1437. </fields>
  1438. <pins>
  1439. <pin num="1" name="~" type="passive"/>
  1440. <pin num="2" name="~" type="passive"/>
  1441. </pins>
  1442. </libpart>
  1443. <libpart lib="Driver_Motor" part="DRV8871DDA">
  1444. <description>Brushed DC Motor Driver, PWM Control, 45V, 3.6A, Current limiting, HTSOP-8</description>
  1445. <docs>http://www.ti.com/lit/ds/symlink/drv8871.pdf</docs>
  1446. <footprints>
  1447. <fp>Texas*HTSOP*1EP*3.9x4.9mm*P1.27mm*EP2.95x4.9mm*Mask2.4x3.1mm*</fp>
  1448. </footprints>
  1449. <fields>
  1450. <field name="Reference">U</field>
  1451. <field name="Value">DRV8871DDA</field>
  1452. <field name="Footprint">Package_SO:Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias</field>
  1453. </fields>
  1454. <pins>
  1455. <pin num="1" name="GND" type="power_in"/>
  1456. <pin num="2" name="IN2" type="input"/>
  1457. <pin num="3" name="IN1" type="input"/>
  1458. <pin num="4" name="ILIM" type="passive"/>
  1459. <pin num="5" name="VM" type="power_in"/>
  1460. <pin num="6" name="OUT1" type="output"/>
  1461. <pin num="7" name="GND" type="passive"/>
  1462. <pin num="8" name="OUT2" type="output"/>
  1463. <pin num="9" name="GND" type="passive"/>
  1464. </pins>
  1465. </libpart>
  1466. <libpart lib="My_Jack" part="SIM_8P">
  1467. <fields>
  1468. <field name="Reference">U</field>
  1469. <field name="Value">SIM_8P</field>
  1470. </fields>
  1471. <pins>
  1472. <pin num="C1" name="VCC" type="input"/>
  1473. <pin num="C2" name="RST" type="input"/>
  1474. <pin num="C3" name="CLK" type="input"/>
  1475. <pin num="C4" name="NC" type="input"/>
  1476. <pin num="C5" name="GND" type="input"/>
  1477. <pin num="C6" name="VPP" type="input"/>
  1478. <pin num="C7" name="IO" type="input"/>
  1479. <pin num="C8" name="NC" type="input"/>
  1480. <pin num="SW" name="SW" type="input"/>
  1481. </pins>
  1482. </libpart>
  1483. <libpart lib="My_Jack" part="SIM_QFN">
  1484. <fields>
  1485. <field name="Reference">U</field>
  1486. <field name="Value">SIM_QFN</field>
  1487. </fields>
  1488. <pins>
  1489. <pin num="1" name="VSS" type="input"/>
  1490. <pin num="2" name="NC" type="input"/>
  1491. <pin num="3" name="IO" type="input"/>
  1492. <pin num="4" name="NC" type="input"/>
  1493. <pin num="5" name="NC" type="input"/>
  1494. <pin num="6" name="CLK" type="input"/>
  1495. <pin num="7" name="RST" type="input"/>
  1496. <pin num="8" name="VDD" type="input"/>
  1497. </pins>
  1498. </libpart>
  1499. <libpart lib="forecast_Air202-rescue" part="4117">
  1500. <fields>
  1501. <field name="Reference">K</field>
  1502. <field name="Value">4117</field>
  1503. </fields>
  1504. <pins>
  1505. <pin num="1" name="~" type="passive"/>
  1506. <pin num="2" name="~" type="input"/>
  1507. <pin num="5" name="~" type="input"/>
  1508. <pin num="6" name="~" type="passive"/>
  1509. <pin num="7" name="~" type="input"/>
  1510. </pins>
  1511. </libpart>
  1512. <libpart lib="forecast_Air202-rescue" part="APE8865N-33-HF-3-RESCUE-forecast_Air202">
  1513. <footprints>
  1514. <fp>SOT?23*</fp>
  1515. </footprints>
  1516. <fields>
  1517. <field name="Reference">U</field>
  1518. <field name="Value">APE8865N-33-HF-3-RESCUE-forecast_Air202</field>
  1519. <field name="Footprint">TO_SOT_Packages_SMD:SOT-23</field>
  1520. </fields>
  1521. <pins>
  1522. <pin num="1" name="GND" type="power_in"/>
  1523. <pin num="2" name="VO" type="power_out"/>
  1524. <pin num="3" name="VI" type="power_in"/>
  1525. </pins>
  1526. </libpart>
  1527. <libpart lib="forecast_Air202-rescue" part="Air202">
  1528. <fields>
  1529. <field name="Reference">U</field>
  1530. <field name="Value">Air202</field>
  1531. </fields>
  1532. <pins>
  1533. <pin num="1" name="PWRKEY" type="passive"/>
  1534. <pin num="2" name="SPI_CS/IO_10" type="passive"/>
  1535. <pin num="3" name="SPI_CLK/IO_8" type="input"/>
  1536. <pin num="4" name="SPI_DO/IO_11" type="input"/>
  1537. <pin num="5" name="SPI_DI/IO_12" type="input"/>
  1538. <pin num="6" name="UART1_CTS/IO_3" type="input"/>
  1539. <pin num="7" name="UART1_RTS/IO_2" type="output"/>
  1540. <pin num="8" name="UART1_TXD/IO_1" type="input"/>
  1541. <pin num="9" name="UART1_RXD/IO_0" type="input"/>
  1542. <pin num="10" name="UART1_DCD/IO_31" type="input"/>
  1543. <pin num="11" name="UART_RI/IO_30" type="input"/>
  1544. <pin num="12" name="IO_29" type="input"/>
  1545. <pin num="13" name="IO_33" type="input"/>
  1546. <pin num="14" name="ADC0" type="input"/>
  1547. <pin num="15" name="GND" type="power_in"/>
  1548. <pin num="16" name="SPKP" type="output"/>
  1549. <pin num="17" name="SPKN" type="BiDi"/>
  1550. <pin num="18" name="MICP" type="BiDi"/>
  1551. <pin num="19" name="MICN" type="BiDi"/>
  1552. <pin num="20" name="SIM_RST" type="BiDi"/>
  1553. <pin num="21" name="SIM_VDD" type="power_out"/>
  1554. <pin num="22" name="SIM_DAT" type="input"/>
  1555. <pin num="23" name="SIM_CLK" type="output"/>
  1556. <pin num="24" name="VDDIO" type="power_out"/>
  1557. <pin num="25" name="HOST_RXD" type="output"/>
  1558. <pin num="26" name="HOST_TXD" type="input"/>
  1559. <pin num="27" name="UART2_RXD_IO4" type="BiDi"/>
  1560. <pin num="28" name="UART2_TXD_IO5" type="BiDi"/>
  1561. <pin num="29" name="I2C3_SCL_IO6" type="BiDi"/>
  1562. <pin num="30" name="I2C3_SDA_IO7" type="BiDi"/>
  1563. <pin num="31" name="GND" type="power_in"/>
  1564. <pin num="32" name="ANT" type="output"/>
  1565. <pin num="33" name="GND" type="power_in"/>
  1566. <pin num="34" name="RESET" type="input"/>
  1567. <pin num="35" name="GND" type="power_in"/>
  1568. <pin num="36" name="GND" type="power_in"/>
  1569. <pin num="37" name="VBAT" type="power_in"/>
  1570. <pin num="38" name="VBAT" type="power_in"/>
  1571. </pins>
  1572. </libpart>
  1573. <libpart lib="forecast_Air202-rescue" part="Antenna_Shield-Device">
  1574. <fields>
  1575. <field name="Reference">AE</field>
  1576. <field name="Value">Antenna_Shield-Device</field>
  1577. </fields>
  1578. <pins>
  1579. <pin num="1" name="A" type="input"/>
  1580. <pin num="2" name="Shield" type="input"/>
  1581. </pins>
  1582. </libpart>
  1583. <libpart lib="forecast_Air202-rescue" part="C-Device">
  1584. <footprints>
  1585. <fp>C_*</fp>
  1586. </footprints>
  1587. <fields>
  1588. <field name="Reference">C</field>
  1589. <field name="Value">C-Device</field>
  1590. </fields>
  1591. <pins>
  1592. <pin num="1" name="~" type="passive"/>
  1593. <pin num="2" name="~" type="passive"/>
  1594. </pins>
  1595. </libpart>
  1596. <libpart lib="forecast_Air202-rescue" part="CP-Device">
  1597. <footprints>
  1598. <fp>CP_*</fp>
  1599. </footprints>
  1600. <fields>
  1601. <field name="Reference">C</field>
  1602. <field name="Value">CP-Device</field>
  1603. </fields>
  1604. <pins>
  1605. <pin num="1" name="~" type="passive"/>
  1606. <pin num="2" name="~" type="passive"/>
  1607. </pins>
  1608. </libpart>
  1609. <libpart lib="forecast_Air202-rescue" part="C_Small-Device">
  1610. <footprints>
  1611. <fp>C_*</fp>
  1612. </footprints>
  1613. <fields>
  1614. <field name="Reference">C</field>
  1615. <field name="Value">C_Small-Device</field>
  1616. </fields>
  1617. <pins>
  1618. <pin num="1" name="~" type="passive"/>
  1619. <pin num="2" name="~" type="passive"/>
  1620. </pins>
  1621. </libpart>
  1622. <libpart lib="forecast_Air202-rescue" part="Conn_01x02">
  1623. <footprints>
  1624. <fp>Connector*:*_??x*mm*</fp>
  1625. <fp>Connector*:*1x??x*mm*</fp>
  1626. <fp>Pin?Header?Straight?1X*</fp>
  1627. <fp>Pin?Header?Angled?1X*</fp>
  1628. <fp>Socket?Strip?Straight?1X*</fp>
  1629. <fp>Socket?Strip?Angled?1X*</fp>
  1630. </footprints>
  1631. <fields>
  1632. <field name="Reference">J</field>
  1633. <field name="Value">Conn_01x02</field>
  1634. </fields>
  1635. <pins>
  1636. <pin num="1" name="Pin_1" type="passive"/>
  1637. <pin num="2" name="Pin_2" type="passive"/>
  1638. </pins>
  1639. </libpart>
  1640. <libpart lib="forecast_Air202-rescue" part="Conn_01x04">
  1641. <footprints>
  1642. <fp>Connector*:*_??x*mm*</fp>
  1643. <fp>Connector*:*1x??x*mm*</fp>
  1644. <fp>Pin?Header?Straight?1X*</fp>
  1645. <fp>Pin?Header?Angled?1X*</fp>
  1646. <fp>Socket?Strip?Straight?1X*</fp>
  1647. <fp>Socket?Strip?Angled?1X*</fp>
  1648. </footprints>
  1649. <fields>
  1650. <field name="Reference">J</field>
  1651. <field name="Value">Conn_01x04</field>
  1652. </fields>
  1653. <pins>
  1654. <pin num="1" name="Pin_1" type="passive"/>
  1655. <pin num="2" name="Pin_2" type="passive"/>
  1656. <pin num="3" name="Pin_3" type="passive"/>
  1657. <pin num="4" name="Pin_4" type="passive"/>
  1658. </pins>
  1659. </libpart>
  1660. <libpart lib="forecast_Air202-rescue" part="D-Device">
  1661. <footprints>
  1662. <fp>TO-???*</fp>
  1663. <fp>*_Diode_*</fp>
  1664. <fp>*SingleDiode*</fp>
  1665. <fp>D_*</fp>
  1666. </footprints>
  1667. <fields>
  1668. <field name="Reference">D</field>
  1669. <field name="Value">D-Device</field>
  1670. </fields>
  1671. <pins>
  1672. <pin num="1" name="K" type="passive"/>
  1673. <pin num="2" name="A" type="passive"/>
  1674. </pins>
  1675. </libpart>
  1676. <libpart lib="forecast_Air202-rescue" part="D_Schottky-Device">
  1677. <footprints>
  1678. <fp>TO-???*</fp>
  1679. <fp>*_Diode_*</fp>
  1680. <fp>*SingleDiode*</fp>
  1681. <fp>D_*</fp>
  1682. </footprints>
  1683. <fields>
  1684. <field name="Reference">D</field>
  1685. <field name="Value">D_Schottky-Device</field>
  1686. </fields>
  1687. <pins>
  1688. <pin num="1" name="K" type="passive"/>
  1689. <pin num="2" name="A" type="passive"/>
  1690. </pins>
  1691. </libpart>
  1692. <libpart lib="forecast_Air202-rescue" part="ESDA6V8AV5">
  1693. <fields>
  1694. <field name="Reference">U</field>
  1695. <field name="Value">ESDA6V8AV5</field>
  1696. </fields>
  1697. <pins>
  1698. <pin num="1" name="I/O1" type="input"/>
  1699. <pin num="2" name="GND" type="input"/>
  1700. <pin num="3" name="I/O2" type="input"/>
  1701. <pin num="4" name="I/O3" type="input"/>
  1702. <pin num="5" name="I/04" type="input"/>
  1703. </pins>
  1704. </libpart>
  1705. <libpart lib="forecast_Air202-rescue" part="Fuse-Device">
  1706. <footprints>
  1707. <fp>*Fuse*</fp>
  1708. </footprints>
  1709. <fields>
  1710. <field name="Reference">F</field>
  1711. <field name="Value">Fuse-Device</field>
  1712. </fields>
  1713. <pins>
  1714. <pin num="1" name="~" type="passive"/>
  1715. <pin num="2" name="~" type="passive"/>
  1716. </pins>
  1717. </libpart>
  1718. <libpart lib="forecast_Air202-rescue" part="IRF540N">
  1719. <footprints>
  1720. <fp>TO?220*</fp>
  1721. </footprints>
  1722. <fields>
  1723. <field name="Reference">Q</field>
  1724. <field name="Value">IRF540N</field>
  1725. <field name="Footprint">TO_SOT_Packages_THT:TO-220_Vertical</field>
  1726. </fields>
  1727. <pins>
  1728. <pin num="1" name="G" type="input"/>
  1729. <pin num="2" name="D" type="passive"/>
  1730. <pin num="3" name="S" type="passive"/>
  1731. </pins>
  1732. </libpart>
  1733. <libpart lib="forecast_Air202-rescue" part="JW5033H">
  1734. <fields>
  1735. <field name="Reference">U</field>
  1736. <field name="Value">JW5033H</field>
  1737. </fields>
  1738. <pins>
  1739. <pin num="1" name="GND" type="power_in"/>
  1740. <pin num="2" name="SW" type="power_out"/>
  1741. <pin num="3" name="VIN" type="power_in"/>
  1742. <pin num="4" name="FB" type="passive"/>
  1743. <pin num="5" name="EN" type="passive"/>
  1744. <pin num="6" name="BST" type="passive"/>
  1745. </pins>
  1746. </libpart>
  1747. <libpart lib="forecast_Air202-rescue" part="L-Device">
  1748. <footprints>
  1749. <fp>Choke_*</fp>
  1750. <fp>*Coil*</fp>
  1751. <fp>Inductor_*</fp>
  1752. <fp>L_*</fp>
  1753. </footprints>
  1754. <fields>
  1755. <field name="Reference">L</field>
  1756. <field name="Value">L-Device</field>
  1757. </fields>
  1758. <pins>
  1759. <pin num="1" name="1" type="passive"/>
  1760. <pin num="2" name="2" type="passive"/>
  1761. </pins>
  1762. </libpart>
  1763. <libpart lib="forecast_Air202-rescue" part="LED-Device">
  1764. <footprints>
  1765. <fp>LED*</fp>
  1766. <fp>LED_SMD:*</fp>
  1767. <fp>LED_THT:*</fp>
  1768. </footprints>
  1769. <fields>
  1770. <field name="Reference">D</field>
  1771. <field name="Value">LED-Device</field>
  1772. </fields>
  1773. <pins>
  1774. <pin num="1" name="K" type="passive"/>
  1775. <pin num="2" name="A" type="passive"/>
  1776. </pins>
  1777. </libpart>
  1778. <libpart lib="forecast_Air202-rescue" part="LM2576">
  1779. <fields>
  1780. <field name="Reference">U</field>
  1781. <field name="Value">LM2576</field>
  1782. </fields>
  1783. <pins>
  1784. <pin num="1" name="Vin" type="input"/>
  1785. <pin num="2" name="OUT" type="input"/>
  1786. <pin num="3" name="GND" type="input"/>
  1787. <pin num="4" name="FEEDBACK" type="input"/>
  1788. <pin num="5" name="~ON~/OFF" type="input"/>
  1789. </pins>
  1790. </libpart>
  1791. <libpart lib="forecast_Air202-rescue" part="Mounting_Hole_PAD">
  1792. <footprints>
  1793. <fp>Mounting?Hole*</fp>
  1794. <fp>Hole*</fp>
  1795. </footprints>
  1796. <fields>
  1797. <field name="Reference">MK</field>
  1798. <field name="Value">Mounting_Hole_PAD</field>
  1799. </fields>
  1800. <pins>
  1801. <pin num="1" name="1" type="input"/>
  1802. </pins>
  1803. </libpart>
  1804. <libpart lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device">
  1805. <fields>
  1806. <field name="Reference">Q</field>
  1807. <field name="Value">Q_NMOS_GSD-Device</field>
  1808. </fields>
  1809. <pins>
  1810. <pin num="1" name="G" type="input"/>
  1811. <pin num="2" name="S" type="passive"/>
  1812. <pin num="3" name="D" type="passive"/>
  1813. </pins>
  1814. </libpart>
  1815. <libpart lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device">
  1816. <fields>
  1817. <field name="Reference">Q</field>
  1818. <field name="Value">Q_NPN_BEC-Device</field>
  1819. </fields>
  1820. <pins>
  1821. <pin num="1" name="B" type="input"/>
  1822. <pin num="2" name="E" type="passive"/>
  1823. <pin num="3" name="C" type="passive"/>
  1824. </pins>
  1825. </libpart>
  1826. <libpart lib="forecast_Air202-rescue" part="Q_PMOS_GDS-Device">
  1827. <fields>
  1828. <field name="Reference">Q</field>
  1829. <field name="Value">Q_PMOS_GDS-Device</field>
  1830. </fields>
  1831. <pins>
  1832. <pin num="1" name="G" type="input"/>
  1833. <pin num="2" name="D" type="passive"/>
  1834. <pin num="3" name="S" type="passive"/>
  1835. </pins>
  1836. </libpart>
  1837. <libpart lib="forecast_Air202-rescue" part="R-Device">
  1838. <footprints>
  1839. <fp>R_*</fp>
  1840. </footprints>
  1841. <fields>
  1842. <field name="Reference">R</field>
  1843. <field name="Value">R-Device</field>
  1844. </fields>
  1845. <pins>
  1846. <pin num="1" name="~" type="passive"/>
  1847. <pin num="2" name="~" type="passive"/>
  1848. </pins>
  1849. </libpart>
  1850. <libpart lib="forecast_Air202-rescue" part="STM8S003-RESCUE-forecast_Air202">
  1851. <footprints>
  1852. <fp>TSSOP</fp>
  1853. <fp>LQFP</fp>
  1854. </footprints>
  1855. <fields>
  1856. <field name="Reference">U</field>
  1857. <field name="Value">STM8S003-RESCUE-forecast_Air202</field>
  1858. <field name="Footprint">Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm</field>
  1859. </fields>
  1860. <pins>
  1861. <pin num="1" name="PD4" type="BiDi"/>
  1862. <pin num="2" name="PD5" type="BiDi"/>
  1863. <pin num="3" name="PD6" type="BiDi"/>
  1864. <pin num="4" name="NRST" type="input"/>
  1865. <pin num="5" name="PA1" type="input"/>
  1866. <pin num="6" name="PA2" type="input"/>
  1867. <pin num="7" name="VSS" type="power_in"/>
  1868. <pin num="8" name="VCAP" type="output"/>
  1869. <pin num="9" name="VDD" type="power_in"/>
  1870. <pin num="10" name="PA3" type="BiDi"/>
  1871. <pin num="11" name="PB5" type="input"/>
  1872. <pin num="12" name="PB4" type="input"/>
  1873. <pin num="13" name="PC3" type="input"/>
  1874. <pin num="14" name="PC4" type="BiDi"/>
  1875. <pin num="15" name="PC5" type="input"/>
  1876. <pin num="16" name="PC6" type="output"/>
  1877. <pin num="17" name="PC7" type="output"/>
  1878. <pin num="18" name="PD1" type="input"/>
  1879. <pin num="19" name="PD2" type="output"/>
  1880. <pin num="20" name="PD3" type="input"/>
  1881. </pins>
  1882. </libpart>
  1883. <libpart lib="forecast_Air202-rescue" part="Screw_Terminal_01x02">
  1884. <footprints>
  1885. <fp>Connector*Terminal*Block*:*</fp>
  1886. <fp>TerminalBlock*</fp>
  1887. </footprints>
  1888. <fields>
  1889. <field name="Reference">J</field>
  1890. <field name="Value">Screw_Terminal_01x02</field>
  1891. </fields>
  1892. <pins>
  1893. <pin num="1" name="Pin_1" type="passive"/>
  1894. <pin num="2" name="Pin_2" type="passive"/>
  1895. </pins>
  1896. </libpart>
  1897. <libpart lib="forecast_Air202-rescue" part="Screw_Terminal_01x04">
  1898. <footprints>
  1899. <fp>Connector*Terminal*Block*:*</fp>
  1900. <fp>TerminalBlock*</fp>
  1901. </footprints>
  1902. <fields>
  1903. <field name="Reference">J</field>
  1904. <field name="Value">Screw_Terminal_01x04</field>
  1905. </fields>
  1906. <pins>
  1907. <pin num="1" name="Pin_1" type="passive"/>
  1908. <pin num="2" name="Pin_2" type="passive"/>
  1909. <pin num="3" name="Pin_3" type="passive"/>
  1910. <pin num="4" name="Pin_4" type="passive"/>
  1911. </pins>
  1912. </libpart>
  1913. <libpart lib="forecast_Air202-rescue" part="TEST_1P">
  1914. <fields>
  1915. <field name="Reference">J</field>
  1916. <field name="Value">TEST_1P</field>
  1917. </fields>
  1918. <pins>
  1919. <pin num="1" name="1" type="passive"/>
  1920. </pins>
  1921. </libpart>
  1922. </libparts>
  1923. <libraries>
  1924. <library logical="CONN">
  1925. <uri>D:/Program Files/KiCad/share/kicad/library/Connector_Generic.lib</uri>
  1926. </library>
  1927. <library logical="Connector_Generic">
  1928. <uri>D:\Program Files\KiCad\share\kicad\library/Connector_Generic.lib</uri>
  1929. </library>
  1930. <library logical="Device">
  1931. <uri>D:\Program Files\KiCad\share\kicad\library/Device.lib</uri>
  1932. </library>
  1933. <library logical="Driver_Motor">
  1934. <uri>D:\Program Files\KiCad\share\kicad\library/Driver_Motor.lib</uri>
  1935. </library>
  1936. <library logical="My_Jack">
  1937. <uri>D:/KicadLib/MyLib/My_Jack.lib</uri>
  1938. </library>
  1939. <library logical="forecast_Air202-rescue">
  1940. <uri>F:\坚果云\研发资料(A)\孢子仪\YF_BZYV2\BZY-2.3/forecast_Air202-rescue.lib</uri>
  1941. </library>
  1942. </libraries>
  1943. <nets>
  1944. <net code="1" name="/AIR202/COOL_WIND">
  1945. <node ref="R38" pin="2"/>
  1946. <node ref="Q9" pin="2"/>
  1947. <node ref="U4" pin="12"/>
  1948. </net>
  1949. <net code="2" name="/AIR202/RST">
  1950. <node ref="U4" pin="34"/>
  1951. <node ref="U2" pin="10"/>
  1952. </net>
  1953. <net code="3" name="/AIR202/SCL">
  1954. <node ref="R30" pin="2"/>
  1955. <node ref="U4" pin="29"/>
  1956. <node ref="U2" pin="12"/>
  1957. <node ref="J6" pin="4"/>
  1958. </net>
  1959. <net code="4" name="/AIR202/SDA">
  1960. <node ref="U4" pin="30"/>
  1961. <node ref="R29" pin="2"/>
  1962. <node ref="U2" pin="11"/>
  1963. <node ref="J6" pin="2"/>
  1964. </net>
  1965. <net code="5" name="/POWER/V_BAT">
  1966. <node ref="R55" pin="1"/>
  1967. <node ref="R56" pin="2"/>
  1968. <node ref="U2" pin="20"/>
  1969. </net>
  1970. <net code="6" name="+24V">
  1971. <node ref="C29" pin="1"/>
  1972. <node ref="R55" pin="2"/>
  1973. <node ref="D7" pin="1"/>
  1974. <node ref="D5" pin="1"/>
  1975. <node ref="C7" pin="2"/>
  1976. <node ref="J17" pin="2"/>
  1977. <node ref="C6" pin="1"/>
  1978. <node ref="J19" pin="2"/>
  1979. <node ref="D6" pin="1"/>
  1980. <node ref="U1" pin="1"/>
  1981. <node ref="J1" pin="2"/>
  1982. <node ref="U7" pin="5"/>
  1983. <node ref="F1" pin="1"/>
  1984. <node ref="J30" pin="1"/>
  1985. </net>
  1986. <net code="7" name="Net-(Q3-Pad3)">
  1987. <node ref="Q3" pin="3"/>
  1988. <node ref="R11" pin="2"/>
  1989. <node ref="R7" pin="1"/>
  1990. <node ref="Q4" pin="1"/>
  1991. </net>
  1992. <net code="8" name="Net-(Q6-Pad3)">
  1993. <node ref="Q7" pin="1"/>
  1994. <node ref="Q6" pin="3"/>
  1995. <node ref="R17" pin="2"/>
  1996. <node ref="R15" pin="1"/>
  1997. </net>
  1998. <net code="9" name="/STM8S003/PP_DW">
  1999. <node ref="U7" pin="2"/>
  2000. <node ref="U2" pin="16"/>
  2001. </net>
  2002. <net code="10" name="/STM8S003/PP_UP">
  2003. <node ref="U2" pin="17"/>
  2004. <node ref="U7" pin="3"/>
  2005. </net>
  2006. <net code="11" name="Net-(R10-Pad1)">
  2007. <node ref="R10" pin="1"/>
  2008. <node ref="U7" pin="4"/>
  2009. </net>
  2010. <net code="12" name="Net-(D6-Pad2)">
  2011. <node ref="D6" pin="2"/>
  2012. <node ref="J17" pin="1"/>
  2013. <node ref="Q7" pin="2"/>
  2014. </net>
  2015. <net code="13" name="Net-(J13-Pad2)">
  2016. <node ref="J13" pin="2"/>
  2017. <node ref="U7" pin="6"/>
  2018. </net>
  2019. <net code="14" name="Net-(J13-Pad1)">
  2020. <node ref="U7" pin="8"/>
  2021. <node ref="J13" pin="1"/>
  2022. </net>
  2023. <net code="15" name="Net-(Q3-Pad1)">
  2024. <node ref="R4" pin="1"/>
  2025. <node ref="Q3" pin="1"/>
  2026. </net>
  2027. <net code="16" name="Net-(D7-Pad2)">
  2028. <node ref="D7" pin="2"/>
  2029. <node ref="J19" pin="1"/>
  2030. <node ref="Q11" pin="2"/>
  2031. </net>
  2032. <net code="17" name="Net-(Q6-Pad1)">
  2033. <node ref="R14" pin="1"/>
  2034. <node ref="Q6" pin="1"/>
  2035. </net>
  2036. <net code="18" name="Net-(Q11-Pad1)">
  2037. <node ref="Q9" pin="3"/>
  2038. <node ref="R37" pin="1"/>
  2039. <node ref="R39" pin="2"/>
  2040. <node ref="Q11" pin="1"/>
  2041. </net>
  2042. <net code="19" name="Net-(Q9-Pad1)">
  2043. <node ref="Q9" pin="1"/>
  2044. <node ref="R36" pin="1"/>
  2045. </net>
  2046. <net code="20" name="Net-(D5-Pad2)">
  2047. <node ref="D5" pin="2"/>
  2048. <node ref="Q4" pin="2"/>
  2049. <node ref="J1" pin="1"/>
  2050. </net>
  2051. <net code="21" name="+3V3">
  2052. <node ref="R36" pin="2"/>
  2053. <node ref="R3" pin="1"/>
  2054. <node ref="J3" pin="1"/>
  2055. <node ref="R4" pin="2"/>
  2056. <node ref="U3" pin="2"/>
  2057. <node ref="C9" pin="1"/>
  2058. <node ref="R68" pin="2"/>
  2059. <node ref="U2" pin="9"/>
  2060. <node ref="R1" pin="1"/>
  2061. <node ref="R66" pin="2"/>
  2062. <node ref="R64" pin="2"/>
  2063. <node ref="R12" pin="1"/>
  2064. <node ref="R13" pin="1"/>
  2065. <node ref="C1" pin="2"/>
  2066. <node ref="J25" pin="1"/>
  2067. <node ref="C10" pin="1"/>
  2068. <node ref="R2" pin="1"/>
  2069. <node ref="R14" pin="2"/>
  2070. <node ref="R6" pin="1"/>
  2071. </net>
  2072. <net code="22" name="/STM8S003/TURN_IN">
  2073. <node ref="R5" pin="1"/>
  2074. <node ref="U2" pin="14"/>
  2075. </net>
  2076. <net code="23" name="/STM8S003/TURN_INO">
  2077. <node ref="R9" pin="1"/>
  2078. <node ref="U2" pin="13"/>
  2079. </net>
  2080. <net code="24" name="/STM8S003/LIMIT1">
  2081. <node ref="R43" pin="1"/>
  2082. <node ref="U2" pin="19"/>
  2083. </net>
  2084. <net code="25" name="/STM8S003/LIMIT2">
  2085. <node ref="R61" pin="1"/>
  2086. <node ref="U2" pin="6"/>
  2087. </net>
  2088. <net code="26" name="+5V">
  2089. <node ref="R37" pin="2"/>
  2090. <node ref="R51" pin="1"/>
  2091. <node ref="J21" pin="1"/>
  2092. <node ref="R63" pin="1"/>
  2093. <node ref="J18" pin="1"/>
  2094. <node ref="J8" pin="1"/>
  2095. <node ref="R65" pin="1"/>
  2096. <node ref="R67" pin="1"/>
  2097. <node ref="J15" pin="1"/>
  2098. <node ref="C30" pin="1"/>
  2099. <node ref="L4" pin="2"/>
  2100. <node ref="U1" pin="4"/>
  2101. <node ref="R15" pin="2"/>
  2102. <node ref="R7" pin="2"/>
  2103. <node ref="J5" pin="4"/>
  2104. <node ref="J6" pin="1"/>
  2105. <node ref="J23" pin="1"/>
  2106. <node ref="C12" pin="1"/>
  2107. <node ref="J14" pin="4"/>
  2108. <node ref="J12" pin="1"/>
  2109. <node ref="U3" pin="3"/>
  2110. </net>
  2111. <net code="27" name="Net-(J14-Pad3)">
  2112. <node ref="J14" pin="3"/>
  2113. <node ref="R12" pin="2"/>
  2114. <node ref="R43" pin="2"/>
  2115. </net>
  2116. <net code="28" name="Net-(J14-Pad2)">
  2117. <node ref="R61" pin="2"/>
  2118. <node ref="J14" pin="2"/>
  2119. <node ref="R13" pin="2"/>
  2120. </net>
  2121. <net code="29" name="Net-(J12-Pad3)">
  2122. <node ref="R9" pin="2"/>
  2123. <node ref="J12" pin="3"/>
  2124. <node ref="R3" pin="2"/>
  2125. </net>
  2126. <net code="30" name="Net-(J12-Pad2)">
  2127. <node ref="J12" pin="2"/>
  2128. <node ref="R5" pin="2"/>
  2129. <node ref="R2" pin="2"/>
  2130. </net>
  2131. <net code="31" name="Net-(J2-Pad2)">
  2132. <node ref="J2" pin="2"/>
  2133. <node ref="K7" pin="7"/>
  2134. </net>
  2135. <net code="32" name="/STM8S003/ADC">
  2136. <node ref="J4" pin="2"/>
  2137. <node ref="U2" pin="2"/>
  2138. <node ref="R1" pin="2"/>
  2139. </net>
  2140. <net code="33" name="/STM8S003/NTC">
  2141. <node ref="J9" pin="2"/>
  2142. <node ref="R6" pin="2"/>
  2143. <node ref="U2" pin="3"/>
  2144. </net>
  2145. <net code="34" name="/STM8S003/COLL_WIND">
  2146. <node ref="R16" pin="2"/>
  2147. <node ref="Q6" pin="2"/>
  2148. <node ref="U2" pin="5"/>
  2149. </net>
  2150. <net code="35" name="Net-(C8-Pad1)">
  2151. <node ref="C8" pin="1"/>
  2152. <node ref="U2" pin="8"/>
  2153. </net>
  2154. <net code="36" name="/STM8S003/COLD">
  2155. <node ref="R18" pin="1"/>
  2156. <node ref="U2" pin="1"/>
  2157. </net>
  2158. <net code="37" name="/STM8S003/TURN_PWM">
  2159. <node ref="R8" pin="2"/>
  2160. <node ref="Q3" pin="2"/>
  2161. <node ref="U2" pin="15"/>
  2162. </net>
  2163. <net code="38" name="Net-(J10-Pad2)">
  2164. <node ref="K8" pin="7"/>
  2165. <node ref="J10" pin="2"/>
  2166. </net>
  2167. <net code="39" name="Net-(Q8-Pad1)">
  2168. <node ref="R18" pin="2"/>
  2169. <node ref="R26" pin="1"/>
  2170. <node ref="Q8" pin="1"/>
  2171. </net>
  2172. <net code="40" name="/STM8S003/HEAT">
  2173. <node ref="U2" pin="18"/>
  2174. <node ref="J3" pin="2"/>
  2175. <node ref="R19" pin="1"/>
  2176. </net>
  2177. <net code="41" name="/STM8S003/NRST">
  2178. <node ref="U2" pin="4"/>
  2179. <node ref="C11" pin="2"/>
  2180. <node ref="J3" pin="4"/>
  2181. </net>
  2182. <net code="42" name="Net-(Q10-Pad1)">
  2183. <node ref="R19" pin="2"/>
  2184. <node ref="Q10" pin="1"/>
  2185. <node ref="R20" pin="1"/>
  2186. </net>
  2187. <net code="43" name="+12V">
  2188. <node ref="J28" pin="1"/>
  2189. <node ref="K8" pin="6"/>
  2190. <node ref="J22" pin="2"/>
  2191. <node ref="U8" pin="4"/>
  2192. <node ref="C34" pin="1"/>
  2193. <node ref="C4" pin="1"/>
  2194. <node ref="C44" pin="1"/>
  2195. <node ref="D2" pin="1"/>
  2196. <node ref="L1" pin="2"/>
  2197. <node ref="C43" pin="1"/>
  2198. <node ref="Q14" pin="2"/>
  2199. <node ref="K7" pin="6"/>
  2200. <node ref="R41" pin="1"/>
  2201. <node ref="U6" pin="3"/>
  2202. <node ref="D12" pin="1"/>
  2203. <node ref="R22" pin="1"/>
  2204. </net>
  2205. <net code="44" name="Net-(D12-Pad2)">
  2206. <node ref="Q10" pin="3"/>
  2207. <node ref="D12" pin="2"/>
  2208. <node ref="K7" pin="1"/>
  2209. </net>
  2210. <net code="45" name="+BATT">
  2211. <node ref="Q5" pin="2"/>
  2212. <node ref="K7" pin="5"/>
  2213. <node ref="K7" pin="2"/>
  2214. <node ref="J16" pin="2"/>
  2215. <node ref="K8" pin="2"/>
  2216. <node ref="K8" pin="5"/>
  2217. </net>
  2218. <net code="46" name="Net-(D2-Pad2)">
  2219. <node ref="K8" pin="1"/>
  2220. <node ref="D2" pin="2"/>
  2221. <node ref="Q8" pin="3"/>
  2222. </net>
  2223. <net code="47" name="Net-(D8-Pad1)">
  2224. <node ref="D8" pin="1"/>
  2225. <node ref="J21" pin="2"/>
  2226. <node ref="Q12" pin="3"/>
  2227. </net>
  2228. <net code="48" name="Net-(J7-Pad3)">
  2229. <node ref="R50" pin="1"/>
  2230. <node ref="J7" pin="3"/>
  2231. </net>
  2232. <net code="49" name="Net-(J7-Pad2)">
  2233. <node ref="J7" pin="2"/>
  2234. <node ref="R49" pin="1"/>
  2235. </net>
  2236. <net code="50" name="Net-(J5-Pad2)">
  2237. <node ref="R47" pin="1"/>
  2238. <node ref="J5" pin="2"/>
  2239. </net>
  2240. <net code="51" name="Net-(Q12-Pad1)">
  2241. <node ref="Q12" pin="1"/>
  2242. <node ref="R53" pin="1"/>
  2243. <node ref="R58" pin="2"/>
  2244. </net>
  2245. <net code="52" name="/AIR202/HK_Take">
  2246. <node ref="Q13" pin="3"/>
  2247. <node ref="J20" pin="1"/>
  2248. <node ref="R51" pin="2"/>
  2249. </net>
  2250. <net code="53" name="Net-(D13-Pad2)">
  2251. <node ref="Q13" pin="1"/>
  2252. <node ref="R59" pin="2"/>
  2253. <node ref="R57" pin="1"/>
  2254. <node ref="D13" pin="2"/>
  2255. </net>
  2256. <net code="54" name="Net-(J18-Pad3)">
  2257. <node ref="R45" pin="2"/>
  2258. <node ref="R52" pin="2"/>
  2259. <node ref="J18" pin="3"/>
  2260. </net>
  2261. <net code="55" name="Net-(J23-Pad2)">
  2262. <node ref="R63" pin="2"/>
  2263. <node ref="Q2" pin="3"/>
  2264. <node ref="J23" pin="2"/>
  2265. </net>
  2266. <net code="56" name="Net-(Q2-Pad1)">
  2267. <node ref="R64" pin="1"/>
  2268. <node ref="Q2" pin="1"/>
  2269. </net>
  2270. <net code="57" name="/AIR202/MOTOR_M">
  2271. <node ref="Q2" pin="2"/>
  2272. <node ref="U4" pin="5"/>
  2273. </net>
  2274. <net code="58" name="/AIR202/M_DIR">
  2275. <node ref="Q16" pin="3"/>
  2276. <node ref="J23" pin="3"/>
  2277. <node ref="R67" pin="2"/>
  2278. </net>
  2279. <net code="59" name="/AIR202/M_EN">
  2280. <node ref="R65" pin="2"/>
  2281. <node ref="J23" pin="4"/>
  2282. <node ref="Q15" pin="3"/>
  2283. </net>
  2284. <net code="60" name="+3V8">
  2285. <node ref="J27" pin="1"/>
  2286. <node ref="U4" pin="37"/>
  2287. <node ref="R40" pin="1"/>
  2288. <node ref="C33" pin="1"/>
  2289. <node ref="C15" pin="1"/>
  2290. <node ref="C35" pin="1"/>
  2291. <node ref="L2" pin="2"/>
  2292. <node ref="C16" pin="1"/>
  2293. <node ref="C17" pin="1"/>
  2294. <node ref="C32" pin="1"/>
  2295. <node ref="U4" pin="38"/>
  2296. </net>
  2297. <net code="61" name="Net-(C23-Pad2)">
  2298. <node ref="C23" pin="2"/>
  2299. <node ref="U4" pin="16"/>
  2300. <node ref="C24" pin="1"/>
  2301. <node ref="C27" pin="1"/>
  2302. <node ref="C26" pin="2"/>
  2303. <node ref="J11" pin="2"/>
  2304. </net>
  2305. <net code="62" name="Net-(C24-Pad2)">
  2306. <node ref="J11" pin="1"/>
  2307. <node ref="U4" pin="17"/>
  2308. <node ref="C28" pin="1"/>
  2309. <node ref="C25" pin="1"/>
  2310. <node ref="C27" pin="2"/>
  2311. <node ref="C24" pin="2"/>
  2312. </net>
  2313. <net code="63" name="/AIR202/DROP">
  2314. <node ref="U4" pin="13"/>
  2315. <node ref="R24" pin="1"/>
  2316. </net>
  2317. <net code="64" name="/AIR202/MOTOR_DW">
  2318. <node ref="U4" pin="7"/>
  2319. <node ref="R44" pin="1"/>
  2320. </net>
  2321. <net code="65" name="/AIR202/MOTOR_UP">
  2322. <node ref="U4" pin="6"/>
  2323. <node ref="R45" pin="1"/>
  2324. </net>
  2325. <net code="66" name="/AIR202/LIGHT">
  2326. <node ref="U4" pin="10"/>
  2327. <node ref="R58" pin="1"/>
  2328. </net>
  2329. <net code="67" name="Net-(R35-Pad1)">
  2330. <node ref="R35" pin="1"/>
  2331. <node ref="U4" pin="20"/>
  2332. </net>
  2333. <net code="68" name="Net-(AE1-Pad1)">
  2334. <node ref="U4" pin="32"/>
  2335. <node ref="AE1" pin="1"/>
  2336. </net>
  2337. <net code="69" name="Net-(R34-Pad1)">
  2338. <node ref="U4" pin="22"/>
  2339. <node ref="R34" pin="1"/>
  2340. </net>
  2341. <net code="70" name="Net-(R32-Pad2)">
  2342. <node ref="R32" pin="2"/>
  2343. <node ref="U4" pin="23"/>
  2344. </net>
  2345. <net code="71" name="Net-(R62-Pad1)">
  2346. <node ref="U9" pin="1"/>
  2347. <node ref="R62" pin="1"/>
  2348. </net>
  2349. <net code="72" name="Net-(U9-Pad2)">
  2350. <node ref="U9" pin="2"/>
  2351. </net>
  2352. <net code="73" name="Net-(U9-Pad4)">
  2353. <node ref="U9" pin="4"/>
  2354. </net>
  2355. <net code="74" name="Net-(U9-Pad5)">
  2356. <node ref="U9" pin="5"/>
  2357. </net>
  2358. <net code="75" name="Net-(C19-Pad1)">
  2359. <node ref="U10" pin="C1"/>
  2360. <node ref="C20" pin="1"/>
  2361. <node ref="C19" pin="1"/>
  2362. <node ref="U5" pin="3"/>
  2363. <node ref="U4" pin="21"/>
  2364. <node ref="U9" pin="8"/>
  2365. </net>
  2366. <net code="76" name="Net-(C18-Pad1)">
  2367. <node ref="C18" pin="1"/>
  2368. <node ref="R35" pin="2"/>
  2369. <node ref="U9" pin="7"/>
  2370. <node ref="U5" pin="4"/>
  2371. <node ref="U10" pin="C2"/>
  2372. </net>
  2373. <net code="77" name="Net-(C22-Pad1)">
  2374. <node ref="R32" pin="1"/>
  2375. <node ref="U5" pin="1"/>
  2376. <node ref="C22" pin="1"/>
  2377. <node ref="U9" pin="6"/>
  2378. <node ref="U10" pin="C3"/>
  2379. </net>
  2380. <net code="78" name="Net-(U10-PadC4)">
  2381. <node ref="U10" pin="C4"/>
  2382. </net>
  2383. <net code="79" name="Net-(Q19-Pad3)">
  2384. <node ref="R27" pin="2"/>
  2385. <node ref="Q19" pin="3"/>
  2386. </net>
  2387. <net code="80" name="Net-(U10-PadC6)">
  2388. <node ref="U10" pin="C6"/>
  2389. </net>
  2390. <net code="81" name="Net-(Q14-Pad1)">
  2391. <node ref="R27" pin="1"/>
  2392. <node ref="Q14" pin="1"/>
  2393. <node ref="R22" pin="2"/>
  2394. </net>
  2395. <net code="82" name="Net-(Q19-Pad1)">
  2396. <node ref="Q19" pin="1"/>
  2397. <node ref="R60" pin="2"/>
  2398. </net>
  2399. <net code="83" name="Net-(J20-Pad3)">
  2400. <node ref="J20" pin="3"/>
  2401. <node ref="Q14" pin="3"/>
  2402. </net>
  2403. <net code="84" name="Net-(C21-Pad1)">
  2404. <node ref="U10" pin="C7"/>
  2405. <node ref="U5" pin="5"/>
  2406. <node ref="U9" pin="3"/>
  2407. <node ref="R34" pin="2"/>
  2408. <node ref="C21" pin="1"/>
  2409. </net>
  2410. <net code="85" name="Net-(U10-PadC8)">
  2411. <node ref="U10" pin="C8"/>
  2412. </net>
  2413. <net code="86" name="Net-(U10-PadSW)">
  2414. <node ref="U10" pin="SW"/>
  2415. </net>
  2416. <net code="87" name="/AIR202/MOTOR_EN">
  2417. <node ref="Q15" pin="2"/>
  2418. <node ref="U4" pin="3"/>
  2419. </net>
  2420. <net code="88" name="Net-(Q15-Pad1)">
  2421. <node ref="R66" pin="1"/>
  2422. <node ref="Q15" pin="1"/>
  2423. </net>
  2424. <net code="89" name="Net-(J5-Pad3)">
  2425. <node ref="J5" pin="3"/>
  2426. <node ref="R48" pin="1"/>
  2427. </net>
  2428. <net code="90" name="Net-(J18-Pad2)">
  2429. <node ref="J18" pin="2"/>
  2430. <node ref="R23" pin="2"/>
  2431. <node ref="R44" pin="2"/>
  2432. </net>
  2433. <net code="91" name="Net-(Q16-Pad1)">
  2434. <node ref="Q16" pin="1"/>
  2435. <node ref="R68" pin="1"/>
  2436. </net>
  2437. <net code="92" name="/AIR202/MOTOR_DIR">
  2438. <node ref="Q16" pin="2"/>
  2439. <node ref="U4" pin="4"/>
  2440. </net>
  2441. <net code="93" name="Net-(Q1-Pad1)">
  2442. <node ref="R25" pin="1"/>
  2443. <node ref="R24" pin="2"/>
  2444. <node ref="Q1" pin="1"/>
  2445. </net>
  2446. <net code="94" name="Net-(D9-Pad1)">
  2447. <node ref="Q1" pin="3"/>
  2448. <node ref="J30" pin="2"/>
  2449. <node ref="D9" pin="1"/>
  2450. </net>
  2451. <net code="95" name="Net-(D14-Pad2)">
  2452. <node ref="R46" pin="2"/>
  2453. <node ref="D14" pin="2"/>
  2454. </net>
  2455. <net code="96" name="/AIR202/LED">
  2456. <node ref="U4" pin="2"/>
  2457. <node ref="R46" pin="1"/>
  2458. </net>
  2459. <net code="97" name="Net-(U4-Pad19)">
  2460. <node ref="U4" pin="19"/>
  2461. </net>
  2462. <net code="98" name="Net-(U4-Pad18)">
  2463. <node ref="U4" pin="18"/>
  2464. </net>
  2465. <net code="99" name="/AIR202/U1RXD">
  2466. <node ref="R31" pin="2"/>
  2467. <node ref="U4" pin="9"/>
  2468. </net>
  2469. <net code="100" name="/AIR202/U1TXD">
  2470. <node ref="U4" pin="8"/>
  2471. <node ref="R33" pin="2"/>
  2472. </net>
  2473. <net code="101" name="Net-(MK1-Pad1)">
  2474. <node ref="MK1" pin="1"/>
  2475. </net>
  2476. <net code="102" name="+2V8">
  2477. <node ref="R29" pin="1"/>
  2478. <node ref="C14" pin="2"/>
  2479. <node ref="R23" pin="1"/>
  2480. <node ref="R52" pin="1"/>
  2481. <node ref="R30" pin="1"/>
  2482. <node ref="U4" pin="24"/>
  2483. <node ref="R60" pin="1"/>
  2484. </net>
  2485. <net code="103" name="/AIR202/U2RXD">
  2486. <node ref="U4" pin="27"/>
  2487. <node ref="R48" pin="2"/>
  2488. </net>
  2489. <net code="104" name="/AIR202/U2TXD">
  2490. <node ref="U4" pin="28"/>
  2491. <node ref="R47" pin="2"/>
  2492. </net>
  2493. <net code="105" name="Net-(MK3-Pad1)">
  2494. <node ref="MK3" pin="1"/>
  2495. </net>
  2496. <net code="106" name="Net-(MK4-Pad1)">
  2497. <node ref="MK4" pin="1"/>
  2498. </net>
  2499. <net code="107" name="/AIR202/TAKE_PHOTO">
  2500. <node ref="R59" pin="1"/>
  2501. <node ref="U4" pin="11"/>
  2502. </net>
  2503. <net code="108" name="Net-(J7-Pad1)">
  2504. <node ref="J7" pin="1"/>
  2505. </net>
  2506. <net code="109" name="/AIR202/H_RXD">
  2507. <node ref="U4" pin="25"/>
  2508. <node ref="R50" pin="2"/>
  2509. </net>
  2510. <net code="110" name="/AIR202/H_TXD">
  2511. <node ref="U4" pin="26"/>
  2512. <node ref="R49" pin="2"/>
  2513. </net>
  2514. <net code="111" name="/AIR202/TEMP">
  2515. <node ref="U4" pin="14"/>
  2516. </net>
  2517. <net code="112" name="GNDA">
  2518. <node ref="U2" pin="7"/>
  2519. <node ref="Q4" pin="3"/>
  2520. <node ref="R56" pin="1"/>
  2521. <node ref="R8" pin="1"/>
  2522. <node ref="C35" pin="2"/>
  2523. <node ref="R26" pin="2"/>
  2524. <node ref="U1" pin="5"/>
  2525. <node ref="R42" pin="2"/>
  2526. <node ref="J16" pin="1"/>
  2527. <node ref="Q10" pin="2"/>
  2528. <node ref="J12" pin="4"/>
  2529. <node ref="J9" pin="1"/>
  2530. <node ref="D3" pin="2"/>
  2531. <node ref="U1" pin="3"/>
  2532. <node ref="U6" pin="1"/>
  2533. <node ref="R20" pin="2"/>
  2534. <node ref="C30" pin="2"/>
  2535. <node ref="C11" pin="1"/>
  2536. <node ref="J3" pin="3"/>
  2537. <node ref="C10" pin="2"/>
  2538. <node ref="C33" pin="2"/>
  2539. <node ref="U3" pin="1"/>
  2540. <node ref="C43" pin="2"/>
  2541. <node ref="C8" pin="2"/>
  2542. <node ref="C9" pin="2"/>
  2543. <node ref="C32" pin="2"/>
  2544. <node ref="C12" pin="2"/>
  2545. <node ref="Q11" pin="3"/>
  2546. <node ref="R39" pin="1"/>
  2547. <node ref="U7" pin="1"/>
  2548. <node ref="C7" pin="1"/>
  2549. <node ref="R10" pin="2"/>
  2550. <node ref="U7" pin="9"/>
  2551. <node ref="U7" pin="7"/>
  2552. <node ref="J2" pin="1"/>
  2553. <node ref="C3" pin="2"/>
  2554. <node ref="C2" pin="2"/>
  2555. <node ref="U8" pin="3"/>
  2556. <node ref="C6" pin="2"/>
  2557. <node ref="C1" pin="1"/>
  2558. <node ref="J4" pin="1"/>
  2559. <node ref="D1" pin="2"/>
  2560. <node ref="U8" pin="5"/>
  2561. <node ref="C44" pin="2"/>
  2562. <node ref="C4" pin="2"/>
  2563. <node ref="R21" pin="2"/>
  2564. <node ref="C34" pin="2"/>
  2565. <node ref="J14" pin="1"/>
  2566. <node ref="C26" pin="1"/>
  2567. <node ref="C23" pin="1"/>
  2568. <node ref="C25" pin="2"/>
  2569. <node ref="C28" pin="2"/>
  2570. <node ref="C16" pin="2"/>
  2571. <node ref="C17" pin="2"/>
  2572. <node ref="C21" pin="2"/>
  2573. <node ref="D8" pin="2"/>
  2574. <node ref="U10" pin="C5"/>
  2575. <node ref="C14" pin="1"/>
  2576. <node ref="U4" pin="1"/>
  2577. <node ref="C15" pin="2"/>
  2578. <node ref="D13" pin="1"/>
  2579. <node ref="U4" pin="15"/>
  2580. <node ref="C20" pin="2"/>
  2581. <node ref="C19" pin="2"/>
  2582. <node ref="U5" pin="2"/>
  2583. <node ref="Q1" pin="2"/>
  2584. <node ref="D9" pin="2"/>
  2585. <node ref="R25" pin="2"/>
  2586. <node ref="U4" pin="31"/>
  2587. <node ref="U4" pin="33"/>
  2588. <node ref="U4" pin="35"/>
  2589. <node ref="U4" pin="36"/>
  2590. <node ref="C18" pin="2"/>
  2591. <node ref="J18" pin="4"/>
  2592. <node ref="J8" pin="4"/>
  2593. <node ref="D14" pin="1"/>
  2594. <node ref="Q8" pin="2"/>
  2595. <node ref="J5" pin="1"/>
  2596. <node ref="J10" pin="1"/>
  2597. <node ref="J6" pin="3"/>
  2598. <node ref="Q19" pin="2"/>
  2599. <node ref="R53" pin="2"/>
  2600. <node ref="C22" pin="2"/>
  2601. <node ref="R11" pin="1"/>
  2602. <node ref="C29" pin="2"/>
  2603. <node ref="Q7" pin="3"/>
  2604. <node ref="J20" pin="2"/>
  2605. <node ref="R17" pin="1"/>
  2606. <node ref="R38" pin="1"/>
  2607. <node ref="R16" pin="1"/>
  2608. <node ref="J7" pin="4"/>
  2609. <node ref="R57" pin="2"/>
  2610. <node ref="MK2" pin="1"/>
  2611. <node ref="Q13" pin="2"/>
  2612. <node ref="Q12" pin="2"/>
  2613. <node ref="AE1" pin="2"/>
  2614. <node ref="R62" pin="2"/>
  2615. <node ref="J22" pin="1"/>
  2616. </net>
  2617. <net code="113" name="/AIR202/U1T">
  2618. <node ref="J8" pin="3"/>
  2619. <node ref="R33" pin="1"/>
  2620. </net>
  2621. <net code="114" name="/AIR202/U1R">
  2622. <node ref="J8" pin="2"/>
  2623. <node ref="R31" pin="1"/>
  2624. </net>
  2625. <net code="115" name="+28V">
  2626. <node ref="C3" pin="1"/>
  2627. <node ref="R54" pin="1"/>
  2628. <node ref="U8" pin="1"/>
  2629. <node ref="C2" pin="1"/>
  2630. <node ref="F1" pin="2"/>
  2631. <node ref="Q5" pin="3"/>
  2632. </net>
  2633. <net code="116" name="Net-(D3-Pad1)">
  2634. <node ref="L4" pin="1"/>
  2635. <node ref="D3" pin="1"/>
  2636. <node ref="U1" pin="2"/>
  2637. </net>
  2638. <net code="117" name="Net-(R40-Pad2)">
  2639. <node ref="U6" pin="4"/>
  2640. <node ref="R42" pin="1"/>
  2641. <node ref="R40" pin="2"/>
  2642. </net>
  2643. <net code="118" name="Net-(C31-Pad2)">
  2644. <node ref="C31" pin="2"/>
  2645. <node ref="U6" pin="6"/>
  2646. </net>
  2647. <net code="119" name="Net-(R41-Pad2)">
  2648. <node ref="R41" pin="2"/>
  2649. <node ref="U6" pin="5"/>
  2650. </net>
  2651. <net code="120" name="Net-(C31-Pad1)">
  2652. <node ref="L2" pin="1"/>
  2653. <node ref="C31" pin="1"/>
  2654. <node ref="U6" pin="2"/>
  2655. </net>
  2656. <net code="121" name="Net-(D1-Pad1)">
  2657. <node ref="L1" pin="1"/>
  2658. <node ref="U8" pin="2"/>
  2659. <node ref="D1" pin="1"/>
  2660. </net>
  2661. <net code="122" name="Net-(Q5-Pad1)">
  2662. <node ref="R21" pin="1"/>
  2663. <node ref="Q5" pin="1"/>
  2664. <node ref="R54" pin="2"/>
  2665. </net>
  2666. </nets>
  2667. </export>