| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667 |
- <?xml version="1.0" encoding="UTF-8"?>
- <export version="D">
- <design>
- <source>F:\坚果云\研发资料(A)\孢子仪\YF_BZYV2\BZY-2.3\forecast_Air202.sch</source>
- <date>2020-08-04 15:51:01</date>
- <tool>Eeschema (5.1.4)-1</tool>
- <sheet number="1" name="/" tstamps="/">
- <title_block>
- <title>DCBZY</title>
- <company>yunfei</company>
- <rev>DC-V1.1</rev>
- <date>2019-07-30</date>
- <source>forecast_Air202.sch</source>
- <comment number="1" value="lcg"/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="2" name="/STM8S003/" tstamps="/5AA262B8/">
- <title_block>
- <title>DCBZY</title>
- <company>yunfei</company>
- <rev>DC-V1.1</rev>
- <date>2019-07-30</date>
- <source>STM8S003.sch</source>
- <comment number="1" value="lcg"/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="3" name="/POWER/" tstamps="/5AA29947/">
- <title_block>
- <title>DCBZY</title>
- <company>yunfei</company>
- <rev>DC-V1.1</rev>
- <date>2019-07-30</date>
- <source>POWER.sch</source>
- <comment number="1" value="lcg"/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="4" name="/AIR202/" tstamps="/5AA28A58/">
- <title_block>
- <title>DCBZY</title>
- <company>yunfei</company>
- <rev>DC-V1.1</rev>
- <date>2019-07-30</date>
- <source>AIR202.sch</source>
- <comment number="1" value="lcg"/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- </design>
- <components>
- <comp ref="R6">
- <value>5001</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4049DA</tstamp>
- </comp>
- <comp ref="J25">
- <value>TEST_1P</value>
- <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
- <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5CA72C9C</tstamp>
- </comp>
- <comp ref="U2">
- <value>STM8S003</value>
- <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="STM8S003-RESCUE-forecast_Air202" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AA4B7EF</tstamp>
- </comp>
- <comp ref="U3">
- <value>SC662K-33</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="APE8865N-33-HF-3-RESCUE-forecast_Air202" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AA4A238</tstamp>
- </comp>
- <comp ref="J3">
- <value>Download</value>
- <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AAC450F</tstamp>
- </comp>
- <comp ref="C11">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AAA0E43</tstamp>
- </comp>
- <comp ref="C12">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AA9EF7E</tstamp>
- </comp>
- <comp ref="C10">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AA99873</tstamp>
- </comp>
- <comp ref="C8">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AA9972D</tstamp>
- </comp>
- <comp ref="C9">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AA99370</tstamp>
- </comp>
- <comp ref="K8">
- <value>4117</value>
- <footprint>My_KF3.96:4117</footprint>
- <libsource lib="forecast_Air202-rescue" part="4117" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D693085</tstamp>
- </comp>
- <comp ref="R18">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D421672</tstamp>
- </comp>
- <comp ref="R26">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D42165F</tstamp>
- </comp>
- <comp ref="Q8">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D421659</tstamp>
- </comp>
- <comp ref="D2">
- <value>RS1M</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <libsource lib="forecast_Air202-rescue" part="D-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D421653</tstamp>
- </comp>
- <comp ref="J10">
- <value>COOL</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D421625</tstamp>
- </comp>
- <comp ref="R19">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AAABD39</tstamp>
- </comp>
- <comp ref="R20">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AAABD33</tstamp>
- </comp>
- <comp ref="Q10">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AAABD2D</tstamp>
- </comp>
- <comp ref="D12">
- <value>RS1M</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <libsource lib="forecast_Air202-rescue" part="D-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5AAABD27</tstamp>
- </comp>
- <comp ref="K7">
- <value>4117</value>
- <footprint>My_KF3.96:4117</footprint>
- <libsource lib="forecast_Air202-rescue" part="4117" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5C7FEE9D</tstamp>
- </comp>
- <comp ref="R8">
- <value>103</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D40129B</tstamp>
- </comp>
- <comp ref="Q3">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4012A2</tstamp>
- </comp>
- <comp ref="R7">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4012A9</tstamp>
- </comp>
- <comp ref="R4">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4012B0</tstamp>
- </comp>
- <comp ref="Q4">
- <value>IRF540N</value>
- <footprint>Package_TO_SOT_SMD:TO-263-2</footprint>
- <libsource lib="forecast_Air202-rescue" part="IRF540N" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4012BD</tstamp>
- </comp>
- <comp ref="J1">
- <value>TURN_MOTOR</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4012C4</tstamp>
- </comp>
- <comp ref="R11">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4012D1</tstamp>
- </comp>
- <comp ref="R16">
- <value>103</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F00</tstamp>
- </comp>
- <comp ref="Q6">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F06</tstamp>
- </comp>
- <comp ref="R15">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F0C</tstamp>
- </comp>
- <comp ref="R14">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F12</tstamp>
- </comp>
- <comp ref="Q7">
- <value>IRF540N</value>
- <footprint>Package_TO_SOT_SMD:TO-263-2</footprint>
- <libsource lib="forecast_Air202-rescue" part="IRF540N" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F1E</tstamp>
- </comp>
- <comp ref="R17">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F30</tstamp>
- </comp>
- <comp ref="R38">
- <value>103</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D424172</tstamp>
- </comp>
- <comp ref="Q9">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D424178</tstamp>
- </comp>
- <comp ref="R37">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D42417E</tstamp>
- </comp>
- <comp ref="R36">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D424184</tstamp>
- </comp>
- <comp ref="Q11">
- <value>IRF540N</value>
- <footprint>Package_TO_SOT_SMD:TO-263-2</footprint>
- <libsource lib="forecast_Air202-rescue" part="IRF540N" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D424190</tstamp>
- </comp>
- <comp ref="J19">
- <value>WIND2</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D424196</tstamp>
- </comp>
- <comp ref="R39">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D4241A2</tstamp>
- </comp>
- <comp ref="D5">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D719FD0</tstamp>
- </comp>
- <comp ref="D6">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D75D88C</tstamp>
- </comp>
- <comp ref="D7">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D89D703</tstamp>
- </comp>
- <comp ref="J17">
- <value>WIND</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D423F24</tstamp>
- </comp>
- <comp ref="U7">
- <value>DRV8871DDA</value>
- <footprint>Package_SO:Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias</footprint>
- <datasheet>http://www.ti.com/lit/ds/symlink/drv8871.pdf</datasheet>
- <libsource lib="Driver_Motor" part="DRV8871DDA" description="Brushed DC Motor Driver, PWM Control, 45V, 3.6A, Current limiting, HTSOP-8"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5DD58A54</tstamp>
- </comp>
- <comp ref="R10">
- <value>1742</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D7BA1BF</tstamp>
- </comp>
- <comp ref="C7">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D8385F4</tstamp>
- </comp>
- <comp ref="C6">
- <value>47uF</value>
- <footprint>Capacitor_THT:CP_Radial_D6.3mm_P2.50mm</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="CP" description="Polarized capacitor"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D855CE6</tstamp>
- </comp>
- <comp ref="J2">
- <value>HEAT</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5C131CEB</tstamp>
- </comp>
- <comp ref="J13">
- <value>fanshilin</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D8BE0D0</tstamp>
- </comp>
- <comp ref="R2">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5E2180F8</tstamp>
- </comp>
- <comp ref="R5">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5E2180FE</tstamp>
- </comp>
- <comp ref="C1">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5E218104</tstamp>
- </comp>
- <comp ref="R3">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5E218110</tstamp>
- </comp>
- <comp ref="R9">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5E218129</tstamp>
- </comp>
- <comp ref="J12">
- <value>TURN</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5E21813E</tstamp>
- </comp>
- <comp ref="J9">
- <value>ntc</value>
- <footprint>Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical</footprint>
- <datasheet>~</datasheet>
- <libsource lib="CONN" part="Conn_01x02" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D7F75D5</tstamp>
- </comp>
- <comp ref="R1">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D893B4D</tstamp>
- </comp>
- <comp ref="J4">
- <value>ADC</value>
- <footprint>Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical</footprint>
- <datasheet>~</datasheet>
- <libsource lib="CONN" part="Conn_01x02" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5D893B59</tstamp>
- </comp>
- <comp ref="J14">
- <value>LIMIT</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
- <datasheet>~</datasheet>
- <libsource lib="CONN" part="Conn_01x04" description="Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5F17E12C</tstamp>
- </comp>
- <comp ref="R12">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5F17FBE3</tstamp>
- </comp>
- <comp ref="R13">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5F1817AA</tstamp>
- </comp>
- <comp ref="R43">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5F221E14</tstamp>
- </comp>
- <comp ref="R61">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/STM8S003/" tstamps="/5AA262B8/"/>
- <tstamp>5F254336</tstamp>
- </comp>
- <comp ref="U6">
- <value>JW5033H</value>
- <footprint>Package_TO_SOT_SMD:TSOT-23-6_HandSoldering</footprint>
- <libsource lib="forecast_Air202-rescue" part="JW5033H" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC01</tstamp>
- </comp>
- <comp ref="R41">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC0D</tstamp>
- </comp>
- <comp ref="C35">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC1F</tstamp>
- </comp>
- <comp ref="L2">
- <value>4.7uH</value>
- <footprint>Inductor_SMD:L_Taiyo-Yuden_NR-40xx</footprint>
- <libsource lib="forecast_Air202-rescue" part="L-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC25</tstamp>
- </comp>
- <comp ref="R42">
- <value>2002</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC2B</tstamp>
- </comp>
- <comp ref="C31">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C_Small-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC37</tstamp>
- </comp>
- <comp ref="R40">
- <value>8202</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC3D</tstamp>
- </comp>
- <comp ref="C32">
- <value>1mF</value>
- <footprint>Capacitor_THT:CP_Radial_D8.0mm_P3.50mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CC49</tstamp>
- </comp>
- <comp ref="C33">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA2CCB6</tstamp>
- </comp>
- <comp ref="C43">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA60379</tstamp>
- </comp>
- <comp ref="J16">
- <value>V_BAT</value>
- <footprint>Connector_Phoenix_MSTB:PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C1296EC</tstamp>
- </comp>
- <comp ref="F1">
- <value>5A</value>
- <footprint>My_Fuseholder:Fuseholder5x20_BF-013</footprint>
- <libsource lib="forecast_Air202-rescue" part="Fuse-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C1296F9</tstamp>
- </comp>
- <comp ref="R21">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C129728</tstamp>
- </comp>
- <comp ref="C3">
- <value>470uF/50V</value>
- <footprint>Capacitor_THT:CP_Radial_D10.0mm_P5.00mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C12972F</tstamp>
- </comp>
- <comp ref="C2">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C129736</tstamp>
- </comp>
- <comp ref="U8">
- <value>LM2596S-12</value>
- <footprint>Package_TO_SOT_SMD:TO-263-5_TabPin3</footprint>
- <libsource lib="forecast_Air202-rescue" part="LM2576" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C12973D</tstamp>
- </comp>
- <comp ref="L1">
- <value>68uH</value>
- <footprint>Inductor_SMD:L_Wuerth_HCI-1350</footprint>
- <libsource lib="forecast_Air202-rescue" part="L-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C12974A</tstamp>
- </comp>
- <comp ref="D1">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C12978B</tstamp>
- </comp>
- <comp ref="C44">
- <value>1mF</value>
- <footprint>Capacitor_THT:CP_Radial_D10.0mm_P5.00mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5AA6E9DE</tstamp>
- </comp>
- <comp ref="C4">
- <value>180uF</value>
- <footprint>Capacitor_THT:CP_Radial_D8.0mm_P3.50mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5C129774</tstamp>
- </comp>
- <comp ref="R54">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5CA5B9C2</tstamp>
- </comp>
- <comp ref="R55">
- <value>2201</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5CA7D73B</tstamp>
- </comp>
- <comp ref="R56">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5CA7D742</tstamp>
- </comp>
- <comp ref="J28">
- <value>TEST_1P</value>
- <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
- <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5CA71EE0</tstamp>
- </comp>
- <comp ref="J27">
- <value>TEST_1P</value>
- <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
- <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5CA724C7</tstamp>
- </comp>
- <comp ref="Q5">
- <value>Q_PMOS_GDS</value>
- <footprint>Package_TO_SOT_SMD:TO-252-2</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_PMOS_GDS-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5CB8347F</tstamp>
- </comp>
- <comp ref="C29">
- <value>680uF/50V</value>
- <footprint>Capacitor_THT:CP_Radial_D10.0mm_P5.00mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5D44F215</tstamp>
- </comp>
- <comp ref="U1">
- <value>LM2596S-5</value>
- <footprint>Package_TO_SOT_SMD:TO-263-5_TabPin3</footprint>
- <libsource lib="forecast_Air202-rescue" part="LM2576" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5D44F221</tstamp>
- </comp>
- <comp ref="L4">
- <value>33uH</value>
- <footprint>Inductor_SMD:L_Wuerth_HCI-1335</footprint>
- <libsource lib="forecast_Air202-rescue" part="L-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5D44F22D</tstamp>
- </comp>
- <comp ref="D3">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5D44F239</tstamp>
- </comp>
- <comp ref="C30">
- <value>220uF</value>
- <footprint>Capacitor_THT:CP_Radial_D6.3mm_P2.50mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="CP-Device" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5D44F245</tstamp>
- </comp>
- <comp ref="J15">
- <value>TEST_1P</value>
- <footprint>My_OPTOs:TEST_POINT_MountingHole_1mm_Pad</footprint>
- <libsource lib="forecast_Air202-rescue" part="TEST_1P" description=""/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5D44F279</tstamp>
- </comp>
- <comp ref="C34">
- <value>22uF</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="C" description="Unpolarized capacitor"/>
- <sheetpath names="/POWER/" tstamps="/5AA29947/"/>
- <tstamp>5F21E512</tstamp>
- </comp>
- <comp ref="C15">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7F6</tstamp>
- </comp>
- <comp ref="C18">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7FA</tstamp>
- </comp>
- <comp ref="R35">
- <value>22R</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7FB</tstamp>
- </comp>
- <comp ref="C21">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7FC</tstamp>
- </comp>
- <comp ref="C20">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7FD</tstamp>
- </comp>
- <comp ref="C19">
- <value>104</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7FE</tstamp>
- </comp>
- <comp ref="U5">
- <value>ESDA6V8AV5</value>
- <footprint>Package_TO_SOT_SMD:SOT-553</footprint>
- <libsource lib="forecast_Air202-rescue" part="ESDA6V8AV5" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7FF</tstamp>
- </comp>
- <comp ref="MK1">
- <value>M_PAD</value>
- <footprint>MountingHole:MountingHole_3mm_Pad</footprint>
- <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E80A</tstamp>
- </comp>
- <comp ref="MK2">
- <value>M_PAD</value>
- <footprint>MountingHole:MountingHole_3.5mm_Pad</footprint>
- <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E80B</tstamp>
- </comp>
- <comp ref="MK4">
- <value>M_PAD</value>
- <footprint>MountingHole:MountingHole_3.5mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E80C</tstamp>
- </comp>
- <comp ref="MK3">
- <value>M_PAD</value>
- <footprint>MountingHole:MountingHole_3.5mm</footprint>
- <libsource lib="forecast_Air202-rescue" part="Mounting_Hole_PAD" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E80D</tstamp>
- </comp>
- <comp ref="R32">
- <value>22R</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E817</tstamp>
- </comp>
- <comp ref="R34">
- <value>22R</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E818</tstamp>
- </comp>
- <comp ref="AE1">
- <value>GSM</value>
- <footprint>RTU_Lib:SMA_THT_Jack_Straight</footprint>
- <libsource lib="forecast_Air202-rescue" part="Antenna_Shield-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E86A</tstamp>
- </comp>
- <comp ref="R29">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E873</tstamp>
- </comp>
- <comp ref="R30">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E874</tstamp>
- </comp>
- <comp ref="C14">
- <value>106</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E879</tstamp>
- </comp>
- <comp ref="U4">
- <value>Air202</value>
- <footprint>My_RF_Modules:Air202</footprint>
- <libsource lib="forecast_Air202-rescue" part="Air202" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7ED</tstamp>
- </comp>
- <comp ref="C26">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA373AD</tstamp>
- </comp>
- <comp ref="C23">
- <value>10pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA381B9</tstamp>
- </comp>
- <comp ref="C24">
- <value>10pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA3821B</tstamp>
- </comp>
- <comp ref="C27">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA3827C</tstamp>
- </comp>
- <comp ref="C25">
- <value>10pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA383B4</tstamp>
- </comp>
- <comp ref="C28">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA38419</tstamp>
- </comp>
- <comp ref="C16">
- <value>10pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA38E2A</tstamp>
- </comp>
- <comp ref="C17">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA38EA1</tstamp>
- </comp>
- <comp ref="J11">
- <value>Horn</value>
- <footprint>Connector_JST:JST_XH_B02B-XH-A_1x02_P2.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x02" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA3ACEF</tstamp>
- </comp>
- <comp ref="R31">
- <value>471</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA51623</tstamp>
- </comp>
- <comp ref="R33">
- <value>471</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA51EA8</tstamp>
- </comp>
- <comp ref="J5">
- <value>CtrUart</value>
- <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA5FF9A</tstamp>
- </comp>
- <comp ref="J6">
- <value>AM2320</value>
- <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA606AC</tstamp>
- </comp>
- <comp ref="J7">
- <value>Debug</value>
- <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AB20FD2</tstamp>
- </comp>
- <comp ref="R48">
- <value>471</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AB5D104</tstamp>
- </comp>
- <comp ref="R47">
- <value>471</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AB5DD6A</tstamp>
- </comp>
- <comp ref="R49">
- <value>471</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AB62DDA</tstamp>
- </comp>
- <comp ref="R50">
- <value>471</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AB63469</tstamp>
- </comp>
- <comp ref="Q13">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D4003D8</tstamp>
- </comp>
- <comp ref="R59">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D4003DF</tstamp>
- </comp>
- <comp ref="R57">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D4003E6</tstamp>
- </comp>
- <comp ref="R51">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D4003F3</tstamp>
- </comp>
- <comp ref="J21">
- <value>5VLED</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x02" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D427140</tstamp>
- </comp>
- <comp ref="Q12">
- <value>5N04</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D427147</tstamp>
- </comp>
- <comp ref="R58">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D42714E</tstamp>
- </comp>
- <comp ref="R53">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D427155</tstamp>
- </comp>
- <comp ref="J22">
- <value>TURN_MOTOR</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x02" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D42D12E</tstamp>
- </comp>
- <comp ref="J23">
- <value>Screw_Terminal_01x04</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Screw_Terminal_01x04" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D43118F</tstamp>
- </comp>
- <comp ref="R52">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D4359CE</tstamp>
- </comp>
- <comp ref="R23">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D3FE719</tstamp>
- </comp>
- <comp ref="R45">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D5521C5</tstamp>
- </comp>
- <comp ref="R44">
- <value>2000</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D6108C0</tstamp>
- </comp>
- <comp ref="D8">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D8CC347</tstamp>
- </comp>
- <comp ref="R63">
- <value>4702</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DAA149F</tstamp>
- </comp>
- <comp ref="R64">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DB98FF6</tstamp>
- </comp>
- <comp ref="Q2">
- <value>5N04</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DEE20AB</tstamp>
- </comp>
- <comp ref="R67">
- <value>4702</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DFB2327</tstamp>
- </comp>
- <comp ref="R68">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DFB2334</tstamp>
- </comp>
- <comp ref="Q16">
- <value>5N04</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DFB2347</tstamp>
- </comp>
- <comp ref="R65">
- <value>4702</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DFCB835</tstamp>
- </comp>
- <comp ref="R66">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DFCB842</tstamp>
- </comp>
- <comp ref="Q15">
- <value>5N04</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DFCB855</tstamp>
- </comp>
- <comp ref="D14">
- <value>LED</value>
- <footprint>LED_SMD:LED_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="LED-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA65A7E</tstamp>
- </comp>
- <comp ref="R46">
- <value>472</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA65516</tstamp>
- </comp>
- <comp ref="J8">
- <value>LCD</value>
- <footprint>Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA50034</tstamp>
- </comp>
- <comp ref="J18">
- <value>LIMIT</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x04" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5E0D793A</tstamp>
- </comp>
- <comp ref="R24">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D3F1C2E</tstamp>
- </comp>
- <comp ref="J30">
- <value>DiYe</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical</footprint>
- <libsource lib="forecast_Air202-rescue" part="Conn_01x02" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D3F1C22</tstamp>
- </comp>
- <comp ref="Q1">
- <value>5N04</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D3F1C28</tstamp>
- </comp>
- <comp ref="R25">
- <value>104</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D3F1C34</tstamp>
- </comp>
- <comp ref="D9">
- <value>SS34</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <libsource lib="forecast_Air202-rescue" part="D_Schottky-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D6EDB96</tstamp>
- </comp>
- <comp ref="R22">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DC3A47F</tstamp>
- </comp>
- <comp ref="Q14">
- <value>5P40</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="Q_PMOS_GSD" description="P-MOSFET transistor, gate/source/drain"/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DA0FDBD</tstamp>
- </comp>
- <comp ref="R27">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D891013</tstamp>
- </comp>
- <comp ref="Q19">
- <value>5551</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <libsource lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D840406</tstamp>
- </comp>
- <comp ref="R60">
- <value>102</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="R-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5D441041</tstamp>
- </comp>
- <comp ref="D13">
- <value>LED</value>
- <footprint>LED_SMD:LED_0805_2012Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="LED-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5DE3D4AE</tstamp>
- </comp>
- <comp ref="U9">
- <value>SIM_QFN</value>
- <footprint>My_Connectors:SIM_QFN8</footprint>
- <libsource lib="My_Jack" part="SIM_QFN" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5F43168A</tstamp>
- </comp>
- <comp ref="U10">
- <value>SIM_8P</value>
- <footprint>My_Connectors:SIMCard_8P_Micro</footprint>
- <libsource lib="My_Jack" part="SIM_8P" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5F4CD8F6</tstamp>
- </comp>
- <comp ref="R62">
- <value>0</value>
- <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5FA6C04C</tstamp>
- </comp>
- <comp ref="C22">
- <value>33pF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <libsource lib="forecast_Air202-rescue" part="C-Device" description=""/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5AA2E7F9</tstamp>
- </comp>
- <comp ref="J20">
- <value>Conn_01x03</value>
- <footprint>Connector_Phoenix_MC:PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Connector_Generic" part="Conn_01x03" description="Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/AIR202/" tstamps="/5AA28A58/"/>
- <tstamp>5F54AB47</tstamp>
- </comp>
- </components>
- <libparts>
- <libpart lib="CONN" part="Conn_01x02">
- <description>Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*_1x??_*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x02</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="CONN" part="Conn_01x04">
- <description>Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*_1x??_*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x04</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- <pin num="3" name="Pin_3" type="passive"/>
- <pin num="4" name="Pin_4" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Connector_Generic" part="Conn_01x03">
- <description>Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*_1x??_*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x03</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- <pin num="3" name="Pin_3" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="C">
- <description>Unpolarized capacitor</description>
- <docs>~</docs>
- <footprints>
- <fp>C_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">C</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="CP">
- <description>Polarized capacitor</description>
- <docs>~</docs>
- <footprints>
- <fp>CP_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">CP</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="Q_PMOS_GSD">
- <description>P-MOSFET transistor, gate/source/drain</description>
- <docs>~</docs>
- <fields>
- <field name="Reference">Q</field>
- <field name="Value">Q_PMOS_GSD</field>
- </fields>
- <pins>
- <pin num="1" name="G" type="input"/>
- <pin num="2" name="S" type="passive"/>
- <pin num="3" name="D" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="R">
- <description>Resistor</description>
- <docs>~</docs>
- <footprints>
- <fp>R_*</fp>
- </footprints>
- <fields>
- <field name="Reference">R</field>
- <field name="Value">R</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Driver_Motor" part="DRV8871DDA">
- <description>Brushed DC Motor Driver, PWM Control, 45V, 3.6A, Current limiting, HTSOP-8</description>
- <docs>http://www.ti.com/lit/ds/symlink/drv8871.pdf</docs>
- <footprints>
- <fp>Texas*HTSOP*1EP*3.9x4.9mm*P1.27mm*EP2.95x4.9mm*Mask2.4x3.1mm*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">DRV8871DDA</field>
- <field name="Footprint">Package_SO:Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias</field>
- </fields>
- <pins>
- <pin num="1" name="GND" type="power_in"/>
- <pin num="2" name="IN2" type="input"/>
- <pin num="3" name="IN1" type="input"/>
- <pin num="4" name="ILIM" type="passive"/>
- <pin num="5" name="VM" type="power_in"/>
- <pin num="6" name="OUT1" type="output"/>
- <pin num="7" name="GND" type="passive"/>
- <pin num="8" name="OUT2" type="output"/>
- <pin num="9" name="GND" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="My_Jack" part="SIM_8P">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">SIM_8P</field>
- </fields>
- <pins>
- <pin num="C1" name="VCC" type="input"/>
- <pin num="C2" name="RST" type="input"/>
- <pin num="C3" name="CLK" type="input"/>
- <pin num="C4" name="NC" type="input"/>
- <pin num="C5" name="GND" type="input"/>
- <pin num="C6" name="VPP" type="input"/>
- <pin num="C7" name="IO" type="input"/>
- <pin num="C8" name="NC" type="input"/>
- <pin num="SW" name="SW" type="input"/>
- </pins>
- </libpart>
- <libpart lib="My_Jack" part="SIM_QFN">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">SIM_QFN</field>
- </fields>
- <pins>
- <pin num="1" name="VSS" type="input"/>
- <pin num="2" name="NC" type="input"/>
- <pin num="3" name="IO" type="input"/>
- <pin num="4" name="NC" type="input"/>
- <pin num="5" name="NC" type="input"/>
- <pin num="6" name="CLK" type="input"/>
- <pin num="7" name="RST" type="input"/>
- <pin num="8" name="VDD" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="4117">
- <fields>
- <field name="Reference">K</field>
- <field name="Value">4117</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="input"/>
- <pin num="5" name="~" type="input"/>
- <pin num="6" name="~" type="passive"/>
- <pin num="7" name="~" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="APE8865N-33-HF-3-RESCUE-forecast_Air202">
- <footprints>
- <fp>SOT?23*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">APE8865N-33-HF-3-RESCUE-forecast_Air202</field>
- <field name="Footprint">TO_SOT_Packages_SMD:SOT-23</field>
- </fields>
- <pins>
- <pin num="1" name="GND" type="power_in"/>
- <pin num="2" name="VO" type="power_out"/>
- <pin num="3" name="VI" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Air202">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">Air202</field>
- </fields>
- <pins>
- <pin num="1" name="PWRKEY" type="passive"/>
- <pin num="2" name="SPI_CS/IO_10" type="passive"/>
- <pin num="3" name="SPI_CLK/IO_8" type="input"/>
- <pin num="4" name="SPI_DO/IO_11" type="input"/>
- <pin num="5" name="SPI_DI/IO_12" type="input"/>
- <pin num="6" name="UART1_CTS/IO_3" type="input"/>
- <pin num="7" name="UART1_RTS/IO_2" type="output"/>
- <pin num="8" name="UART1_TXD/IO_1" type="input"/>
- <pin num="9" name="UART1_RXD/IO_0" type="input"/>
- <pin num="10" name="UART1_DCD/IO_31" type="input"/>
- <pin num="11" name="UART_RI/IO_30" type="input"/>
- <pin num="12" name="IO_29" type="input"/>
- <pin num="13" name="IO_33" type="input"/>
- <pin num="14" name="ADC0" type="input"/>
- <pin num="15" name="GND" type="power_in"/>
- <pin num="16" name="SPKP" type="output"/>
- <pin num="17" name="SPKN" type="BiDi"/>
- <pin num="18" name="MICP" type="BiDi"/>
- <pin num="19" name="MICN" type="BiDi"/>
- <pin num="20" name="SIM_RST" type="BiDi"/>
- <pin num="21" name="SIM_VDD" type="power_out"/>
- <pin num="22" name="SIM_DAT" type="input"/>
- <pin num="23" name="SIM_CLK" type="output"/>
- <pin num="24" name="VDDIO" type="power_out"/>
- <pin num="25" name="HOST_RXD" type="output"/>
- <pin num="26" name="HOST_TXD" type="input"/>
- <pin num="27" name="UART2_RXD_IO4" type="BiDi"/>
- <pin num="28" name="UART2_TXD_IO5" type="BiDi"/>
- <pin num="29" name="I2C3_SCL_IO6" type="BiDi"/>
- <pin num="30" name="I2C3_SDA_IO7" type="BiDi"/>
- <pin num="31" name="GND" type="power_in"/>
- <pin num="32" name="ANT" type="output"/>
- <pin num="33" name="GND" type="power_in"/>
- <pin num="34" name="RESET" type="input"/>
- <pin num="35" name="GND" type="power_in"/>
- <pin num="36" name="GND" type="power_in"/>
- <pin num="37" name="VBAT" type="power_in"/>
- <pin num="38" name="VBAT" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Antenna_Shield-Device">
- <fields>
- <field name="Reference">AE</field>
- <field name="Value">Antenna_Shield-Device</field>
- </fields>
- <pins>
- <pin num="1" name="A" type="input"/>
- <pin num="2" name="Shield" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="C-Device">
- <footprints>
- <fp>C_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">C-Device</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="CP-Device">
- <footprints>
- <fp>CP_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">CP-Device</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="C_Small-Device">
- <footprints>
- <fp>C_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">C_Small-Device</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Conn_01x02">
- <footprints>
- <fp>Connector*:*_??x*mm*</fp>
- <fp>Connector*:*1x??x*mm*</fp>
- <fp>Pin?Header?Straight?1X*</fp>
- <fp>Pin?Header?Angled?1X*</fp>
- <fp>Socket?Strip?Straight?1X*</fp>
- <fp>Socket?Strip?Angled?1X*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x02</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Conn_01x04">
- <footprints>
- <fp>Connector*:*_??x*mm*</fp>
- <fp>Connector*:*1x??x*mm*</fp>
- <fp>Pin?Header?Straight?1X*</fp>
- <fp>Pin?Header?Angled?1X*</fp>
- <fp>Socket?Strip?Straight?1X*</fp>
- <fp>Socket?Strip?Angled?1X*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x04</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- <pin num="3" name="Pin_3" type="passive"/>
- <pin num="4" name="Pin_4" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="D-Device">
- <footprints>
- <fp>TO-???*</fp>
- <fp>*_Diode_*</fp>
- <fp>*SingleDiode*</fp>
- <fp>D_*</fp>
- </footprints>
- <fields>
- <field name="Reference">D</field>
- <field name="Value">D-Device</field>
- </fields>
- <pins>
- <pin num="1" name="K" type="passive"/>
- <pin num="2" name="A" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="D_Schottky-Device">
- <footprints>
- <fp>TO-???*</fp>
- <fp>*_Diode_*</fp>
- <fp>*SingleDiode*</fp>
- <fp>D_*</fp>
- </footprints>
- <fields>
- <field name="Reference">D</field>
- <field name="Value">D_Schottky-Device</field>
- </fields>
- <pins>
- <pin num="1" name="K" type="passive"/>
- <pin num="2" name="A" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="ESDA6V8AV5">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">ESDA6V8AV5</field>
- </fields>
- <pins>
- <pin num="1" name="I/O1" type="input"/>
- <pin num="2" name="GND" type="input"/>
- <pin num="3" name="I/O2" type="input"/>
- <pin num="4" name="I/O3" type="input"/>
- <pin num="5" name="I/04" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Fuse-Device">
- <footprints>
- <fp>*Fuse*</fp>
- </footprints>
- <fields>
- <field name="Reference">F</field>
- <field name="Value">Fuse-Device</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="IRF540N">
- <footprints>
- <fp>TO?220*</fp>
- </footprints>
- <fields>
- <field name="Reference">Q</field>
- <field name="Value">IRF540N</field>
- <field name="Footprint">TO_SOT_Packages_THT:TO-220_Vertical</field>
- </fields>
- <pins>
- <pin num="1" name="G" type="input"/>
- <pin num="2" name="D" type="passive"/>
- <pin num="3" name="S" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="JW5033H">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">JW5033H</field>
- </fields>
- <pins>
- <pin num="1" name="GND" type="power_in"/>
- <pin num="2" name="SW" type="power_out"/>
- <pin num="3" name="VIN" type="power_in"/>
- <pin num="4" name="FB" type="passive"/>
- <pin num="5" name="EN" type="passive"/>
- <pin num="6" name="BST" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="L-Device">
- <footprints>
- <fp>Choke_*</fp>
- <fp>*Coil*</fp>
- <fp>Inductor_*</fp>
- <fp>L_*</fp>
- </footprints>
- <fields>
- <field name="Reference">L</field>
- <field name="Value">L-Device</field>
- </fields>
- <pins>
- <pin num="1" name="1" type="passive"/>
- <pin num="2" name="2" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="LED-Device">
- <footprints>
- <fp>LED*</fp>
- <fp>LED_SMD:*</fp>
- <fp>LED_THT:*</fp>
- </footprints>
- <fields>
- <field name="Reference">D</field>
- <field name="Value">LED-Device</field>
- </fields>
- <pins>
- <pin num="1" name="K" type="passive"/>
- <pin num="2" name="A" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="LM2576">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">LM2576</field>
- </fields>
- <pins>
- <pin num="1" name="Vin" type="input"/>
- <pin num="2" name="OUT" type="input"/>
- <pin num="3" name="GND" type="input"/>
- <pin num="4" name="FEEDBACK" type="input"/>
- <pin num="5" name="~ON~/OFF" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Mounting_Hole_PAD">
- <footprints>
- <fp>Mounting?Hole*</fp>
- <fp>Hole*</fp>
- </footprints>
- <fields>
- <field name="Reference">MK</field>
- <field name="Value">Mounting_Hole_PAD</field>
- </fields>
- <pins>
- <pin num="1" name="1" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Q_NMOS_GSD-Device">
- <fields>
- <field name="Reference">Q</field>
- <field name="Value">Q_NMOS_GSD-Device</field>
- </fields>
- <pins>
- <pin num="1" name="G" type="input"/>
- <pin num="2" name="S" type="passive"/>
- <pin num="3" name="D" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Q_NPN_BEC-Device">
- <fields>
- <field name="Reference">Q</field>
- <field name="Value">Q_NPN_BEC-Device</field>
- </fields>
- <pins>
- <pin num="1" name="B" type="input"/>
- <pin num="2" name="E" type="passive"/>
- <pin num="3" name="C" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Q_PMOS_GDS-Device">
- <fields>
- <field name="Reference">Q</field>
- <field name="Value">Q_PMOS_GDS-Device</field>
- </fields>
- <pins>
- <pin num="1" name="G" type="input"/>
- <pin num="2" name="D" type="passive"/>
- <pin num="3" name="S" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="R-Device">
- <footprints>
- <fp>R_*</fp>
- </footprints>
- <fields>
- <field name="Reference">R</field>
- <field name="Value">R-Device</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="STM8S003-RESCUE-forecast_Air202">
- <footprints>
- <fp>TSSOP</fp>
- <fp>LQFP</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">STM8S003-RESCUE-forecast_Air202</field>
- <field name="Footprint">Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm</field>
- </fields>
- <pins>
- <pin num="1" name="PD4" type="BiDi"/>
- <pin num="2" name="PD5" type="BiDi"/>
- <pin num="3" name="PD6" type="BiDi"/>
- <pin num="4" name="NRST" type="input"/>
- <pin num="5" name="PA1" type="input"/>
- <pin num="6" name="PA2" type="input"/>
- <pin num="7" name="VSS" type="power_in"/>
- <pin num="8" name="VCAP" type="output"/>
- <pin num="9" name="VDD" type="power_in"/>
- <pin num="10" name="PA3" type="BiDi"/>
- <pin num="11" name="PB5" type="input"/>
- <pin num="12" name="PB4" type="input"/>
- <pin num="13" name="PC3" type="input"/>
- <pin num="14" name="PC4" type="BiDi"/>
- <pin num="15" name="PC5" type="input"/>
- <pin num="16" name="PC6" type="output"/>
- <pin num="17" name="PC7" type="output"/>
- <pin num="18" name="PD1" type="input"/>
- <pin num="19" name="PD2" type="output"/>
- <pin num="20" name="PD3" type="input"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Screw_Terminal_01x02">
- <footprints>
- <fp>Connector*Terminal*Block*:*</fp>
- <fp>TerminalBlock*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Screw_Terminal_01x02</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="Screw_Terminal_01x04">
- <footprints>
- <fp>Connector*Terminal*Block*:*</fp>
- <fp>TerminalBlock*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Screw_Terminal_01x04</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- <pin num="3" name="Pin_3" type="passive"/>
- <pin num="4" name="Pin_4" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="forecast_Air202-rescue" part="TEST_1P">
- <fields>
- <field name="Reference">J</field>
- <field name="Value">TEST_1P</field>
- </fields>
- <pins>
- <pin num="1" name="1" type="passive"/>
- </pins>
- </libpart>
- </libparts>
- <libraries>
- <library logical="CONN">
- <uri>D:/Program Files/KiCad/share/kicad/library/Connector_Generic.lib</uri>
- </library>
- <library logical="Connector_Generic">
- <uri>D:\Program Files\KiCad\share\kicad\library/Connector_Generic.lib</uri>
- </library>
- <library logical="Device">
- <uri>D:\Program Files\KiCad\share\kicad\library/Device.lib</uri>
- </library>
- <library logical="Driver_Motor">
- <uri>D:\Program Files\KiCad\share\kicad\library/Driver_Motor.lib</uri>
- </library>
- <library logical="My_Jack">
- <uri>D:/KicadLib/MyLib/My_Jack.lib</uri>
- </library>
- <library logical="forecast_Air202-rescue">
- <uri>F:\坚果云\研发资料(A)\孢子仪\YF_BZYV2\BZY-2.3/forecast_Air202-rescue.lib</uri>
- </library>
- </libraries>
- <nets>
- <net code="1" name="/AIR202/COOL_WIND">
- <node ref="R38" pin="2"/>
- <node ref="Q9" pin="2"/>
- <node ref="U4" pin="12"/>
- </net>
- <net code="2" name="/AIR202/RST">
- <node ref="U4" pin="34"/>
- <node ref="U2" pin="10"/>
- </net>
- <net code="3" name="/AIR202/SCL">
- <node ref="R30" pin="2"/>
- <node ref="U4" pin="29"/>
- <node ref="U2" pin="12"/>
- <node ref="J6" pin="4"/>
- </net>
- <net code="4" name="/AIR202/SDA">
- <node ref="U4" pin="30"/>
- <node ref="R29" pin="2"/>
- <node ref="U2" pin="11"/>
- <node ref="J6" pin="2"/>
- </net>
- <net code="5" name="/POWER/V_BAT">
- <node ref="R55" pin="1"/>
- <node ref="R56" pin="2"/>
- <node ref="U2" pin="20"/>
- </net>
- <net code="6" name="+24V">
- <node ref="C29" pin="1"/>
- <node ref="R55" pin="2"/>
- <node ref="D7" pin="1"/>
- <node ref="D5" pin="1"/>
- <node ref="C7" pin="2"/>
- <node ref="J17" pin="2"/>
- <node ref="C6" pin="1"/>
- <node ref="J19" pin="2"/>
- <node ref="D6" pin="1"/>
- <node ref="U1" pin="1"/>
- <node ref="J1" pin="2"/>
- <node ref="U7" pin="5"/>
- <node ref="F1" pin="1"/>
- <node ref="J30" pin="1"/>
- </net>
- <net code="7" name="Net-(Q3-Pad3)">
- <node ref="Q3" pin="3"/>
- <node ref="R11" pin="2"/>
- <node ref="R7" pin="1"/>
- <node ref="Q4" pin="1"/>
- </net>
- <net code="8" name="Net-(Q6-Pad3)">
- <node ref="Q7" pin="1"/>
- <node ref="Q6" pin="3"/>
- <node ref="R17" pin="2"/>
- <node ref="R15" pin="1"/>
- </net>
- <net code="9" name="/STM8S003/PP_DW">
- <node ref="U7" pin="2"/>
- <node ref="U2" pin="16"/>
- </net>
- <net code="10" name="/STM8S003/PP_UP">
- <node ref="U2" pin="17"/>
- <node ref="U7" pin="3"/>
- </net>
- <net code="11" name="Net-(R10-Pad1)">
- <node ref="R10" pin="1"/>
- <node ref="U7" pin="4"/>
- </net>
- <net code="12" name="Net-(D6-Pad2)">
- <node ref="D6" pin="2"/>
- <node ref="J17" pin="1"/>
- <node ref="Q7" pin="2"/>
- </net>
- <net code="13" name="Net-(J13-Pad2)">
- <node ref="J13" pin="2"/>
- <node ref="U7" pin="6"/>
- </net>
- <net code="14" name="Net-(J13-Pad1)">
- <node ref="U7" pin="8"/>
- <node ref="J13" pin="1"/>
- </net>
- <net code="15" name="Net-(Q3-Pad1)">
- <node ref="R4" pin="1"/>
- <node ref="Q3" pin="1"/>
- </net>
- <net code="16" name="Net-(D7-Pad2)">
- <node ref="D7" pin="2"/>
- <node ref="J19" pin="1"/>
- <node ref="Q11" pin="2"/>
- </net>
- <net code="17" name="Net-(Q6-Pad1)">
- <node ref="R14" pin="1"/>
- <node ref="Q6" pin="1"/>
- </net>
- <net code="18" name="Net-(Q11-Pad1)">
- <node ref="Q9" pin="3"/>
- <node ref="R37" pin="1"/>
- <node ref="R39" pin="2"/>
- <node ref="Q11" pin="1"/>
- </net>
- <net code="19" name="Net-(Q9-Pad1)">
- <node ref="Q9" pin="1"/>
- <node ref="R36" pin="1"/>
- </net>
- <net code="20" name="Net-(D5-Pad2)">
- <node ref="D5" pin="2"/>
- <node ref="Q4" pin="2"/>
- <node ref="J1" pin="1"/>
- </net>
- <net code="21" name="+3V3">
- <node ref="R36" pin="2"/>
- <node ref="R3" pin="1"/>
- <node ref="J3" pin="1"/>
- <node ref="R4" pin="2"/>
- <node ref="U3" pin="2"/>
- <node ref="C9" pin="1"/>
- <node ref="R68" pin="2"/>
- <node ref="U2" pin="9"/>
- <node ref="R1" pin="1"/>
- <node ref="R66" pin="2"/>
- <node ref="R64" pin="2"/>
- <node ref="R12" pin="1"/>
- <node ref="R13" pin="1"/>
- <node ref="C1" pin="2"/>
- <node ref="J25" pin="1"/>
- <node ref="C10" pin="1"/>
- <node ref="R2" pin="1"/>
- <node ref="R14" pin="2"/>
- <node ref="R6" pin="1"/>
- </net>
- <net code="22" name="/STM8S003/TURN_IN">
- <node ref="R5" pin="1"/>
- <node ref="U2" pin="14"/>
- </net>
- <net code="23" name="/STM8S003/TURN_INO">
- <node ref="R9" pin="1"/>
- <node ref="U2" pin="13"/>
- </net>
- <net code="24" name="/STM8S003/LIMIT1">
- <node ref="R43" pin="1"/>
- <node ref="U2" pin="19"/>
- </net>
- <net code="25" name="/STM8S003/LIMIT2">
- <node ref="R61" pin="1"/>
- <node ref="U2" pin="6"/>
- </net>
- <net code="26" name="+5V">
- <node ref="R37" pin="2"/>
- <node ref="R51" pin="1"/>
- <node ref="J21" pin="1"/>
- <node ref="R63" pin="1"/>
- <node ref="J18" pin="1"/>
- <node ref="J8" pin="1"/>
- <node ref="R65" pin="1"/>
- <node ref="R67" pin="1"/>
- <node ref="J15" pin="1"/>
- <node ref="C30" pin="1"/>
- <node ref="L4" pin="2"/>
- <node ref="U1" pin="4"/>
- <node ref="R15" pin="2"/>
- <node ref="R7" pin="2"/>
- <node ref="J5" pin="4"/>
- <node ref="J6" pin="1"/>
- <node ref="J23" pin="1"/>
- <node ref="C12" pin="1"/>
- <node ref="J14" pin="4"/>
- <node ref="J12" pin="1"/>
- <node ref="U3" pin="3"/>
- </net>
- <net code="27" name="Net-(J14-Pad3)">
- <node ref="J14" pin="3"/>
- <node ref="R12" pin="2"/>
- <node ref="R43" pin="2"/>
- </net>
- <net code="28" name="Net-(J14-Pad2)">
- <node ref="R61" pin="2"/>
- <node ref="J14" pin="2"/>
- <node ref="R13" pin="2"/>
- </net>
- <net code="29" name="Net-(J12-Pad3)">
- <node ref="R9" pin="2"/>
- <node ref="J12" pin="3"/>
- <node ref="R3" pin="2"/>
- </net>
- <net code="30" name="Net-(J12-Pad2)">
- <node ref="J12" pin="2"/>
- <node ref="R5" pin="2"/>
- <node ref="R2" pin="2"/>
- </net>
- <net code="31" name="Net-(J2-Pad2)">
- <node ref="J2" pin="2"/>
- <node ref="K7" pin="7"/>
- </net>
- <net code="32" name="/STM8S003/ADC">
- <node ref="J4" pin="2"/>
- <node ref="U2" pin="2"/>
- <node ref="R1" pin="2"/>
- </net>
- <net code="33" name="/STM8S003/NTC">
- <node ref="J9" pin="2"/>
- <node ref="R6" pin="2"/>
- <node ref="U2" pin="3"/>
- </net>
- <net code="34" name="/STM8S003/COLL_WIND">
- <node ref="R16" pin="2"/>
- <node ref="Q6" pin="2"/>
- <node ref="U2" pin="5"/>
- </net>
- <net code="35" name="Net-(C8-Pad1)">
- <node ref="C8" pin="1"/>
- <node ref="U2" pin="8"/>
- </net>
- <net code="36" name="/STM8S003/COLD">
- <node ref="R18" pin="1"/>
- <node ref="U2" pin="1"/>
- </net>
- <net code="37" name="/STM8S003/TURN_PWM">
- <node ref="R8" pin="2"/>
- <node ref="Q3" pin="2"/>
- <node ref="U2" pin="15"/>
- </net>
- <net code="38" name="Net-(J10-Pad2)">
- <node ref="K8" pin="7"/>
- <node ref="J10" pin="2"/>
- </net>
- <net code="39" name="Net-(Q8-Pad1)">
- <node ref="R18" pin="2"/>
- <node ref="R26" pin="1"/>
- <node ref="Q8" pin="1"/>
- </net>
- <net code="40" name="/STM8S003/HEAT">
- <node ref="U2" pin="18"/>
- <node ref="J3" pin="2"/>
- <node ref="R19" pin="1"/>
- </net>
- <net code="41" name="/STM8S003/NRST">
- <node ref="U2" pin="4"/>
- <node ref="C11" pin="2"/>
- <node ref="J3" pin="4"/>
- </net>
- <net code="42" name="Net-(Q10-Pad1)">
- <node ref="R19" pin="2"/>
- <node ref="Q10" pin="1"/>
- <node ref="R20" pin="1"/>
- </net>
- <net code="43" name="+12V">
- <node ref="J28" pin="1"/>
- <node ref="K8" pin="6"/>
- <node ref="J22" pin="2"/>
- <node ref="U8" pin="4"/>
- <node ref="C34" pin="1"/>
- <node ref="C4" pin="1"/>
- <node ref="C44" pin="1"/>
- <node ref="D2" pin="1"/>
- <node ref="L1" pin="2"/>
- <node ref="C43" pin="1"/>
- <node ref="Q14" pin="2"/>
- <node ref="K7" pin="6"/>
- <node ref="R41" pin="1"/>
- <node ref="U6" pin="3"/>
- <node ref="D12" pin="1"/>
- <node ref="R22" pin="1"/>
- </net>
- <net code="44" name="Net-(D12-Pad2)">
- <node ref="Q10" pin="3"/>
- <node ref="D12" pin="2"/>
- <node ref="K7" pin="1"/>
- </net>
- <net code="45" name="+BATT">
- <node ref="Q5" pin="2"/>
- <node ref="K7" pin="5"/>
- <node ref="K7" pin="2"/>
- <node ref="J16" pin="2"/>
- <node ref="K8" pin="2"/>
- <node ref="K8" pin="5"/>
- </net>
- <net code="46" name="Net-(D2-Pad2)">
- <node ref="K8" pin="1"/>
- <node ref="D2" pin="2"/>
- <node ref="Q8" pin="3"/>
- </net>
- <net code="47" name="Net-(D8-Pad1)">
- <node ref="D8" pin="1"/>
- <node ref="J21" pin="2"/>
- <node ref="Q12" pin="3"/>
- </net>
- <net code="48" name="Net-(J7-Pad3)">
- <node ref="R50" pin="1"/>
- <node ref="J7" pin="3"/>
- </net>
- <net code="49" name="Net-(J7-Pad2)">
- <node ref="J7" pin="2"/>
- <node ref="R49" pin="1"/>
- </net>
- <net code="50" name="Net-(J5-Pad2)">
- <node ref="R47" pin="1"/>
- <node ref="J5" pin="2"/>
- </net>
- <net code="51" name="Net-(Q12-Pad1)">
- <node ref="Q12" pin="1"/>
- <node ref="R53" pin="1"/>
- <node ref="R58" pin="2"/>
- </net>
- <net code="52" name="/AIR202/HK_Take">
- <node ref="Q13" pin="3"/>
- <node ref="J20" pin="1"/>
- <node ref="R51" pin="2"/>
- </net>
- <net code="53" name="Net-(D13-Pad2)">
- <node ref="Q13" pin="1"/>
- <node ref="R59" pin="2"/>
- <node ref="R57" pin="1"/>
- <node ref="D13" pin="2"/>
- </net>
- <net code="54" name="Net-(J18-Pad3)">
- <node ref="R45" pin="2"/>
- <node ref="R52" pin="2"/>
- <node ref="J18" pin="3"/>
- </net>
- <net code="55" name="Net-(J23-Pad2)">
- <node ref="R63" pin="2"/>
- <node ref="Q2" pin="3"/>
- <node ref="J23" pin="2"/>
- </net>
- <net code="56" name="Net-(Q2-Pad1)">
- <node ref="R64" pin="1"/>
- <node ref="Q2" pin="1"/>
- </net>
- <net code="57" name="/AIR202/MOTOR_M">
- <node ref="Q2" pin="2"/>
- <node ref="U4" pin="5"/>
- </net>
- <net code="58" name="/AIR202/M_DIR">
- <node ref="Q16" pin="3"/>
- <node ref="J23" pin="3"/>
- <node ref="R67" pin="2"/>
- </net>
- <net code="59" name="/AIR202/M_EN">
- <node ref="R65" pin="2"/>
- <node ref="J23" pin="4"/>
- <node ref="Q15" pin="3"/>
- </net>
- <net code="60" name="+3V8">
- <node ref="J27" pin="1"/>
- <node ref="U4" pin="37"/>
- <node ref="R40" pin="1"/>
- <node ref="C33" pin="1"/>
- <node ref="C15" pin="1"/>
- <node ref="C35" pin="1"/>
- <node ref="L2" pin="2"/>
- <node ref="C16" pin="1"/>
- <node ref="C17" pin="1"/>
- <node ref="C32" pin="1"/>
- <node ref="U4" pin="38"/>
- </net>
- <net code="61" name="Net-(C23-Pad2)">
- <node ref="C23" pin="2"/>
- <node ref="U4" pin="16"/>
- <node ref="C24" pin="1"/>
- <node ref="C27" pin="1"/>
- <node ref="C26" pin="2"/>
- <node ref="J11" pin="2"/>
- </net>
- <net code="62" name="Net-(C24-Pad2)">
- <node ref="J11" pin="1"/>
- <node ref="U4" pin="17"/>
- <node ref="C28" pin="1"/>
- <node ref="C25" pin="1"/>
- <node ref="C27" pin="2"/>
- <node ref="C24" pin="2"/>
- </net>
- <net code="63" name="/AIR202/DROP">
- <node ref="U4" pin="13"/>
- <node ref="R24" pin="1"/>
- </net>
- <net code="64" name="/AIR202/MOTOR_DW">
- <node ref="U4" pin="7"/>
- <node ref="R44" pin="1"/>
- </net>
- <net code="65" name="/AIR202/MOTOR_UP">
- <node ref="U4" pin="6"/>
- <node ref="R45" pin="1"/>
- </net>
- <net code="66" name="/AIR202/LIGHT">
- <node ref="U4" pin="10"/>
- <node ref="R58" pin="1"/>
- </net>
- <net code="67" name="Net-(R35-Pad1)">
- <node ref="R35" pin="1"/>
- <node ref="U4" pin="20"/>
- </net>
- <net code="68" name="Net-(AE1-Pad1)">
- <node ref="U4" pin="32"/>
- <node ref="AE1" pin="1"/>
- </net>
- <net code="69" name="Net-(R34-Pad1)">
- <node ref="U4" pin="22"/>
- <node ref="R34" pin="1"/>
- </net>
- <net code="70" name="Net-(R32-Pad2)">
- <node ref="R32" pin="2"/>
- <node ref="U4" pin="23"/>
- </net>
- <net code="71" name="Net-(R62-Pad1)">
- <node ref="U9" pin="1"/>
- <node ref="R62" pin="1"/>
- </net>
- <net code="72" name="Net-(U9-Pad2)">
- <node ref="U9" pin="2"/>
- </net>
- <net code="73" name="Net-(U9-Pad4)">
- <node ref="U9" pin="4"/>
- </net>
- <net code="74" name="Net-(U9-Pad5)">
- <node ref="U9" pin="5"/>
- </net>
- <net code="75" name="Net-(C19-Pad1)">
- <node ref="U10" pin="C1"/>
- <node ref="C20" pin="1"/>
- <node ref="C19" pin="1"/>
- <node ref="U5" pin="3"/>
- <node ref="U4" pin="21"/>
- <node ref="U9" pin="8"/>
- </net>
- <net code="76" name="Net-(C18-Pad1)">
- <node ref="C18" pin="1"/>
- <node ref="R35" pin="2"/>
- <node ref="U9" pin="7"/>
- <node ref="U5" pin="4"/>
- <node ref="U10" pin="C2"/>
- </net>
- <net code="77" name="Net-(C22-Pad1)">
- <node ref="R32" pin="1"/>
- <node ref="U5" pin="1"/>
- <node ref="C22" pin="1"/>
- <node ref="U9" pin="6"/>
- <node ref="U10" pin="C3"/>
- </net>
- <net code="78" name="Net-(U10-PadC4)">
- <node ref="U10" pin="C4"/>
- </net>
- <net code="79" name="Net-(Q19-Pad3)">
- <node ref="R27" pin="2"/>
- <node ref="Q19" pin="3"/>
- </net>
- <net code="80" name="Net-(U10-PadC6)">
- <node ref="U10" pin="C6"/>
- </net>
- <net code="81" name="Net-(Q14-Pad1)">
- <node ref="R27" pin="1"/>
- <node ref="Q14" pin="1"/>
- <node ref="R22" pin="2"/>
- </net>
- <net code="82" name="Net-(Q19-Pad1)">
- <node ref="Q19" pin="1"/>
- <node ref="R60" pin="2"/>
- </net>
- <net code="83" name="Net-(J20-Pad3)">
- <node ref="J20" pin="3"/>
- <node ref="Q14" pin="3"/>
- </net>
- <net code="84" name="Net-(C21-Pad1)">
- <node ref="U10" pin="C7"/>
- <node ref="U5" pin="5"/>
- <node ref="U9" pin="3"/>
- <node ref="R34" pin="2"/>
- <node ref="C21" pin="1"/>
- </net>
- <net code="85" name="Net-(U10-PadC8)">
- <node ref="U10" pin="C8"/>
- </net>
- <net code="86" name="Net-(U10-PadSW)">
- <node ref="U10" pin="SW"/>
- </net>
- <net code="87" name="/AIR202/MOTOR_EN">
- <node ref="Q15" pin="2"/>
- <node ref="U4" pin="3"/>
- </net>
- <net code="88" name="Net-(Q15-Pad1)">
- <node ref="R66" pin="1"/>
- <node ref="Q15" pin="1"/>
- </net>
- <net code="89" name="Net-(J5-Pad3)">
- <node ref="J5" pin="3"/>
- <node ref="R48" pin="1"/>
- </net>
- <net code="90" name="Net-(J18-Pad2)">
- <node ref="J18" pin="2"/>
- <node ref="R23" pin="2"/>
- <node ref="R44" pin="2"/>
- </net>
- <net code="91" name="Net-(Q16-Pad1)">
- <node ref="Q16" pin="1"/>
- <node ref="R68" pin="1"/>
- </net>
- <net code="92" name="/AIR202/MOTOR_DIR">
- <node ref="Q16" pin="2"/>
- <node ref="U4" pin="4"/>
- </net>
- <net code="93" name="Net-(Q1-Pad1)">
- <node ref="R25" pin="1"/>
- <node ref="R24" pin="2"/>
- <node ref="Q1" pin="1"/>
- </net>
- <net code="94" name="Net-(D9-Pad1)">
- <node ref="Q1" pin="3"/>
- <node ref="J30" pin="2"/>
- <node ref="D9" pin="1"/>
- </net>
- <net code="95" name="Net-(D14-Pad2)">
- <node ref="R46" pin="2"/>
- <node ref="D14" pin="2"/>
- </net>
- <net code="96" name="/AIR202/LED">
- <node ref="U4" pin="2"/>
- <node ref="R46" pin="1"/>
- </net>
- <net code="97" name="Net-(U4-Pad19)">
- <node ref="U4" pin="19"/>
- </net>
- <net code="98" name="Net-(U4-Pad18)">
- <node ref="U4" pin="18"/>
- </net>
- <net code="99" name="/AIR202/U1RXD">
- <node ref="R31" pin="2"/>
- <node ref="U4" pin="9"/>
- </net>
- <net code="100" name="/AIR202/U1TXD">
- <node ref="U4" pin="8"/>
- <node ref="R33" pin="2"/>
- </net>
- <net code="101" name="Net-(MK1-Pad1)">
- <node ref="MK1" pin="1"/>
- </net>
- <net code="102" name="+2V8">
- <node ref="R29" pin="1"/>
- <node ref="C14" pin="2"/>
- <node ref="R23" pin="1"/>
- <node ref="R52" pin="1"/>
- <node ref="R30" pin="1"/>
- <node ref="U4" pin="24"/>
- <node ref="R60" pin="1"/>
- </net>
- <net code="103" name="/AIR202/U2RXD">
- <node ref="U4" pin="27"/>
- <node ref="R48" pin="2"/>
- </net>
- <net code="104" name="/AIR202/U2TXD">
- <node ref="U4" pin="28"/>
- <node ref="R47" pin="2"/>
- </net>
- <net code="105" name="Net-(MK3-Pad1)">
- <node ref="MK3" pin="1"/>
- </net>
- <net code="106" name="Net-(MK4-Pad1)">
- <node ref="MK4" pin="1"/>
- </net>
- <net code="107" name="/AIR202/TAKE_PHOTO">
- <node ref="R59" pin="1"/>
- <node ref="U4" pin="11"/>
- </net>
- <net code="108" name="Net-(J7-Pad1)">
- <node ref="J7" pin="1"/>
- </net>
- <net code="109" name="/AIR202/H_RXD">
- <node ref="U4" pin="25"/>
- <node ref="R50" pin="2"/>
- </net>
- <net code="110" name="/AIR202/H_TXD">
- <node ref="U4" pin="26"/>
- <node ref="R49" pin="2"/>
- </net>
- <net code="111" name="/AIR202/TEMP">
- <node ref="U4" pin="14"/>
- </net>
- <net code="112" name="GNDA">
- <node ref="U2" pin="7"/>
- <node ref="Q4" pin="3"/>
- <node ref="R56" pin="1"/>
- <node ref="R8" pin="1"/>
- <node ref="C35" pin="2"/>
- <node ref="R26" pin="2"/>
- <node ref="U1" pin="5"/>
- <node ref="R42" pin="2"/>
- <node ref="J16" pin="1"/>
- <node ref="Q10" pin="2"/>
- <node ref="J12" pin="4"/>
- <node ref="J9" pin="1"/>
- <node ref="D3" pin="2"/>
- <node ref="U1" pin="3"/>
- <node ref="U6" pin="1"/>
- <node ref="R20" pin="2"/>
- <node ref="C30" pin="2"/>
- <node ref="C11" pin="1"/>
- <node ref="J3" pin="3"/>
- <node ref="C10" pin="2"/>
- <node ref="C33" pin="2"/>
- <node ref="U3" pin="1"/>
- <node ref="C43" pin="2"/>
- <node ref="C8" pin="2"/>
- <node ref="C9" pin="2"/>
- <node ref="C32" pin="2"/>
- <node ref="C12" pin="2"/>
- <node ref="Q11" pin="3"/>
- <node ref="R39" pin="1"/>
- <node ref="U7" pin="1"/>
- <node ref="C7" pin="1"/>
- <node ref="R10" pin="2"/>
- <node ref="U7" pin="9"/>
- <node ref="U7" pin="7"/>
- <node ref="J2" pin="1"/>
- <node ref="C3" pin="2"/>
- <node ref="C2" pin="2"/>
- <node ref="U8" pin="3"/>
- <node ref="C6" pin="2"/>
- <node ref="C1" pin="1"/>
- <node ref="J4" pin="1"/>
- <node ref="D1" pin="2"/>
- <node ref="U8" pin="5"/>
- <node ref="C44" pin="2"/>
- <node ref="C4" pin="2"/>
- <node ref="R21" pin="2"/>
- <node ref="C34" pin="2"/>
- <node ref="J14" pin="1"/>
- <node ref="C26" pin="1"/>
- <node ref="C23" pin="1"/>
- <node ref="C25" pin="2"/>
- <node ref="C28" pin="2"/>
- <node ref="C16" pin="2"/>
- <node ref="C17" pin="2"/>
- <node ref="C21" pin="2"/>
- <node ref="D8" pin="2"/>
- <node ref="U10" pin="C5"/>
- <node ref="C14" pin="1"/>
- <node ref="U4" pin="1"/>
- <node ref="C15" pin="2"/>
- <node ref="D13" pin="1"/>
- <node ref="U4" pin="15"/>
- <node ref="C20" pin="2"/>
- <node ref="C19" pin="2"/>
- <node ref="U5" pin="2"/>
- <node ref="Q1" pin="2"/>
- <node ref="D9" pin="2"/>
- <node ref="R25" pin="2"/>
- <node ref="U4" pin="31"/>
- <node ref="U4" pin="33"/>
- <node ref="U4" pin="35"/>
- <node ref="U4" pin="36"/>
- <node ref="C18" pin="2"/>
- <node ref="J18" pin="4"/>
- <node ref="J8" pin="4"/>
- <node ref="D14" pin="1"/>
- <node ref="Q8" pin="2"/>
- <node ref="J5" pin="1"/>
- <node ref="J10" pin="1"/>
- <node ref="J6" pin="3"/>
- <node ref="Q19" pin="2"/>
- <node ref="R53" pin="2"/>
- <node ref="C22" pin="2"/>
- <node ref="R11" pin="1"/>
- <node ref="C29" pin="2"/>
- <node ref="Q7" pin="3"/>
- <node ref="J20" pin="2"/>
- <node ref="R17" pin="1"/>
- <node ref="R38" pin="1"/>
- <node ref="R16" pin="1"/>
- <node ref="J7" pin="4"/>
- <node ref="R57" pin="2"/>
- <node ref="MK2" pin="1"/>
- <node ref="Q13" pin="2"/>
- <node ref="Q12" pin="2"/>
- <node ref="AE1" pin="2"/>
- <node ref="R62" pin="2"/>
- <node ref="J22" pin="1"/>
- </net>
- <net code="113" name="/AIR202/U1T">
- <node ref="J8" pin="3"/>
- <node ref="R33" pin="1"/>
- </net>
- <net code="114" name="/AIR202/U1R">
- <node ref="J8" pin="2"/>
- <node ref="R31" pin="1"/>
- </net>
- <net code="115" name="+28V">
- <node ref="C3" pin="1"/>
- <node ref="R54" pin="1"/>
- <node ref="U8" pin="1"/>
- <node ref="C2" pin="1"/>
- <node ref="F1" pin="2"/>
- <node ref="Q5" pin="3"/>
- </net>
- <net code="116" name="Net-(D3-Pad1)">
- <node ref="L4" pin="1"/>
- <node ref="D3" pin="1"/>
- <node ref="U1" pin="2"/>
- </net>
- <net code="117" name="Net-(R40-Pad2)">
- <node ref="U6" pin="4"/>
- <node ref="R42" pin="1"/>
- <node ref="R40" pin="2"/>
- </net>
- <net code="118" name="Net-(C31-Pad2)">
- <node ref="C31" pin="2"/>
- <node ref="U6" pin="6"/>
- </net>
- <net code="119" name="Net-(R41-Pad2)">
- <node ref="R41" pin="2"/>
- <node ref="U6" pin="5"/>
- </net>
- <net code="120" name="Net-(C31-Pad1)">
- <node ref="L2" pin="1"/>
- <node ref="C31" pin="1"/>
- <node ref="U6" pin="2"/>
- </net>
- <net code="121" name="Net-(D1-Pad1)">
- <node ref="L1" pin="1"/>
- <node ref="U8" pin="2"/>
- <node ref="D1" pin="1"/>
- </net>
- <net code="122" name="Net-(Q5-Pad1)">
- <node ref="R21" pin="1"/>
- <node ref="Q5" pin="1"/>
- <node ref="R54" pin="2"/>
- </net>
- </nets>
- </export>
|