component
BMA580 Molecule
Public Made by Adomby adom
Bosch BMA580 accelerometer breakout molecule — the BMA580 with its decoupling, an activity LED, and Adom machine pins/contacts. Full KiCad project (schematic + PCB + 3D) with all components linked via
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523
(kicad_sch
(version 20250114)
(generator "eeschema")
(generator_version "9.0")
(uuid "0fa6f46a-4627-4476-aa95-74d4d1d7a515")
(paper "A4")
(lib_symbols
(symbol "Adom KiCad Symbols:Adom_Machine_Contact"
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "MC"
(at 0 2.54 0)
(do_not_autoplace)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:ADOM_MEDIUM_CONTACT"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "Adom_Machine_Contact_1_0"
(polyline
(pts
(xy 0 1.27) (xy 0.0389 1.2669) (xy 0.0776 1.2619) (xy 0.1161 1.255) (xy 0.1542 1.2461) (xy 0.1919 1.2354)
(xy 0.2292 1.2227) (xy 0.266 1.2081) (xy 0.3021 1.1917) (xy 0.3023 1.1912) (xy 0.3025 1.1908)
(xy 0.3027 1.1903) (xy 0.3029 1.1899) (xy 0.303 1.1895) (xy 0.3032 1.189) (xy 0.3033 1.1886) (xy 0.3033 1.1882)
(xy 0.3034 1.1878) (xy 0.3034 1.1873) (xy 0.3035 1.1869) (xy 0.3035 1.1865) (xy 0.3034 1.1861)
(xy 0.3034 1.1857) (xy 0.3033 1.1854) (xy 0.3032 1.185) (xy 0.1473 0.6033) (xy 0.1917 0.5898)
(xy 0.2348 0.5735) (xy 0.2764 0.5546) (xy 0.3165 0.533) (xy 0.355 0.509) (xy 0.3916 0.4826) (xy 0.4265 0.454)
(xy 0.4594 0.4232) (xy 0.4902 0.3903) (xy 0.5188 0.3554) (xy 0.5452 0.3188) (xy 0.5692 0.2803)
(xy 0.5908 0.2402) (xy 0.6097 0.1986) (xy 0.626 0.1555) (xy 0.6395 0.1111) (xy 1.2212 0.267) (xy 1.2216 0.2671)
(xy 1.2219 0.2671) (xy 1.2223 0.2672) (xy 1.2227 0.2672) (xy 1.2231 0.2672) (xy 1.2235 0.2672)
(xy 1.224 0.2672) (xy 1.2244 0.2671) (xy 1.2248 0.267) (xy 1.2252 0.2669) (xy 1.2257 0.2668) (xy 1.2261 0.2667)
(xy 1.2265 0.2665) (xy 1.227 0.2663) (xy 1.2274 0.2661) (xy 1.2279 0.2659) (xy 1.2287 0.2655)
(xy 1.2295 0.265) (xy 1.2303 0.2644) (xy 1.231 0.2638) (xy 1.2318 0.2632) (xy 1.2327 0.2624) (xy 1.2335 0.2617)
(xy 1.2343 0.2608) (xy 1.2351 0.2599) (xy 1.2359 0.259) (xy 1.2368 0.258) (xy 1.2376 0.2569) (xy 1.2385 0.2558)
(xy 1.2393 0.2546) (xy 1.2402 0.2534) (xy 1.241 0.2521) (xy 1.2428 0.2493) (xy 1.2446 0.2463)
(xy 1.2463 0.2431) (xy 1.2481 0.2397) (xy 1.2499 0.236) (xy 1.2518 0.2321) (xy 1.2536 0.228) (xy 1.2554 0.2237)
(xy 1.2572 0.2192) (xy 1.259 0.2145) (xy 1.2608 0.2096) (xy 1.2626 0.2045) (xy 1.2644 0.1992)
(xy 1.2662 0.1937) (xy 1.268 0.1881) (xy 1.2697 0.1822) (xy 1.2714 0.1762) (xy 1.2731 0.17) (xy 1.2748 0.1636)
(xy 1.2764 0.1571) (xy 1.278 0.1505) (xy 1.2796 0.1436) (xy 1.2811 0.1366) (xy 1.2826 0.1295)
(xy 1.2854 0.1149) (xy 1.2881 0.0997) (xy 1.2906 0.0841) (xy 1.2928 0.0681) (xy 1.2948 0.0517)
(xy 1.2966 0.0351) (xy 1.2981 0.0181) (xy 1.2993 0.001) (xy 1.3003 -0.0162) (xy 1.301 -0.0337)
(xy 1.3014 -0.0512) (xy 1.3016 -0.069) (xy 1.3014 -0.0868) (xy 1.301 -0.1043) (xy 1.3003 -0.1218)
(xy 1.2993 -0.139) (xy 1.2981 -0.1561) (xy 1.2966 -0.1731) (xy 1.2948 -0.1898) (xy 1.2928 -0.2061)
(xy 1.2906 -0.2221) (xy 1.2881 -0.2377) (xy 1.2854 -0.2529) (xy 1.2826 -0.2675) (xy 1.2796 -0.2816)
(xy 1.2764 -0.2951) (xy 1.2731 -0.308) (xy 1.2697 -0.3202) (xy 1.268 -0.3261) (xy 1.2662 -0.3317)
(xy 1.2644 -0.3372) (xy 1.2626 -0.3425) (xy 1.2608 -0.3476) (xy 1.259 -0.3525) (xy 1.2572 -0.3572)
(xy 1.2554 -0.3618) (xy 1.2536 -0.3661) (xy 1.2518 -0.3701) (xy 1.2499 -0.374) (xy 1.2481 -0.3777)
(xy 1.2463 -0.3811) (xy 1.2446 -0.3844) (xy 1.2428 -0.3873) (xy 1.241 -0.3901) (xy 1.2402 -0.3914)
(xy 1.2393 -0.3926) (xy 1.2385 -0.3938) (xy 1.2376 -0.3949) (xy 1.2368 -0.396) (xy 1.2359 -0.397)
(xy 1.2351 -0.3979) (xy 1.2343 -0.3988) (xy 1.2335 -0.3997) (xy 1.2327 -0.4004) (xy 1.2319 -0.4012)
(xy 1.2311 -0.4018) (xy 1.2303 -0.4024) (xy 1.2295 -0.403) (xy 1.2287 -0.4035) (xy 1.2279 -0.4039)
(xy 1.2275 -0.4041) (xy 1.227 -0.4043) (xy 1.2266 -0.4045) (xy 1.2261 -0.4047) (xy 1.2257 -0.4048)
(xy 1.2252 -0.4049) (xy 1.2248 -0.405) (xy 1.2244 -0.4051) (xy 1.224 -0.4052) (xy 1.2235 -0.4052)
(xy 1.2231 -0.4052) (xy 1.2227 -0.4052) (xy 1.2223 -0.4052) (xy 1.2219 -0.4052) (xy 1.2215 -0.4051)
(xy 1.2212 -0.405) (xy 0.6395 -0.2491) (xy 0.626 -0.2935) (xy 0.6097 -0.3366) (xy 0.5908 -0.3782)
(xy 0.5692 -0.4183) (xy 0.5452 -0.4568) (xy 0.5188 -0.4934) (xy 0.4902 -0.5283) (xy 0.4594 -0.5612)
(xy 0.4265 -0.592) (xy 0.3916 -0.6206) (xy 0.355 -0.647) (xy 0.3165 -0.671) (xy 0.2764 -0.6926)
(xy 0.2348 -0.7115) (xy 0.1917 -0.7278) (xy 0.1473 -0.7413) (xy 0.3032 -1.323) (xy 0.3033 -1.3233)
(xy 0.3034 -1.3237) (xy 0.3034 -1.3241) (xy 0.3034 -1.3245) (xy 0.3035 -1.3249) (xy 0.3034 -1.3253)
(xy 0.3034 -1.3258) (xy 0.3033 -1.3262) (xy 0.3033 -1.3266) (xy 0.3032 -1.327) (xy 0.303 -1.3275)
(xy 0.3029 -1.3279) (xy 0.3027 -1.3283) (xy 0.3025 -1.3288) (xy 0.3023 -1.3292) (xy 0.3021 -1.3297)
(xy 0.3015 -1.3307) (xy 0.3009 -1.3317) (xy 0.3002 -1.3327) (xy 0.2994 -1.3337) (xy 0.2984 -1.3347)
(xy 0.2974 -1.3357) (xy 0.2963 -1.3367) (xy 0.2951 -1.3378) (xy 0.2939 -1.3388) (xy 0.2925 -1.3399)
(xy 0.291 -1.341) (xy 0.2895 -1.3421) (xy 0.2878 -1.3431) (xy 0.2861 -1.3442) (xy 0.2843 -1.3453)
(xy 0.2824 -1.3465) (xy 0.2804 -1.3476) (xy 0.2783 -1.3487) (xy 0.2761 -1.3498) (xy 0.2738 -1.351)
(xy 0.2715 -1.3521) (xy 0.269 -1.3533) (xy 0.2665 -1.3544) (xy 0.2639 -1.3555) (xy 0.2612 -1.3567)
(xy 0.2584 -1.3578) (xy 0.2555 -1.359) (xy 0.2526 -1.3601) (xy 0.2496 -1.3613) (xy 0.2465 -1.3624)
(xy 0.2433 -1.3635) (xy 0.2056 -1.3759) (xy 0.1675 -1.3863) (xy 0.129 -1.3947) (xy 0.0903 -1.4013)
(xy 0.0514 -1.4059) (xy 0.0124 -1.4085) (xy -0.0266 -1.4092) (xy -0.0656 -1.408) (xy -0.1045 -1.4049)
(xy -0.1432 -1.3999) (xy -0.1816 -1.3929) (xy -0.2198 -1.3841) (xy -0.2575 -1.3733) (xy -0.2948 -1.3607)
(xy -0.3316 -1.3461) (xy -0.3677 -1.3297) (xy -0.3679 -1.3292) (xy -0.3681 -1.3288) (xy -0.3683 -1.3283)
(xy -0.3685 -1.3279) (xy -0.3686 -1.3275) (xy -0.3688 -1.327) (xy -0.3689 -1.3266) (xy -0.3689 -1.3262)
(xy -0.369 -1.3258) (xy -0.369 -1.3253) (xy -0.369 -1.3249) (xy -0.369 -1.3245) (xy -0.369 -1.3241)
(xy -0.369 -1.3237) (xy -0.3689 -1.3233) (xy -0.3688 -1.323) (xy -0.2129 -0.7413) (xy -0.2573 -0.7278)
(xy -0.3004 -0.7115) (xy -0.342 -0.6926) (xy -0.3821 -0.671) (xy -0.4206 -0.647) (xy -0.4572 -0.6206)
(xy -0.4921 -0.592) (xy -0.525 -0.5612) (xy -0.5558 -0.5283) (xy -0.5844 -0.4934) (xy -0.6108 -0.4568)
(xy -0.6348 -0.4183) (xy -0.6564 -0.3782) (xy -0.6753 -0.3366) (xy -0.6916 -0.2935) (xy -0.7051 -0.2491)
(xy -1.2868 -0.405) (xy -1.2871 -0.4051) (xy -1.2875 -0.4052) (xy -1.2879 -0.4052) (xy -1.2883 -0.4052)
(xy -1.2887 -0.4052) (xy -1.2891 -0.4052) (xy -1.2896 -0.4052) (xy -1.29 -0.4051) (xy -1.2904 -0.405)
(xy -1.2908 -0.4049) (xy -1.2913 -0.4048) (xy -1.2917 -0.4047) (xy -1.2922 -0.4045) (xy -1.2926 -0.4043)
(xy -1.2931 -0.4041) (xy -1.2935 -0.4039) (xy -1.2943 -0.4035) (xy -1.2951 -0.403) (xy -1.2959 -0.4024)
(xy -1.2967 -0.4018) (xy -1.2975 -0.4012) (xy -1.2983 -0.4004) (xy -1.2991 -0.3997) (xy -1.2999 -0.3988)
(xy -1.3007 -0.3979) (xy -1.3015 -0.397) (xy -1.3024 -0.396) (xy -1.3032 -0.3949) (xy -1.3041 -0.3938)
(xy -1.3049 -0.3926) (xy -1.3058 -0.3914) (xy -1.3066 -0.3901) (xy -1.3084 -0.3873) (xy -1.3102 -0.3843)
(xy -1.3119 -0.3811) (xy -1.3137 -0.3777) (xy -1.3155 -0.374) (xy -1.3174 -0.3701) (xy -1.3192 -0.366)
(xy -1.321 -0.3617) (xy -1.3228 -0.3572) (xy -1.3246 -0.3525) (xy -1.3264 -0.3476) (xy -1.3282 -0.3425)
(xy -1.33 -0.3372) (xy -1.3318 -0.3317) (xy -1.3336 -0.3261) (xy -1.3353 -0.3202) (xy -1.337 -0.3142)
(xy -1.3387 -0.308) (xy -1.3404 -0.3016) (xy -1.342 -0.2951) (xy -1.3436 -0.2885) (xy -1.3452 -0.2816)
(xy -1.3467 -0.2746) (xy -1.3482 -0.2675) (xy -1.351 -0.2529) (xy -1.3537 -0.2377) (xy -1.3562 -0.2221)
(xy -1.3584 -0.2061) (xy -1.3604 -0.1897) (xy -1.3622 -0.1731) (xy -1.3637 -0.1561) (xy -1.3649 -0.139)
(xy -1.3659 -0.1218) (xy -1.3666 -0.1043) (xy -1.367 -0.0868) (xy -1.3672 -0.069) (xy -1.367 -0.0512)
(xy -1.3666 -0.0337) (xy -1.3659 -0.0162) (xy -1.3649 0.001) (xy -1.3637 0.0181) (xy -1.3622 0.0351)
(xy -1.3604 0.0518) (xy -1.3584 0.0681) (xy -1.3562 0.0841) (xy -1.3537 0.0997) (xy -1.351 0.1149)
(xy -1.3482 0.1295) (xy -1.3452 0.1436) (xy -1.342 0.1571) (xy -1.3387 0.17) (xy -1.3353 0.1822)
(xy -1.3336 0.1881) (xy -1.3318 0.1937) (xy -1.33 0.1992) (xy -1.3282 0.2045) (xy -1.3264 0.2096)
(xy -1.3246 0.2145) (xy -1.3228 0.2192) (xy -1.321 0.2238) (xy -1.3192 0.2281) (xy -1.3174 0.2321)
(xy -1.3155 0.236) (xy -1.3137 0.2397) (xy -1.3119 0.2431) (xy -1.3102 0.2464) (xy -1.3084 0.2493)
(xy -1.3066 0.2521) (xy -1.3058 0.2534) (xy -1.3049 0.2546) (xy -1.3041 0.2558) (xy -1.3032 0.2569)
(xy -1.3024 0.258) (xy -1.3015 0.259) (xy -1.3007 0.2599) (xy -1.2999 0.2608) (xy -1.2991 0.2617)
(xy -1.2983 0.2625) (xy -1.2974 0.2632) (xy -1.2966 0.2638) (xy -1.2959 0.2644) (xy -1.2951 0.265)
(xy -1.2943 0.2655) (xy -1.2935 0.2659) (xy -1.293 0.2661) (xy -1.2926 0.2663) (xy -1.2921 0.2665)
(xy -1.2917 0.2667) (xy -1.2913 0.2668) (xy -1.2908 0.2669) (xy -1.2904 0.267) (xy -1.29 0.2671)
(xy -1.2896 0.2672) (xy -1.2891 0.2672) (xy -1.2887 0.2672) (xy -1.2883 0.2672) (xy -1.2879 0.2672)
(xy -1.2875 0.2672) (xy -1.2872 0.2671) (xy -1.2868 0.267) (xy -0.7051 0.1111) (xy -0.6916 0.1555)
(xy -0.6753 0.1986) (xy -0.6564 0.2402) (xy -0.6348 0.2803) (xy -0.6108 0.3188) (xy -0.5844 0.3554)
(xy -0.5558 0.3903) (xy -0.525 0.4232) (xy -0.4921 0.454) (xy -0.4572 0.4826) (xy -0.4206 0.509)
(xy -0.3821 0.533) (xy -0.342 0.5546) (xy -0.3004 0.5735) (xy -0.2573 0.5898) (xy -0.2129 0.6033)
(xy -0.3688 1.185) (xy -0.3689 1.1853) (xy -0.369 1.1857) (xy -0.369 1.1861) (xy -0.369 1.1865)
(xy -0.3691 1.1869) (xy -0.369 1.1873) (xy -0.369 1.1878) (xy -0.3689 1.1882) (xy -0.3689 1.1886)
(xy -0.3688 1.189) (xy -0.3686 1.1895) (xy -0.3685 1.1899) (xy -0.3683 1.1903) (xy -0.3681 1.1908)
(xy -0.3679 1.1912) (xy -0.3677 1.1917) (xy -0.3671 1.1927) (xy -0.3665 1.1937) (xy -0.3658 1.1947)
(xy -0.365 1.1957) (xy -0.364 1.1967) (xy -0.363 1.1977) (xy -0.3619 1.1987) (xy -0.3607 1.1998)
(xy -0.3595 1.2008) (xy -0.3581 1.2019) (xy -0.3566 1.203) (xy -0.3551 1.2041) (xy -0.3534 1.2052)
(xy -0.3517 1.2062) (xy -0.3499 1.2073) (xy -0.348 1.2085) (xy -0.3459 1.2096) (xy -0.3438 1.2107)
(xy -0.3417 1.2118) (xy -0.3394 1.213) (xy -0.337 1.2141) (xy -0.3346 1.2153) (xy -0.3321 1.2164)
(xy -0.3294 1.2176) (xy -0.3267 1.2187) (xy -0.324 1.2198) (xy -0.3211 1.221) (xy -0.3182 1.2221)
(xy -0.3151 1.2233) (xy -0.3121 1.2244) (xy -0.3089 1.2256) (xy -0.2712 1.2379) (xy -0.233 1.2483)
(xy -0.1946 1.2568) (xy -0.1559 1.2633) (xy -0.117 1.2679) (xy -0.078 1.2705) (xy -0.039 1.2712)
(xy 0 1.27)
)
(stroke
(width 0.1889)
(type solid)
)
(fill
(type background)
)
)
(polyline
(pts
(xy 0.0567 1.6687) (xy 0.1451 1.662) (xy 0.2322 1.651) (xy 0.3179 1.6356) (xy 0.402 1.6162) (xy 0.4846 1.5928)
(xy 0.5655 1.5654) (xy 0.6445 1.5343) (xy 0.7216 1.4994) (xy 0.7966 1.461) (xy 0.8694 1.4191)
(xy 0.94 1.3738) (xy 1.0083 1.3253) (xy 1.074 1.2737) (xy 1.1371 1.219) (xy 1.1976 1.1614) (xy 1.2552 1.1009)
(xy 1.3099 1.0378) (xy 1.3615 0.9721) (xy 1.41 0.9038) (xy 1.4553 0.8332) (xy 1.4972 0.7604) (xy 1.5356 0.6854)
(xy 1.5705 0.6083) (xy 1.6016 0.5293) (xy 1.629 0.4484) (xy 1.6524 0.3658) (xy 1.6718 0.2817)
(xy 1.6872 0.196) (xy 1.6982 0.1089) (xy 1.7049 0.0205) (xy 1.7072 -0.069) (xy 1.7049 -0.1585)
(xy 1.6982 -0.2469) (xy 1.6872 -0.334) (xy 1.6718 -0.4197) (xy 1.6524 -0.5038) (xy 1.629 -0.5864)
(xy 1.6016 -0.6673) (xy 1.5705 -0.7463) (xy 1.5356 -0.8234) (xy 1.4972 -0.8984) (xy 1.4553 -0.9712)
(xy 1.41 -1.0418) (xy 1.3615 -1.1101) (xy 1.3099 -1.1758) (xy 1.2552 -1.2389) (xy 1.1976 -1.2994)
(xy 1.1371 -1.357) (xy 1.074 -1.4117) (xy 1.0083 -1.4633) (xy 0.94 -1.5118) (xy 0.8694 -1.5571)
(xy 0.7966 -1.599) (xy 0.7216 -1.6374) (xy 0.6445 -1.6723) (xy 0.5655 -1.7034) (xy 0.4846 -1.7308)
(xy 0.402 -1.7542) (xy 0.3179 -1.7736) (xy 0.2322 -1.789) (xy 0.1451 -1.8) (xy 0.0567 -1.8067)
(xy -0.0328 -1.809) (xy -0.1223 -1.8067) (xy -0.2107 -1.8) (xy -0.2978 -1.789) (xy -0.3835 -1.7736)
(xy -0.4676 -1.7542) (xy -0.5502 -1.7308) (xy -0.6311 -1.7034) (xy -0.7101 -1.6723) (xy -0.7872 -1.6374)
(xy -0.8622 -1.599) (xy -0.935 -1.5571) (xy -1.0056 -1.5118) (xy -1.0739 -1.4633) (xy -1.1396 -1.4117)
(xy -1.2027 -1.357) (xy -1.2632 -1.2994) (xy -1.3208 -1.2389) (xy -1.3755 -1.1758) (xy -1.4271 -1.1101)
(xy -1.4756 -1.0418) (xy -1.5209 -0.9712) (xy -1.5628 -0.8984) (xy -1.6012 -0.8234) (xy -1.6361 -0.7463)
(xy -1.6672 -0.6673) (xy -1.6946 -0.5864) (xy -1.718 -0.5038) (xy -1.7374 -0.4197) (xy -1.7528 -0.334)
(xy -1.7638 -0.2469) (xy -1.7705 -0.1585) (xy -1.7728 -0.069) (xy -1.7705 0.0205) (xy -1.7638 0.1089)
(xy -1.7528 0.196) (xy -1.7374 0.2817) (xy -1.718 0.3658) (xy -1.6946 0.4484) (xy -1.6672 0.5293)
(xy -1.6361 0.6083) (xy -1.6012 0.6854) (xy -1.5628 0.7604) (xy -1.5209 0.8332) (xy -1.4756 0.9038)
(xy -1.4271 0.9721) (xy -1.3755 1.0378) (xy -1.3208 1.1009) (xy -1.2632 1.1614) (xy -1.2027 1.219)
(xy -1.1396 1.2737) (xy -1.0739 1.3253) (xy -1.0056 1.3738) (xy -0.935 1.4191) (xy -0.8622 1.461)
(xy -0.7872 1.4994) (xy -0.7101 1.5343) (xy -0.6311 1.5654) (xy -0.5502 1.5928) (xy -0.4676 1.6162)
(xy -0.3835 1.6356) (xy -0.2978 1.651) (xy -0.2107 1.662) (xy -0.1223 1.6687) (xy -0.0328 1.671)
(xy 0.0567 1.6687)
)
(stroke
(width 0.1889)
(type solid)
)
(fill
(type background)
)
)
)
(symbol "Adom_Machine_Contact_1_1"
(pin passive line
(at 5.08 0 180)
(length 3.81)
(name ""
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
(embedded_fonts no)
)
(symbol "Adom KiCad Symbols:MachinePin"
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "MP"
(at -1.27 1.524 0)
(do_not_autoplace)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "adom-kicad-footprint-library:MachinePinMediumShort"
(at 0 -1.524 0)
(do_not_autoplace)
(effects
(font
(size 0.635 0.635)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "MachinePin*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "MachinePin_1_0"
(polyline
(pts
(xy -4.445 0.255) (xy -2.54 0.255)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(arc
(start -4.445 -0.255)
(mid -4.7 0)
(end -4.445 0.255)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.54 0.435) (xy -2.475 0.5)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.54 0.255) (xy -2.54 0.435)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.54 -0.255) (xy -4.445 -0.255)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.54 -0.435) (xy -2.54 -0.255)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.475 0.5) (xy -2.375 0.5)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.475 -0.5) (xy -2.54 -0.435)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.375 0.5) (xy 0.06 0.5)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.375 -0.5) (xy -2.475 -0.5)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.06 0.8) (xy 0.26 0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.06 0.5) (xy 0.06 0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.06 -0.5) (xy -2.375 -0.5)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.06 -0.8) (xy 0.06 -0.5)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.26 0.8) (xy 0.26 0.6)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.26 0.6) (xy 2.16 0.6)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.26 -0.6) (xy 0.26 -0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 0.26 -0.8) (xy 0.06 -0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 2.16 0.8) (xy 2.96 0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 2.16 0.6) (xy 2.16 0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 2.16 -0.6) (xy 0.26 -0.6)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 2.16 -0.8) (xy 2.16 -0.6)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 2.96 0.8) (xy 2.96 -0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 2.96 -0.8) (xy 2.16 -0.8)
)
(stroke
(width 0.2)
(type default)
)
(fill
(type none)
)
)
)
(symbol "MachinePin_1_1"
(pin passive line
(at 5.08 0 180)
(length 2)
(name ""
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
(embedded_fonts no)
)
(symbol "BMA580:BMA580"
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "AC"
(at 24.13 7.62 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
)
)
(property "Value" "BMA580"
(at 24.13 5.08 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
)
)
(property "Footprint" "BMA580:BMA580"
(at 24.13 -94.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Datasheet" "https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bma580-ds000.pdf"
(at 24.13 -194.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Description" "Accelerometer X, Y, Z Axis +/-2g, 4g, 8g, 16g 1.56Hz ~ 6.4kHz 6-WLCSP (1.2x0.8)"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Height" "0.59"
(at 24.13 -394.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Mouser Part Number" "262-BMA580"
(at 24.13 -494.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Bosch-Sensortec/BMA580?qs=2wMNvWM5ZX7YwZt9g%252Bm1bQ%3D%3D"
(at 24.13 -594.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Manufacturer_Name" "BOSCH"
(at 24.13 -694.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Manufacturer_Part_Number" "BMA580"
(at 24.13 -794.92 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(symbol "BMA580_1_1"
(rectangle
(start 5.08 2.54)
(end 22.86 -7.62)
(stroke
(width 0.254)
(type default)
)
(fill
(type background)
)
)
(pin passive line
(at 0 0 0)
(length 5.08)
(name "SDA"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "4"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 0 -2.54 0)
(length 5.08)
(name "SCL"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "5"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 0 -5.08 0)
(length 5.08)
(name "VDD"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "6"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 27.94 0 180)
(length 5.08)
(name "INT2"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "3"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 27.94 -2.54 180)
(length 5.08)
(name "INT1"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 27.94 -5.08 180)
(length 5.08)
(name "VSS"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
(embedded_fonts no)
)
(symbol "Device:C"
(pin_numbers
(hide yes)
)
(pin_names
(offset 0.254)
)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "C"
(at 0.635 2.54 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Value" "C"
(at 0.635 -2.54 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
)
(property "Footprint" ""
(at 0.9652 -3.81 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Unpolarized capacitor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "cap capacitor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "C_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 0.762) (xy 2.032 0.762)
)
(stroke
(width 0.508)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -2.032 -0.762) (xy 2.032 -0.762)
)
(stroke
(width 0.508)
(type default)
)
(fill
(type none)
)
)
)
(symbol "C_1_1"
(pin passive line
(at 0 3.81 270)
(length 2.794)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 0 -3.81 90)
(length 2.794)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
(embedded_fonts no)
)
(symbol "Device:LED"
(pin_numbers
(hide yes)
)
(pin_names
(offset 1.016)
(hide yes)
)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "D"
(at 0 2.54 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "LED"
(at 0 -2.54 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Light emitting diode"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Pins" "1=K 2=A"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "LED diode"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -1.27 0) (xy 1.27 0)
)
(stroke
(width 0)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy -1.27 -1.27) (xy -1.27 1.27)
)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
(polyline
(pts
(xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
)
(symbol "LED_1_1"
(pin passive line
(at -3.81 0 0)
(length 2.54)
(name "K"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 3.81 0 180)
(length 2.54)
(name "A"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
(embedded_fonts no)
)
(symbol "Device:R"
(pin_numbers
(hide yes)
)
(pin_names
(offset 0)
)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(property "Reference" "R"
(at 2.032 0 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "R"
(at 0 0 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" ""
(at -1.778 0 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Resistor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_keywords" "R res resistor"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "ki_fp_filters" "R_*"
(at 0 0 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(symbol "R_0_1"
(rectangle
(start -1.016 -2.54)
(end 1.016 2.54)
(stroke
(width 0.254)
(type default)
)
(fill
(type none)
)
)
)
(symbol "R_1_1"
(pin passive line
(at 0 3.81 270)
(length 1.27)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "1"
(effects
(font
(size 1.27 1.27)
)
)
)
)
(pin passive line
(at 0 -3.81 90)
(length 1.27)
(name "~"
(effects
(font
(size 1.27 1.27)
)
)
)
(number "2"
(effects
(font
(size 1.27 1.27)
)
)
)
)
)
(embedded_fonts no)
)
)
(junction
(at 114.3 96.52)
(diameter 0)
(color 0 0 0 0)
(uuid "571d57f5-2e78-46f8-8e1c-94b947689e49")
)
(junction
(at 146.05 104.14)
(diameter 0)
(color 0 0 0 0)
(uuid "94f6849e-3ea9-45a3-aeb0-dbee356fa08b")
)
(junction
(at 146.05 96.52)
(diameter 0)
(color 0 0 0 0)
(uuid "e8703ac2-6b73-48b6-bf9a-243870da5b18")
)
(junction
(at 114.3 104.14)
(diameter 0)
(color 0 0 0 0)
(uuid "f474851c-2522-4996-a2ad-4d2b31fb2e2a")
)
(wire
(pts
(xy 116.84 115.57) (xy 114.3 115.57)
)
(stroke
(width 0)
(type default)
)
(uuid "044801c7-0eb7-454f-8d4e-99d0196882a2")
)
(wire
(pts
(xy 147.32 96.52) (xy 146.05 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "18b68f33-185e-4e0a-9846-681fa9fd8004")
)
(wire
(pts
(xy 146.05 115.57) (xy 146.05 104.14)
)
(stroke
(width 0)
(type default)
)
(uuid "298a0ac1-2ca7-469a-98da-344f24ad83c6")
)
(wire
(pts
(xy 113.03 96.52) (xy 114.3 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "2e9eff29-446f-4071-af5e-f9e36c38e135")
)
(wire
(pts
(xy 114.3 104.14) (xy 114.3 115.57)
)
(stroke
(width 0)
(type default)
)
(uuid "479e75fd-065e-432a-8aed-3615b298eeb6")
)
(wire
(pts
(xy 146.05 104.14) (xy 146.05 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "642e440a-8a4f-4877-bdfb-2832a72d7f53")
)
(wire
(pts
(xy 142.24 115.57) (xy 146.05 115.57)
)
(stroke
(width 0)
(type default)
)
(uuid "8e927cd8-945b-46a4-997b-4d4864fae053")
)
(wire
(pts
(xy 114.3 96.52) (xy 114.3 104.14)
)
(stroke
(width 0)
(type default)
)
(uuid "966f9dad-62e9-499f-8000-63f56784d710")
)
(wire
(pts
(xy 114.3 96.52) (xy 116.84 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "9da47c1d-a3fe-4ccb-848d-e54fa48a4f6f")
)
(wire
(pts
(xy 114.3 104.14) (xy 127 104.14)
)
(stroke
(width 0)
(type default)
)
(uuid "ae330de3-7295-41ed-8e5e-5d0879eeea5d")
)
(wire
(pts
(xy 134.62 104.14) (xy 146.05 104.14)
)
(stroke
(width 0)
(type default)
)
(uuid "b1e62b19-92c2-444b-a48c-24a1fd769fb5")
)
(wire
(pts
(xy 124.46 115.57) (xy 134.62 115.57)
)
(stroke
(width 0)
(type default)
)
(uuid "bddbf69b-d21b-4cc7-8eb4-9f645e9a9e3e")
)
(wire
(pts
(xy 146.05 96.52) (xy 144.78 96.52)
)
(stroke
(width 0)
(type default)
)
(uuid "e86047a6-7562-4131-b519-7c6ec16f97a7")
)
(global_label "V+"
(shape input)
(at 113.03 96.52 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "00fbe6d4-4911-45b0-91a5-1413c4aa7e6f")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 107.3838 96.52 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "GND"
(shape input)
(at 147.32 96.52 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "08c0bed7-aae1-48f4-a24a-e7ca95e29d0e")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 154.1757 96.52 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "SCL"
(shape input)
(at 127 62.23 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "0bf297f3-7d29-4f1e-9052-077b5e4b943e")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 120.5072 62.23 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "INT2"
(shape input)
(at 92.71 71.12 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "19d3ba82-2a04-4896-856d-87b242208326")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 99.8076 71.12 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "INT2"
(shape input)
(at 144.78 91.44 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "215df0d0-7baa-4896-82e1-9b27feec694f")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 151.8776 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "INT1"
(shape input)
(at 92.71 80.01 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "2494d5f2-efe0-4f58-92c1-8ccba68094fc")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 99.8076 80.01 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "SDA"
(shape input)
(at 116.84 91.44 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "3fe7ec2d-277c-4d04-aaec-152c184415aa")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 110.2867 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "INT1"
(shape input)
(at 144.78 93.98 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "5041ddba-a734-48be-8042-b0b29172b2c0")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 151.8776 93.98 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "V+"
(shape input)
(at 93.98 54.61 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "64038e07-f896-43b7-96e5-407e328f17d8")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 99.6262 54.61 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "SCL"
(shape input)
(at 116.84 93.98 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "874d4f42-0b16-49ec-9fdb-a8e1359a70e7")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 110.3472 93.98 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "V+"
(shape input)
(at 92.71 87.63 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "999fc87a-f3e3-4ea9-a87d-71038db19b6d")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 98.3562 87.63 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(global_label "SDA"
(shape input)
(at 127 54.61 180)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify right)
)
(uuid "a1c7df8c-f8b9-4cc4-a4ae-f5987a69920d")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 120.4467 54.61 0)
(effects
(font
(size 1.27 1.27)
)
(justify right)
(hide yes)
)
)
)
(global_label "GND"
(shape input)
(at 93.98 62.23 0)
(fields_autoplaced yes)
(effects
(font
(size 1.27 1.27)
)
(justify left)
)
(uuid "f02e1eec-8328-4cae-acc4-b86da09c569b")
(property "Intersheetrefs" "${INTERSHEET_REFS}"
(at 100.8357 62.23 0)
(effects
(font
(size 1.27 1.27)
)
(justify left)
(hide yes)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:MachinePin")
(at 132.08 62.23 180)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "16b655fa-c017-4ed9-8da8-03b45d17a7e5")
(property "Reference" "MP4"
(at 133.35 63.754 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 132.94 58.42 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:MachinePinMediumShort"
(at 132.08 60.706 0)
(do_not_autoplace yes)
(effects
(font
(size 0.635 0.635)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 132.08 62.23 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 132.08 62.23 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "18e8152a-7059-47f6-8575-3d8035b6aedb")
)
(instances
(project "BMA580"
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MP4")
(unit 1)
)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:MachinePin")
(at 88.9 62.23 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "2868131e-9e19-483b-92e3-8950a7c9d616")
(property "Reference" "MP2"
(at 87.63 60.706 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 88.04 58.42 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:MachinePinMediumShort"
(at 88.9 63.754 0)
(do_not_autoplace yes)
(effects
(font
(size 0.635 0.635)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 88.9 62.23 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 88.9 62.23 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "6b71ac23-3f39-420c-8b30-b11ccbbf09f1")
)
(instances
(project "BMA580"
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MP2")
(unit 1)
)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:Adom_Machine_Contact")
(at 87.63 71.12 0)
(unit 1)
(exclude_from_sim no)
(in_bom no)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "3061af62-efba-4c84-ac78-0ad124b0020e")
(property "Reference" "MC1"
(at 87.63 68.58 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 87.5972 67.31 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:ADOM_MEDIUM_CONTACT"
(at 87.63 71.12 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 87.63 71.12 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 87.63 71.12 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "f6ce840b-438c-4dbf-971c-87879c5a5b59")
)
(instances
(project ""
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MC1")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:LED")
(at 138.43 115.57 180)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "308daf02-9d3a-4d6e-beaa-be2a09e3acee")
(property "Reference" "D1"
(at 140.0175 107.95 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "LED"
(at 140.0175 110.49 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "LED_SMD:LED_0402_1005Metric"
(at 138.43 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 138.43 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Light emitting diode"
(at 138.43 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Sim.Pins" "1=K 2=A"
(at 138.43 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "6fee3fbf-71df-4bf7-8982-1e7e56b71fe8")
)
(pin "2"
(uuid "a737218c-488a-488b-8cef-0f5e35fa006c")
)
(instances
(project ""
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "D1")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:R")
(at 120.65 115.57 90)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "9209e9f4-3e44-47c6-8bda-c441aeacb357")
(property "Reference" "R1"
(at 120.65 109.22 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "5.1k"
(at 120.65 111.76 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric"
(at 120.65 117.348 90)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 120.65 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Resistor"
(at 120.65 115.57 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "2"
(uuid "e9655fef-9a4b-4db5-b073-ced9a13c4787")
)
(pin "1"
(uuid "a01f4457-bea6-4a07-8e4f-35b24d2ca282")
)
(instances
(project ""
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "R1")
(unit 1)
)
)
)
)
(symbol
(lib_id "BMA580:BMA580")
(at 116.84 91.44 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "9dd0de7e-13be-4b68-ac3c-d26b90e0d4ad")
(property "Reference" "AC1"
(at 130.81 83.82 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "BMA580"
(at 130.81 86.36 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "BMA580:BMA580"
(at 140.97 186.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Datasheet" "https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bma580-ds000.pdf"
(at 140.97 286.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Description" "Accelerometer X, Y, Z Axis +/-2g, 4g, 8g, 16g 1.56Hz ~ 6.4kHz 6-WLCSP (1.2x0.8)"
(at 116.84 91.44 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Height" "0.59"
(at 140.97 486.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Mouser Part Number" "262-BMA580"
(at 140.97 586.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Bosch-Sensortec/BMA580?qs=2wMNvWM5ZX7YwZt9g%252Bm1bQ%3D%3D"
(at 140.97 686.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Manufacturer_Name" "BOSCH"
(at 140.97 786.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(property "Manufacturer_Part_Number" "BMA580"
(at 140.97 886.36 0)
(effects
(font
(size 1.27 1.27)
)
(justify left top)
(hide yes)
)
)
(pin "3"
(uuid "a0b17fc4-696c-4705-ae84-114c4c457fb3")
)
(pin "4"
(uuid "967dffd5-6360-415d-8ece-bb015c46f748")
)
(pin "5"
(uuid "f2ebb9bf-694a-4336-885f-538bdcead3f5")
)
(pin "6"
(uuid "9f89b7b8-523a-4873-8d15-b96c7d886ad9")
)
(pin "1"
(uuid "66c138a0-c93e-48fd-af40-fd092ef73e27")
)
(pin "2"
(uuid "ae45aef1-acef-4dd9-8621-dedd007070b8")
)
(instances
(project ""
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "AC1")
(unit 1)
)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:Adom_Machine_Contact")
(at 87.63 87.63 0)
(unit 1)
(exclude_from_sim no)
(in_bom no)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "a180205c-479f-437b-8985-d234f3183a34")
(property "Reference" "MC3"
(at 87.63 85.09 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 87.5972 83.82 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:ADOM_MEDIUM_CONTACT"
(at 87.63 87.63 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 87.63 87.63 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 87.63 87.63 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "b0e4f389-18f7-42ca-be7b-db5b073aee43")
)
(instances
(project "BMA580"
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MC3")
(unit 1)
)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:MachinePin")
(at 88.9 54.61 0)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "aae94b9b-3866-4835-ba1f-02039f21f5bd")
(property "Reference" "MP1"
(at 87.63 53.086 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 88.04 50.8 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:MachinePinMediumShort"
(at 88.9 56.134 0)
(do_not_autoplace yes)
(effects
(font
(size 0.635 0.635)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 88.9 54.61 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 88.9 54.61 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "d32910d1-1bb5-474f-aae2-c6aa84ac25d4")
)
(instances
(project "BMA580"
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MP1")
(unit 1)
)
)
)
)
(symbol
(lib_id "Device:C")
(at 130.81 104.14 270)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(uuid "c549652a-eecb-4a8c-b9d4-8c7dd547dcbb")
(property "Reference" "C1"
(at 130.81 100.584 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "100n"
(at 130.81 108.204 90)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric"
(at 127 105.1052 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" "~"
(at 130.81 104.14 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" "Unpolarized capacitor"
(at 130.81 104.14 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "34e7053e-eb86-43e1-b35b-fedd2d4eb6eb")
)
(pin "2"
(uuid "403bf174-28df-419f-ba21-ad12b0a4557d")
)
(instances
(project ""
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "C1")
(unit 1)
)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:Adom_Machine_Contact")
(at 87.63 80.01 0)
(unit 1)
(exclude_from_sim no)
(in_bom no)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "e0883f1f-7dbe-4c42-b9a9-57cb76058af5")
(property "Reference" "MC2"
(at 87.63 77.47 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 87.5972 76.2 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:ADOM_MEDIUM_CONTACT"
(at 87.63 80.01 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 87.63 80.01 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 87.63 80.01 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "3606bcf2-ce57-4a5f-931c-ef80cae45262")
)
(instances
(project "BMA580"
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MC2")
(unit 1)
)
)
)
)
(symbol
(lib_id "Adom KiCad Symbols:MachinePin")
(at 132.08 54.61 180)
(unit 1)
(exclude_from_sim no)
(in_bom yes)
(on_board yes)
(dnp no)
(fields_autoplaced yes)
(uuid "e89ed461-97a8-49a5-bded-dba58f1cf170")
(property "Reference" "MP3"
(at 133.35 56.134 0)
(do_not_autoplace yes)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Value" "~"
(at 132.94 50.8 0)
(effects
(font
(size 1.27 1.27)
)
)
)
(property "Footprint" "Adom Footprint Library:MachinePinMediumShort"
(at 132.08 53.086 0)
(do_not_autoplace yes)
(effects
(font
(size 0.635 0.635)
)
(hide yes)
)
)
(property "Datasheet" ""
(at 132.08 54.61 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(property "Description" ""
(at 132.08 54.61 0)
(effects
(font
(size 1.27 1.27)
)
(hide yes)
)
)
(pin "1"
(uuid "71ea011c-6c3a-4dec-a491-240bd6b47c20")
)
(instances
(project "BMA580"
(path "/0fa6f46a-4627-4476-aa95-74d4d1d7a515"
(reference "MP3")
(unit 1)
)
)
)
)
(sheet_instances
(path "/"
(page "1")
)
)
(embedded_fonts no)
)