| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "2c9f3f89-493c-4a39-beb8-9360fb49beb4")
- (paper "A4")
- (lib_symbols
- (symbol "Connector_Generic:Conn_02x05_Counter_Clockwise"
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "J"
- (at 1.27 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Conn_02x05_Counter_Clockwise"
- (at 1.27 -7.62 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" "Generic connector, double row, 02x05, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "connector"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Connector*:*_2x??_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "Conn_02x05_Counter_Clockwise_1_1"
- (rectangle
- (start -1.27 -4.953)
- (end 0 -5.207)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -2.413)
- (end 0 -2.667)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 0.127)
- (end 0 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 2.667)
- (end 0 2.413)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 5.207)
- (end 0 4.953)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 6.35)
- (end 3.81 -6.35)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start 3.81 -4.953)
- (end 2.54 -5.207)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 3.81 -2.413)
- (end 2.54 -2.667)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 3.81 0.127)
- (end 2.54 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 3.81 2.667)
- (end 2.54 2.413)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 3.81 5.207)
- (end 2.54 4.953)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 5.08 0)
- (length 3.81)
- (name "Pin_1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 5.08 180)
- (length 3.81)
- (name "Pin_10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 2.54 0)
- (length 3.81)
- (name "Pin_2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 3.81)
- (name "Pin_3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -2.54 0)
- (length 3.81)
- (name "Pin_4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -5.08 0)
- (length 3.81)
- (name "Pin_5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -5.08 180)
- (length 3.81)
- (name "Pin_6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -2.54 180)
- (length 3.81)
- (name "Pin_7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 0 180)
- (length 3.81)
- (name "Pin_8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 2.54 180)
- (length 3.81)
- (name "Pin_9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Device:C"
- (pin_numbers hide)
- (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)
- )
- )
- )
- )
- )
- )
- (symbol "Device:R"
- (pin_numbers hide)
- (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)
- )
- )
- )
- )
- )
- )
- (symbol "MCU_Microchip_ATtiny:ATtiny1604-SS"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U2"
- (at 2.1941 20.32 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "ATtiny1604-SS"
- (at 2.1941 17.78 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/ATtiny804_1604-Data-Sheet-40002028A.pdf"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "20MHz, 16kB Flash, 1kB SRAM, 256B EEPROM, SOIC-14"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "AVR 8bit Microcontroller tinyAVR"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "ATtiny1604-SS_0_1"
- (rectangle
- (start -12.7 -15.24)
- (end 12.7 15.24)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- )
- (symbol "ATtiny1604-SS_1_1"
- (pin power_in line
- (at 0 17.78 270)
- (length 2.54)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -15.24 7.62 0)
- (length 2.54)
- (name "~{RESET}/PA0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 7.62 180)
- (length 2.54)
- (name "PA1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "11"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 5.08 180)
- (length 2.54)
- (name "PA2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 2.54 180)
- (length 2.54)
- (name "PA3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "13"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 0 -17.78 90)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 0 180)
- (length 2.54)
- (name "PA4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 -2.54 180)
- (length 2.54)
- (name "PA5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 -5.08 180)
- (length 2.54)
- (name "PA6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 -7.62 180)
- (length 2.54)
- (name "PA7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -15.24 -2.54 0)
- (length 2.54)
- (name "PB3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -15.24 0 0)
- (length 2.54)
- (name "PB2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -15.24 2.54 0)
- (length 2.54)
- (name "PB1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -15.24 5.08 0)
- (length 2.54)
- (name "PB0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "power:+3V3"
- (power)
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 0 3.556 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" "Power symbol creates a global label with name \"+3V3\""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "+3V3_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+3V3_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "power:GND"
- (power)
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 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" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- )
- (junction
- (at 137.16 44.45)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "029d9cb7-77be-417a-84a5-a09c76019feb")
- )
- (junction
- (at 114.3 81.28)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2ad5ee36-46e1-4ff8-ad43-ca84b79e66d9")
- )
- (junction
- (at 149.86 44.45)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2ceb854c-1a66-42f6-b226-cdeebd3c49cf")
- )
- (wire
- (pts
- (xy 36.83 46.99) (xy 36.83 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "01f9cfb7-8b29-422f-8230-7d4b36388818")
- )
- (wire
- (pts
- (xy 149.86 44.45) (xy 137.16 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0ce9c298-55fa-460d-86bd-dd4e5d352306")
- )
- (wire
- (pts
- (xy 166.37 58.42) (xy 166.37 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "158ee31c-a165-477e-bc23-4f303ed8d4cd")
- )
- (wire
- (pts
- (xy 36.83 59.69) (xy 38.1 59.69)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "20e22674-1eb2-4c59-8e50-16959209ba2b")
- )
- (wire
- (pts
- (xy 53.34 49.53) (xy 50.8 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "21d65d1d-d63d-4410-b627-ce3b2bb30a55")
- )
- (wire
- (pts
- (xy 53.34 52.07) (xy 50.8 52.07)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "23b00cc3-b212-4f47-b043-0a8ae2f07a9b")
- )
- (wire
- (pts
- (xy 149.86 58.42) (xy 149.86 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "29c16c9d-6c55-4edd-a0df-25a0589497f9")
- )
- (wire
- (pts
- (xy 107.95 83.82) (xy 121.92 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2bf99694-9cd8-4e1a-a7e1-73ced7e59150")
- )
- (wire
- (pts
- (xy 114.3 81.28) (xy 121.92 81.28)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "30fe0a29-d3d9-4336-9681-de56f2ef9529")
- )
- (wire
- (pts
- (xy 53.34 54.61) (xy 50.8 54.61)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "369203a7-f938-46b3-b2af-5e4b57cbbfba")
- )
- (wire
- (pts
- (xy 107.95 81.28) (xy 114.3 81.28)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3dff2159-1b37-4b2f-97c5-4a5e3e355339")
- )
- (wire
- (pts
- (xy 36.83 49.53) (xy 38.1 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5c12d9cc-3eab-4059-838d-34925bc315de")
- )
- (wire
- (pts
- (xy 114.3 68.58) (xy 114.3 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "60f2d24f-fe0d-48e2-8999-2b95377ab656")
- )
- (wire
- (pts
- (xy 107.95 91.44) (xy 121.92 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6fcdb853-ce92-41dc-975a-7de90225e1bb")
- )
- (wire
- (pts
- (xy 166.37 44.45) (xy 149.86 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9215c4fe-bddc-4594-b4a5-c90b3a1ca806")
- )
- (wire
- (pts
- (xy 36.83 62.23) (xy 36.83 59.69)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "93f6aa6d-d932-4fa8-8849-820fb290f741")
- )
- (wire
- (pts
- (xy 166.37 48.26) (xy 166.37 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "97888fd9-fba5-427f-8c0b-fecdbccdf2ab")
- )
- (wire
- (pts
- (xy 137.16 44.45) (xy 137.16 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "aa67d98c-3846-4ad4-879d-d2476c6e0100")
- )
- (wire
- (pts
- (xy 149.86 48.26) (xy 149.86 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "aa6a93fa-51c0-48f9-8bba-1dcd325c11f8")
- )
- (wire
- (pts
- (xy 137.16 38.1) (xy 137.16 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b59f9297-1464-4397-8554-1d21a54de066")
- )
- (wire
- (pts
- (xy 107.95 88.9) (xy 121.92 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c120f50e-3155-4899-a093-e922dbd703f2")
- )
- (wire
- (pts
- (xy 107.95 86.36) (xy 121.92 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c665cfcc-b960-46ed-91b1-aaa305fea723")
- )
- (wire
- (pts
- (xy 53.34 59.69) (xy 50.8 59.69)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c9be49f6-be91-4ad3-b362-433c9fb3ed82")
- )
- (wire
- (pts
- (xy 53.34 57.15) (xy 50.8 57.15)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e87758de-d60b-40d8-b927-e391aae91518")
- )
- (wire
- (pts
- (xy 114.3 81.28) (xy 114.3 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f77ee0bf-49b0-4579-a7f0-51e36c1f05c2")
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 107.95 86.36 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "248d1e04-618d-41dc-8439-a6195ca4e3bd")
- (property "Netclass" "SDA"
- (at 100.076 86.36 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify left)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 53.34 54.61 270)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "555de3fd-daf5-4959-9d7d-8fcd3a8b6450")
- (property "Netclass" "SDA"
- (at 61.214 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify right)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 53.34 49.53 270)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "5d2c4d29-839c-47ed-ac3b-8567957d756c")
- (property "Netclass" "AVR_RX"
- (at 64.516 49.53 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify right)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 53.34 59.69 270)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "64d8790f-6c22-4b9d-b02f-458518aff03c")
- (property "Netclass" "UPDI"
- (at 62.23 59.69 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify right)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 53.34 57.15 270)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "79353aa6-b58b-4e6b-8e6f-3f1842f7133d")
- (property "Netclass" "SCL"
- (at 61.214 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify right)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 107.95 91.44 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "7e457c05-a684-433c-b78c-4c0fad5e4692")
- (property "Netclass" "AVR_RX"
- (at 97.028 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify left)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 107.95 88.9 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "7f961a83-0edb-4d06-af02-bd01483d949d")
- (property "Netclass" "AVR_TX"
- (at 97.282 88.9 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify left)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 107.95 81.28 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "9deca6ed-c74b-441c-b5af-8e44b17c3dcc")
- (property "Netclass" "UPDI"
- (at 99.06 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify left)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 107.95 83.82 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "b4cdfad7-d9a8-4d26-962f-76c6d4b4c1bb")
- (property "Netclass" "SCL"
- (at 100.076 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify left)
- )
- )
- )
- (netclass_flag ""
- (length 2.54)
- (shape round)
- (at 53.34 52.07 270)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "cdd4baf1-111e-4555-8a53-83666aa87f14")
- (property "Netclass" "AVR_TX"
- (at 64.008 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify right)
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 114.3 68.58 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "2f7c43e2-1166-4219-b8fb-9aa430364fcb")
- (property "Reference" "#PWR022"
- (at 114.3 72.39 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 114.3 63.5 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 114.3 68.58 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 114.3 68.58 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 114.3 68.58 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "224791fc-2b5c-4597-9b9c-504a0898b533")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR022")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 137.16 38.1 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "3c6bdc3b-6f32-498f-8d6c-02716357aff4")
- (property "Reference" "#PWR016"
- (at 137.16 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 137.16 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 137.16 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 137.16 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 137.16 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "47027203-e95e-4a81-bbdf-f13e8f89b046")
- )
- (instances
- (project ""
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR016")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 36.83 62.23 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "48152678-b1a2-408f-b9f2-34bed3cccef4")
- (property "Reference" "#PWR021"
- (at 36.83 68.58 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 36.83 67.31 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 36.83 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 36.83 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 36.83 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "3f4e6845-7c30-46ef-8cc4-6bc777f5203e")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR021")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 149.86 52.07 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "79111e7a-b4b7-4e1c-a7fb-21462a87d80f")
- (property "Reference" "C9"
- (at 153.67 50.7999 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 153.67 53.3399 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 150.8252 55.88 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 149.86 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 149.86 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "11f2b6d6-b267-4a3c-8f79-df683c605045")
- )
- (pin "2"
- (uuid "fe8ffc64-d425-4be5-95e8-a305f37cade8")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "C9")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 166.37 52.07 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "829abb71-c513-49d5-a432-887c08fddd19")
- (property "Reference" "C8"
- (at 170.18 50.7999 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 170.18 53.3399 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 167.3352 55.88 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 166.37 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 166.37 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "cfbf4ae0-d2b8-4682-a9e5-293bca47b5e5")
- )
- (pin "2"
- (uuid "e187ee1a-f523-4c22-9f78-b39539983a32")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "C8")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 137.16 106.68 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "8c0ac8d3-9786-40a7-89cb-0c21486e3f5f")
- (property "Reference" "#PWR019"
- (at 137.16 113.03 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 137.16 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 137.16 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 137.16 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 137.16 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "d3c88cd3-0640-488e-b248-22bad3b39dfc")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR019")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 149.86 58.42 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "b7a89036-f0e8-41e7-bd58-2800bd26676c")
- (property "Reference" "#PWR018"
- (at 149.86 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 149.86 63.5 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 149.86 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 149.86 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 149.86 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "b8ef6304-3ee4-4119-b022-506cf46c0122")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR018")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "MCU_Microchip_ATtiny:ATtiny1604-SS")
- (at 137.16 88.9 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "cd10ff7a-143b-4285-a54d-5501a9d95c80")
- (property "Reference" "U2"
- (at 139.3541 68.58 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "ATtiny1604-SS"
- (at 139.3541 71.12 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm"
- (at 137.16 88.9 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/ATtiny804_1604-Data-Sheet-40002028A.pdf"
- (at 137.16 88.9 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "20MHz, 16kB Flash, 1kB SRAM, 256B EEPROM, SOIC-14"
- (at 137.16 88.9 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "f38c4756-90fa-48d8-89a1-c4f25f47f2bc")
- )
- (pin "3"
- (uuid "ac87a59e-6c5b-4fa6-a5de-8616c33a7773")
- )
- (pin "11"
- (uuid "173e17ea-aef9-47fc-a27c-7c5d44fe42ac")
- )
- (pin "1"
- (uuid "45e2ee2d-ac67-44bf-ad60-08afc59b9f35")
- )
- (pin "7"
- (uuid "cde3f80e-6cc8-48f4-b28f-106ec44e7a96")
- )
- (pin "8"
- (uuid "d4bf547f-f3fc-454a-9712-c50232b71d2c")
- )
- (pin "6"
- (uuid "e9f7e24f-a354-4eac-b0ea-286c257181a3")
- )
- (pin "5"
- (uuid "1e2a2558-6939-468a-a9ff-ef06a36b9882")
- )
- (pin "4"
- (uuid "fae9bdd9-c75c-4e42-b436-20817bf83a3b")
- )
- (pin "9"
- (uuid "805b25b0-64a7-44db-82a9-285ace85ac9b")
- )
- (pin "14"
- (uuid "1c86d7f4-c0dc-44b2-bde9-264be0fd23f5")
- )
- (pin "12"
- (uuid "fd0bbcf1-5051-4bdb-b296-72c97867430d")
- )
- (pin "10"
- (uuid "1fa98764-4266-44bf-8492-c5ea2490f1b4")
- )
- (pin "13"
- (uuid "b1a65123-7021-495a-b1a6-37c28ea00729")
- )
- (instances
- (project ""
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "U2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 166.37 58.42 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "d1c4d6e5-eaa0-4afe-8763-642b88b5cc4f")
- (property "Reference" "#PWR017"
- (at 166.37 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 166.37 63.5 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 166.37 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 166.37 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 166.37 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "fe84dd86-fc21-4d58-9b91-d8f3b1fe1840")
- )
- (instances
- (project ""
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR017")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 114.3 74.93 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "d76dfcd7-3f1d-4bbd-aacf-be954c3ef9a2")
- (property "Reference" "R1"
- (at 116.84 73.6599 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10k"
- (at 116.84 76.1999 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_0815_2038Metric_Pad1.20x4.05mm_HandSolder"
- (at 112.522 74.93 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 114.3 74.93 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 114.3 74.93 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "49449916-af12-4f07-bded-400025fe6fd2")
- )
- (pin "2"
- (uuid "22b66868-bcdb-4f96-9514-b796016187ae")
- )
- (instances
- (project ""
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "R1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Generic:Conn_02x05_Counter_Clockwise")
- (at 45.72 54.61 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "dbe9f302-5091-4c0c-bf91-9c8d2bcf927f")
- (property "Reference" "J2"
- (at 44.45 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "DEBUG"
- (at 44.45 45.72 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical"
- (at 45.72 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 45.72 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Generic connector, double row, 02x05, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 45.72 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "10"
- (uuid "1146dec1-b2ee-4c43-aceb-4c5d2f703d77")
- )
- (pin "1"
- (uuid "826a6c8a-185b-4d5c-a95f-24afc2dde7d1")
- )
- (pin "2"
- (uuid "478b97a5-951a-4328-8a17-bd1795a8523b")
- )
- (pin "9"
- (uuid "98726b94-9698-47ff-abd1-fbac7bb1f815")
- )
- (pin "5"
- (uuid "858a1717-9181-4f25-9593-f5672479e6bf")
- )
- (pin "4"
- (uuid "9c2a4099-9c63-456e-b06d-7089a455bf06")
- )
- (pin "3"
- (uuid "98189503-9224-4747-92be-10906f3d0554")
- )
- (pin "7"
- (uuid "412611cd-b63a-4be8-bd1b-40dc9cb0501e")
- )
- (pin "6"
- (uuid "d6755e15-edc6-4d75-bc76-8d3fca0e1688")
- )
- (pin "8"
- (uuid "43e90d01-3d41-4f8c-b97f-050b4760a7da")
- )
- (instances
- (project ""
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "J2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 36.83 46.99 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "f3dc6995-d8cb-45df-90e3-8920d73339ef")
- (property "Reference" "#PWR020"
- (at 36.83 50.8 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 36.83 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 36.83 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 36.83 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 36.83 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "7c58cb7f-7f3e-4247-adf8-bd8a7596514e")
- )
- (instances
- (project "cx-light-strip"
- (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
- (reference "#PWR020")
- (unit 1)
- )
- )
- )
- )
- )
|