commit a9e4daeaf941f06beaecfb7bc91d26e8de3b0485 Author: Kyle Brown Date: Sun Sep 3 16:38:09 2023 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d5a555 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# ---> KiCad +# For PCBs designed using KiCad: http://www.kicad-pcb.org/ +# Format documentation: http://kicad-pcb.org/help/file-formats/ + +# Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.sch-bak +*~ +_autosave-* +*.tmp +*-save.pro +*-save.kicad_pcb +fp-info-cache +*.lck +*auto_save* + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +*.dsn +*.ses + +# Exported BOM files +*.xml +*.csv + +# moreKicad cruft +*-backups +*-cache +*-bak +jlcpcb + +# Mac cruft +.DS_Store + +# Editor files +*.swp diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a343ccd --- /dev/null +++ b/LICENSE @@ -0,0 +1,119 @@ +Creative Commons Legal Code + +CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES +NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE +AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION +ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE +OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS +LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION +OR WORKS PROVIDED HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer exclusive +Copyright and Related Rights (defined below) upon the creator and subsequent +owner(s) (each and all, an "owner") of an original work of authorship and/or +a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for the +purpose of contributing to a commons of creative, cultural and scientific +works ("Commons") that the public can reliably and without fear of later claims +of infringement build upon, modify, incorporate in other works, reuse and +redistribute as freely as possible in any form whatsoever and for any purposes, +including without limitation commercial purposes. These owners may contribute +to the Commons to promote the ideal of a free culture and the further production +of creative, cultural and scientific works, or to gain reputation or greater +distribution for their Work in part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any expectation +of additional consideration or compensation, the person associating CC0 with +a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright +and Related Rights in the Work, voluntarily elects to apply CC0 to the Work +and publicly distribute the Work under its terms, with knowledge of his or +her Copyright and Related Rights in the Work and the meaning and intended +legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be protected +by copyright and related or neighboring rights ("Copyright and Related Rights"). +Copyright and Related Rights include, but are not limited to, the following: + +i. the right to reproduce, adapt, distribute, perform, display, communicate, +and translate a Work; + + ii. moral rights retained by the original author(s) and/or performer(s); + +iii. publicity and privacy rights pertaining to a person's image or likeness +depicted in a Work; + +iv. rights protecting against unfair competition in regards to a Work, subject +to the limitations in paragraph 4(a), below; + +v. rights protecting the extraction, dissemination, use and reuse of data +in a Work; + +vi. database rights (such as those arising under Directive 96/9/EC of the +European Parliament and of the Council of 11 March 1996 on the legal protection +of databases, and under any national implementation thereof, including any +amended or successor version of such directive); and + +vii. other similar, equivalent or corresponding rights throughout the world +based on applicable law or treaty, and any national implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention of, +applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and +unconditionally waives, abandons, and surrenders all of Affirmer's Copyright +and Related Rights and associated claims and causes of action, whether now +known or unknown (including existing as well as future claims and causes of +action), in the Work (i) in all territories worldwide, (ii) for the maximum +duration provided by applicable law or treaty (including future time extensions), +(iii) in any current or future medium and for any number of copies, and (iv) +for any purpose whatsoever, including without limitation commercial, advertising +or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the +benefit of each member of the public at large and to the detriment of Affirmer's +heirs and successors, fully intending that such Waiver shall not be subject +to revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason be +judged legally invalid or ineffective under applicable law, then the Waiver +shall be preserved to the maximum extent permitted taking into account Affirmer's +express Statement of Purpose. In addition, to the extent the Waiver is so +judged Affirmer hereby grants to each affected person a royalty-free, non +transferable, non sublicensable, non exclusive, irrevocable and unconditional +license to exercise Affirmer's Copyright and Related Rights in the Work (i) +in all territories worldwide, (ii) for the maximum duration provided by applicable +law or treaty (including future time extensions), (iii) in any current or +future medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional purposes +(the "License"). The License shall be deemed effective as of the date CC0 +was applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder of +the License, and in such case Affirmer hereby affirms that he or she will +not (i) exercise any of his or her remaining Copyright and Related Rights +in the Work or (ii) assert any associated claims and causes of action with +respect to the Work, in either case contrary to Affirmer's express Statement +of Purpose. + + 4. Limitations and Disclaimers. + +a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, +licensed or otherwise affected by this document. + +b. Affirmer offers the Work as-is and makes no representations or warranties +of any kind concerning the Work, express, implied, statutory or otherwise, +including without limitation warranties of title, merchantability, fitness +for a particular purpose, non infringement, or the absence of latent or other +defects, accuracy, or the present or absence of errors, whether or not discoverable, +all to the greatest extent permissible under applicable law. + +c. Affirmer disclaims responsibility for clearing rights of other persons +that may apply to the Work or any use thereof, including without limitation +any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims +responsibility for obtaining any necessary consents, permissions or other +rights required for any use of the Work. + +d. Affirmer understands and acknowledges that Creative Commons is not a party +to this document and has no duty or obligation with respect to this CC0 or +use of the Work. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1ce8cfe --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# RGBee + +RGBee is designed for those that can't get enough RGB from their printers. +There's 8 outputs giving you more than you probably want, and if you want +more, then simply add another RGBee to your system for whatever insanity +your brain desires. + +Uses standard JST-XH connectors for RGB strips, and a simple terminal block +for 5v/3.3v input depending on which RGB type you use. Powered by a +[RP2040-Zero](https://www.waveshare.com/rp2040-zero.htm), keeping these cheap +to build, and easy to work in Klipper or other projects! It even has an onboard +RGB LED for more fun. + + +![Board](images/rev0.png) + +# Config + +Config can be found at rgbee.cfg as an example config and contains information +for how to flash it for klipper. diff --git a/RGBee.kicad_pcb b/RGBee.kicad_pcb new file mode 100644 index 0000000..40c02d4 --- /dev/null +++ b/RGBee.kicad_pcb @@ -0,0 +1,1297 @@ +(kicad_pcb (version 20221018) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + (net 1 "+5V") + (net 2 "GND") + (net 3 "unconnected-(U1-8-Pad9)") + (net 4 "unconnected-(U1-9-Pad10)") + (net 5 "unconnected-(U1-10-Pad11)") + (net 6 "unconnected-(U1-11-Pad12)") + (net 7 "unconnected-(U1-12-Pad13)") + (net 8 "unconnected-(U1-13-Pad14)") + (net 9 "unconnected-(U1-14-Pad15)") + (net 10 "unconnected-(U1-15-Pad16)") + (net 11 "unconnected-(U1-26-Pad17)") + (net 12 "unconnected-(U1-27-Pad18)") + (net 13 "unconnected-(U1-28-Pad19)") + (net 14 "unconnected-(U1-29-Pad20)") + (net 15 "unconnected-(U1-3V3-Pad21)") + (net 16 "unconnected-(U1-GND-Pad22)") + (net 17 "unconnected-(U1-5V-Pad23)") + (net 18 "/RGB0") + (net 19 "/RGB1") + (net 20 "/RGB2") + (net 21 "/RGB3") + (net 22 "/RGB4") + (net 23 "/RGB5") + (net 24 "/RGB6") + (net 25 "/RGB7") + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 0009f689-3020-41bd-b43b-c86fd4f51bc5) + (at 51.5 37.64) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/56dc5b86-d38e-478a-9b25-aa6d85736df2") + (attr through_hole) + (fp_text reference "D1" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d35c3413-b247-440c-8c2a-df7f82f4d610) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d6ef3e9b-da22-4baa-9238-e99d498eff93) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 03ae8d3f-2a8d-4f28-b723-54f212af7cd2) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d14c222-f976-4d9e-8dd3-ed42350fa493)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff82e7d3-f08c-4a48-af5c-834c3d7f4d1a)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce979f0c-d688-488c-9f15-56b247a474c2)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab0a7d4a-7f69-4143-8e1a-bddfc81757a8)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170c680c-45d6-4dfb-bce0-f6ed7be28ade)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d05bf55-5b3f-4ba0-a5c9-514a3eb1da33)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1360b337-769d-4ba6-baad-0fd203f06cac)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d83fe7-06a5-412e-879b-a0cb63f4964e)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d73860bd-6717-40bf-b1ea-9b05ca06c6b9)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec7412a4-0bd7-4066-8650-84e7f48a2f89)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c94b18b9-e5ea-470a-8a8e-ed01830a4430)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64ebb365-b4b3-4fae-ae69-f797d6a232cc)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 497845bf-e330-470a-8a41-8bd215780923)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97f3e2ab-7818-4757-8557-dbb225b264d1)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecea62cf-3567-4e9b-859b-8494aa645e0a)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b6cedce-f39a-456d-98ac-758be1537c87)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0463a607-4c21-4f97-a9d6-5ce7f677b1fa)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7caad79f-ca8c-4e22-a7d9-f771eed8d27a)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a8fb1c8-23ec-4d22-b301-cd5e0ace8db3)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19bba913-2b7c-45a6-9f67-1cba7e2eb972)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65f84fd7-2499-4f97-b2e7-8bc13d5c262c)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd1fb75e-f4f3-4279-94a9-8adb48821916)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6caea84e-65b0-4204-b34c-d8c7e7409007)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74ae8399-bb2f-4794-afa2-6361adab74b9)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f9e9575-f44d-4482-84f4-09dbc505e1b0)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 233f6010-43d9-4554-9a4f-09e61c9775b2)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b188e0b-7cf8-43c2-87dc-38c31480aee0)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4934472-843c-47bf-859c-b7fea8e0ac69)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73842042-db26-4713-bd8f-2b64be00caec)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c90802ac-ffae-4954-abb5-678860ea4aff)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2888e3f-f779-4fcb-aef9-3ebfe264eb12)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7752958f-3d3e-461b-8733-8457dcddc93f)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9af7a3ad-b2cd-47b4-b2f5-26fa3242210a)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 949f0e97-1853-41f3-90c0-73ec51fe5039)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 18 "/RGB0") (pinfunction "DIN") (pintype "input") (tstamp 7e309328-d0f4-48b1-9a68-b2da232b0b1c)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp 0b232e22-d721-46aa-beda-d7ebaad5752a)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5bf28fb1-5389-4961-9842-2f47f651d4ad)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 1aa0c95b-d8a6-4941-b55f-d0fd49d8aade) + (at 63.2 54.24) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/8667c04a-e9fe-4bb3-ba48-b32f70fd81c2") + (attr through_hole) + (fp_text reference "D6" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e7e0a674-a7ba-432e-9b7a-a771ce002a35) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 259bd3db-ee2a-4f5b-93b1-ec8584bdccd9) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 05ff37a9-ac70-48b5-813b-0fa71346d2c1) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a7cd66b-420d-4989-8196-771f9d831753)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93ebd79d-192b-454c-90e1-912626aee902)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaf72422-6eae-400e-9667-c704c9667927)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02ca3be6-1c87-48be-ae32-73ded0fb84a2)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7513e221-ab32-4732-8f79-b431c33906cf)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4ba4780-a3c6-47ae-a975-ffd6154f210e)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82236e15-a8c4-478b-a1d1-b0e8cb4695be)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b739fa28-9630-40ec-9f70-0c7c44c1785a)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a760668-3c7d-4880-b04d-062e955d0768)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bd2fbc9-cb5b-420e-864a-fde11197ab58)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fa1a72b-b04d-4781-a239-732da7f05ccc)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae270f38-374b-43b4-b7f0-2c568d91d523)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e301f3c6-dd8c-41f6-9ad0-965beecbae47)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbed9153-35c9-46f6-a55e-2614822decfe)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d15a8f-f690-4774-bae4-2a545b16626c)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf15f87b-b1ed-4882-814d-30eae1ecb5b3)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 440cc179-cf85-4cd1-889c-9e039e2ddd55)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7c7a77d-c0ae-483b-a065-0ed860e2be39)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 768a314b-a430-43ec-9876-8eae5bad589b)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67492a62-16c7-49ac-983f-97efa9acc51f)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1eec456a-c369-44be-82bc-0c9a7bde1507)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f069ea-8dcd-4016-9a6d-8ae43b8a2e14)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38932507-2aa8-4cff-ac48-a358383d79b3)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55e5ae1c-6a08-4053-a354-b118da9b490e)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36008c5b-2726-49a4-a16c-97524ab2d2c3)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92701486-b2f2-434e-af4f-7bcc51997dd4)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d5269b-7ac1-4822-9185-95b4eca64fc7)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9a590c5-703a-4cb3-bdae-a3648c4e0c6a)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08115969-01d0-4dcd-bac2-065ec0b508a3)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f174a8b1-1e32-469b-8d47-315b34092841)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28fd8fe7-96fe-47a1-88b2-502a86e2b783)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7e1b502-ba63-4b71-a841-505587aa7562)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49b9452a-599a-47f8-8c9c-0409e41f36aa)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8997d9e9-0d50-4f59-ab47-d95323632851)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 23 "/RGB5") (pinfunction "DIN") (pintype "input") (tstamp 8ddd5a1d-6ff5-4f48-ac9f-866a38240f44)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp ac085d58-8a47-4915-8605-055a07aca075)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1d5e92bb-6767-434a-a9bd-588c58dc3b66)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 2406b0f0-8417-447b-8a40-dff26e5e1823) + (at 51.5 54.24) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/b75f5914-b257-4b61-a5da-8f99757aa504") + (attr through_hole) + (fp_text reference "D5" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d35c3413-b247-440c-8c2a-df7f82f4d610) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d6ef3e9b-da22-4baa-9238-e99d498eff93) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 03ae8d3f-2a8d-4f28-b723-54f212af7cd2) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d14c222-f976-4d9e-8dd3-ed42350fa493)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff82e7d3-f08c-4a48-af5c-834c3d7f4d1a)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce979f0c-d688-488c-9f15-56b247a474c2)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab0a7d4a-7f69-4143-8e1a-bddfc81757a8)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170c680c-45d6-4dfb-bce0-f6ed7be28ade)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d05bf55-5b3f-4ba0-a5c9-514a3eb1da33)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1360b337-769d-4ba6-baad-0fd203f06cac)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d83fe7-06a5-412e-879b-a0cb63f4964e)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d73860bd-6717-40bf-b1ea-9b05ca06c6b9)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec7412a4-0bd7-4066-8650-84e7f48a2f89)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c94b18b9-e5ea-470a-8a8e-ed01830a4430)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64ebb365-b4b3-4fae-ae69-f797d6a232cc)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 497845bf-e330-470a-8a41-8bd215780923)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97f3e2ab-7818-4757-8557-dbb225b264d1)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecea62cf-3567-4e9b-859b-8494aa645e0a)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b6cedce-f39a-456d-98ac-758be1537c87)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0463a607-4c21-4f97-a9d6-5ce7f677b1fa)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7caad79f-ca8c-4e22-a7d9-f771eed8d27a)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a8fb1c8-23ec-4d22-b301-cd5e0ace8db3)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19bba913-2b7c-45a6-9f67-1cba7e2eb972)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65f84fd7-2499-4f97-b2e7-8bc13d5c262c)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd1fb75e-f4f3-4279-94a9-8adb48821916)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6caea84e-65b0-4204-b34c-d8c7e7409007)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74ae8399-bb2f-4794-afa2-6361adab74b9)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f9e9575-f44d-4482-84f4-09dbc505e1b0)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 233f6010-43d9-4554-9a4f-09e61c9775b2)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b188e0b-7cf8-43c2-87dc-38c31480aee0)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4934472-843c-47bf-859c-b7fea8e0ac69)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73842042-db26-4713-bd8f-2b64be00caec)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c90802ac-ffae-4954-abb5-678860ea4aff)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2888e3f-f779-4fcb-aef9-3ebfe264eb12)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7752958f-3d3e-461b-8733-8457dcddc93f)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9af7a3ad-b2cd-47b4-b2f5-26fa3242210a)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 949f0e97-1853-41f3-90c0-73ec51fe5039)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 22 "/RGB4") (pinfunction "DIN") (pintype "input") (tstamp 7e309328-d0f4-48b1-9a68-b2da232b0b1c)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp 0b232e22-d721-46aa-beda-d7ebaad5752a)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5bf28fb1-5389-4961-9842-2f47f651d4ad)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "mcu:rp2040-zero-tht" (layer "F.Cu") + (tstamp 4672e76e-0029-49ca-b8e0-bf56876481a3) + (at 35.98 45.02) + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (path "/14478aca-d8c3-4d23-a805-0aa3ce13281e") + (attr through_hole) + (fp_text reference "U1" (at -16.3989 -16.53268) (layer "F.SilkS") hide + (effects (font (size 0.889 0.889) (thickness 0.1016))) + (tstamp bf615590-2d08-46dc-a035-d580071392a2) + ) + (fp_text value "rp2040-zero" (at -16.8434 -5.54718) (layer "F.SilkS") hide + (effects (font (size 0.6096 0.6096) (thickness 0.0762))) + (tstamp e1388648-117e-45a7-aec0-088045517146) + ) + (fp_rect (start -9 -11.75) (end 9 11.75) + (stroke (width 0.12) (type solid)) (fill none) (layer "Dwgs.User") (tstamp de40423a-e383-4ed6-bf95-60142e0b1c23)) + (fp_line (start -6 -11.75) (end -6 9.25) + (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 9b1d63b0-d6dd-418e-b902-1e37a31d2ca6)) + (fp_line (start -6 9.25) (end 6 9.25) + (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 05431fb2-72be-4e9f-9b67-530471de484b)) + (fp_line (start 6 9.25) (end 6 -11.75) + (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp bfaf63f0-c5d7-4e72-a00c-289b0a6435c1)) + (pad "1" thru_hole oval (at 7.62 -10.16 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 18 "/RGB0") (pinfunction "0") (pintype "bidirectional") (tstamp 815c39bb-ccde-4dd8-91e9-70c162bd5d2c)) + (pad "2" thru_hole oval (at 7.62 -7.62 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 19 "/RGB1") (pinfunction "1") (pintype "bidirectional") (tstamp fd827422-15d0-4d73-8a52-2a404eb2a5e8)) + (pad "3" thru_hole oval (at 7.62 -5.08 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 20 "/RGB2") (pinfunction "2") (pintype "bidirectional") (tstamp b8bf1661-9159-4d75-841e-28409f7395d2)) + (pad "4" thru_hole oval (at 7.62 -2.54 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 21 "/RGB3") (pinfunction "3") (pintype "bidirectional") (tstamp 030c84c8-1bc9-4a26-a515-a0acd9134af5)) + (pad "5" thru_hole oval (at 7.62 0 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 22 "/RGB4") (pinfunction "4") (pintype "bidirectional") (tstamp 8b37a55c-ef58-41df-9780-49c5254c6211)) + (pad "6" thru_hole oval (at 7.62 2.54 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 23 "/RGB5") (pinfunction "5") (pintype "bidirectional") (tstamp 19528cd9-8b34-41fc-ab3c-757e18a22cc5)) + (pad "7" thru_hole oval (at 7.62 5.08 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 24 "/RGB6") (pinfunction "6") (pintype "bidirectional") (tstamp c08689dc-80f7-491f-a9c0-f2c8b3f84b38)) + (pad "8" thru_hole oval (at 7.62 7.62 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 25 "/RGB7") (pinfunction "7") (pintype "bidirectional") (tstamp c541bdc1-d1a7-42b0-82da-8553da213223)) + (pad "9" thru_hole oval (at 7.62 10.16 180) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 3 "unconnected-(U1-8-Pad9)") (pinfunction "8") (pintype "bidirectional+no_connect") (tstamp 36a7f238-a7ac-42db-9428-282ab30b0a3c)) + (pad "10" thru_hole oval (at 5.08 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 4 "unconnected-(U1-9-Pad10)") (pinfunction "9") (pintype "bidirectional+no_connect") (tstamp f6407267-d3c7-41a7-b018-21e31d1ad7ec)) + (pad "11" thru_hole oval (at 2.54 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 5 "unconnected-(U1-10-Pad11)") (pinfunction "10") (pintype "bidirectional+no_connect") (tstamp e7fd686b-a6d9-4067-8538-bc6f57f2d314)) + (pad "12" thru_hole oval (at 0 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 6 "unconnected-(U1-11-Pad12)") (pinfunction "11") (pintype "bidirectional+no_connect") (tstamp 4e6c1b59-23d1-4b65-b359-e51c59160242)) + (pad "13" thru_hole oval (at -2.54 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 7 "unconnected-(U1-12-Pad13)") (pinfunction "12") (pintype "bidirectional+no_connect") (tstamp 2e0b15da-57bd-435b-b242-5549de8068b8)) + (pad "14" thru_hole oval (at -5.08 10.16 90) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 8 "unconnected-(U1-13-Pad14)") (pinfunction "13") (pintype "bidirectional+no_connect") (tstamp 520be6cd-e1d1-4d2d-8bbf-d6d758f4adcf)) + (pad "15" thru_hole oval (at -7.62 10.16) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 9 "unconnected-(U1-14-Pad15)") (pinfunction "14") (pintype "bidirectional+no_connect") (tstamp 543c905b-e534-4c18-bbfd-d5ff15209ba5)) + (pad "16" thru_hole oval (at -7.62 7.62) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 10 "unconnected-(U1-15-Pad16)") (pinfunction "15") (pintype "bidirectional+no_connect") (tstamp 26dc8895-d5f9-4964-a61e-bd0158eadf16)) + (pad "17" thru_hole oval (at -7.62 5.08) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 11 "unconnected-(U1-26-Pad17)") (pinfunction "26") (pintype "bidirectional+no_connect") (tstamp 64aa80a5-c82f-477d-83f3-281d26b1ed11)) + (pad "18" thru_hole oval (at -7.62 2.54) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 12 "unconnected-(U1-27-Pad18)") (pinfunction "27") (pintype "bidirectional+no_connect") (tstamp a4724df5-5519-4752-954e-1f418b1ff0a9)) + (pad "19" thru_hole oval (at -7.62 0) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 13 "unconnected-(U1-28-Pad19)") (pinfunction "28") (pintype "bidirectional+no_connect") (tstamp 3f5ae270-e13f-4e32-99f8-346a413f0c6f)) + (pad "20" thru_hole oval (at -7.62 -2.54) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 14 "unconnected-(U1-29-Pad20)") (pinfunction "29") (pintype "bidirectional+no_connect") (tstamp 70dcff8e-fc00-4f58-88b4-8c3794415b3b)) + (pad "21" thru_hole oval (at -7.62 -5.08) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 15 "unconnected-(U1-3V3-Pad21)") (pinfunction "3V3") (pintype "power_out+no_connect") (tstamp da03501a-5a36-49ab-8770-1958f69bafc4)) + (pad "22" thru_hole oval (at -7.62 -7.62) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 16 "unconnected-(U1-GND-Pad22)") (pinfunction "GND") (pintype "power_out+no_connect") (tstamp 3f5824bd-38d0-4724-908e-1aadca514879)) + (pad "23" thru_hole oval (at -7.62 -10.16) (size 2.5 1.5) (drill 1 (offset -0.5 0)) (layers "*.Cu" "*.Mask") + (net 17 "unconnected-(U1-5V-Pad23)") (pinfunction "5V") (pintype "power_out+no_connect") (tstamp 36f39037-26f7-4947-b953-e1f6a5d8b377)) + (model "/Users/kdb424/kicad/kleeb/models/rp2040-zero.step" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 47a62fa0-b6f9-457c-9700-678d9a18261d) + (at 63.2 62.64) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/352c4c65-fbf8-4203-87be-7c9ea9eacb36") + (attr through_hole) + (fp_text reference "D8" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e7e0a674-a7ba-432e-9b7a-a771ce002a35) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 259bd3db-ee2a-4f5b-93b1-ec8584bdccd9) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 05ff37a9-ac70-48b5-813b-0fa71346d2c1) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a7cd66b-420d-4989-8196-771f9d831753)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93ebd79d-192b-454c-90e1-912626aee902)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaf72422-6eae-400e-9667-c704c9667927)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02ca3be6-1c87-48be-ae32-73ded0fb84a2)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7513e221-ab32-4732-8f79-b431c33906cf)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4ba4780-a3c6-47ae-a975-ffd6154f210e)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82236e15-a8c4-478b-a1d1-b0e8cb4695be)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b739fa28-9630-40ec-9f70-0c7c44c1785a)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a760668-3c7d-4880-b04d-062e955d0768)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bd2fbc9-cb5b-420e-864a-fde11197ab58)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fa1a72b-b04d-4781-a239-732da7f05ccc)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae270f38-374b-43b4-b7f0-2c568d91d523)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e301f3c6-dd8c-41f6-9ad0-965beecbae47)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbed9153-35c9-46f6-a55e-2614822decfe)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d15a8f-f690-4774-bae4-2a545b16626c)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf15f87b-b1ed-4882-814d-30eae1ecb5b3)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 440cc179-cf85-4cd1-889c-9e039e2ddd55)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7c7a77d-c0ae-483b-a065-0ed860e2be39)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 768a314b-a430-43ec-9876-8eae5bad589b)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67492a62-16c7-49ac-983f-97efa9acc51f)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1eec456a-c369-44be-82bc-0c9a7bde1507)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f069ea-8dcd-4016-9a6d-8ae43b8a2e14)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38932507-2aa8-4cff-ac48-a358383d79b3)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55e5ae1c-6a08-4053-a354-b118da9b490e)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36008c5b-2726-49a4-a16c-97524ab2d2c3)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92701486-b2f2-434e-af4f-7bcc51997dd4)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d5269b-7ac1-4822-9185-95b4eca64fc7)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9a590c5-703a-4cb3-bdae-a3648c4e0c6a)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08115969-01d0-4dcd-bac2-065ec0b508a3)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f174a8b1-1e32-469b-8d47-315b34092841)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28fd8fe7-96fe-47a1-88b2-502a86e2b783)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7e1b502-ba63-4b71-a841-505587aa7562)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49b9452a-599a-47f8-8c9c-0409e41f36aa)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8997d9e9-0d50-4f59-ab47-d95323632851)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 25 "/RGB7") (pinfunction "DIN") (pintype "input") (tstamp 8ddd5a1d-6ff5-4f48-ac9f-866a38240f44)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp ac085d58-8a47-4915-8605-055a07aca075)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1d5e92bb-6767-434a-a9bd-588c58dc3b66)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu") + (tstamp 6594dcac-0a49-4e38-baa6-385fd66b078d) + (at 21.6 38.8) + (descr "Mounting Hole 3.2mm, M3, DIN965") + (tags "mounting hole 3.2mm m3 din965") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Mounting Hole without connection") + (property "ki_keywords" "mounting hole") + (path "/ca23ec45-1a4b-41ff-aa7d-efa95a1ca682") + (attr exclude_from_pos_files) + (fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f8f3ee32-dae2-47ff-b5b7-63efbf0d63fb) + ) + (fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d0ff2baf-7090-46a6-92d4-bc2c54387d5b) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 32c6048f-86bc-47a0-8192-6695d841bee9) + ) + (fp_circle (center 0 0) (end 2.8 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp b4b8ec71-4733-4640-9753-ecbe6fccb79a)) + (fp_circle (center 0 0) (end 3.05 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0bd31a93-5fb3-42cf-86dc-ef5df4fa53e8)) + (pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 27578ee3-904e-413f-855f-24172aec85ab)) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 81f07986-7b78-4055-8520-6b398c48003f) + (at 51.5 62.64) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/4df4cc06-8407-47ea-86a4-9d90f4e30637") + (attr through_hole) + (fp_text reference "D7" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d35c3413-b247-440c-8c2a-df7f82f4d610) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d6ef3e9b-da22-4baa-9238-e99d498eff93) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 03ae8d3f-2a8d-4f28-b723-54f212af7cd2) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d14c222-f976-4d9e-8dd3-ed42350fa493)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff82e7d3-f08c-4a48-af5c-834c3d7f4d1a)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce979f0c-d688-488c-9f15-56b247a474c2)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab0a7d4a-7f69-4143-8e1a-bddfc81757a8)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170c680c-45d6-4dfb-bce0-f6ed7be28ade)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d05bf55-5b3f-4ba0-a5c9-514a3eb1da33)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1360b337-769d-4ba6-baad-0fd203f06cac)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d83fe7-06a5-412e-879b-a0cb63f4964e)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d73860bd-6717-40bf-b1ea-9b05ca06c6b9)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec7412a4-0bd7-4066-8650-84e7f48a2f89)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c94b18b9-e5ea-470a-8a8e-ed01830a4430)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64ebb365-b4b3-4fae-ae69-f797d6a232cc)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 497845bf-e330-470a-8a41-8bd215780923)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97f3e2ab-7818-4757-8557-dbb225b264d1)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecea62cf-3567-4e9b-859b-8494aa645e0a)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b6cedce-f39a-456d-98ac-758be1537c87)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0463a607-4c21-4f97-a9d6-5ce7f677b1fa)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7caad79f-ca8c-4e22-a7d9-f771eed8d27a)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a8fb1c8-23ec-4d22-b301-cd5e0ace8db3)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19bba913-2b7c-45a6-9f67-1cba7e2eb972)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65f84fd7-2499-4f97-b2e7-8bc13d5c262c)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd1fb75e-f4f3-4279-94a9-8adb48821916)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6caea84e-65b0-4204-b34c-d8c7e7409007)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74ae8399-bb2f-4794-afa2-6361adab74b9)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f9e9575-f44d-4482-84f4-09dbc505e1b0)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 233f6010-43d9-4554-9a4f-09e61c9775b2)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b188e0b-7cf8-43c2-87dc-38c31480aee0)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4934472-843c-47bf-859c-b7fea8e0ac69)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73842042-db26-4713-bd8f-2b64be00caec)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c90802ac-ffae-4954-abb5-678860ea4aff)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2888e3f-f779-4fcb-aef9-3ebfe264eb12)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7752958f-3d3e-461b-8733-8457dcddc93f)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9af7a3ad-b2cd-47b4-b2f5-26fa3242210a)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 949f0e97-1853-41f3-90c0-73ec51fe5039)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 24 "/RGB6") (pinfunction "DIN") (pintype "input") (tstamp 7e309328-d0f4-48b1-9a68-b2da232b0b1c)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp 0b232e22-d721-46aa-beda-d7ebaad5752a)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5bf28fb1-5389-4961-9842-2f47f651d4ad)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp 90d2debf-0f17-4b2c-af8d-fbeb8b4983a7) + (at 63.2 46.04) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/7d0e414c-c00e-4787-ac40-46a210d1901d") + (attr through_hole) + (fp_text reference "D4" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e7e0a674-a7ba-432e-9b7a-a771ce002a35) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 259bd3db-ee2a-4f5b-93b1-ec8584bdccd9) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 05ff37a9-ac70-48b5-813b-0fa71346d2c1) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a7cd66b-420d-4989-8196-771f9d831753)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93ebd79d-192b-454c-90e1-912626aee902)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaf72422-6eae-400e-9667-c704c9667927)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02ca3be6-1c87-48be-ae32-73ded0fb84a2)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7513e221-ab32-4732-8f79-b431c33906cf)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4ba4780-a3c6-47ae-a975-ffd6154f210e)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82236e15-a8c4-478b-a1d1-b0e8cb4695be)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b739fa28-9630-40ec-9f70-0c7c44c1785a)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a760668-3c7d-4880-b04d-062e955d0768)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bd2fbc9-cb5b-420e-864a-fde11197ab58)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fa1a72b-b04d-4781-a239-732da7f05ccc)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae270f38-374b-43b4-b7f0-2c568d91d523)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e301f3c6-dd8c-41f6-9ad0-965beecbae47)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbed9153-35c9-46f6-a55e-2614822decfe)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d15a8f-f690-4774-bae4-2a545b16626c)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf15f87b-b1ed-4882-814d-30eae1ecb5b3)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 440cc179-cf85-4cd1-889c-9e039e2ddd55)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7c7a77d-c0ae-483b-a065-0ed860e2be39)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 768a314b-a430-43ec-9876-8eae5bad589b)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67492a62-16c7-49ac-983f-97efa9acc51f)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1eec456a-c369-44be-82bc-0c9a7bde1507)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f069ea-8dcd-4016-9a6d-8ae43b8a2e14)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38932507-2aa8-4cff-ac48-a358383d79b3)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55e5ae1c-6a08-4053-a354-b118da9b490e)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36008c5b-2726-49a4-a16c-97524ab2d2c3)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92701486-b2f2-434e-af4f-7bcc51997dd4)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d5269b-7ac1-4822-9185-95b4eca64fc7)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9a590c5-703a-4cb3-bdae-a3648c4e0c6a)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08115969-01d0-4dcd-bac2-065ec0b508a3)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f174a8b1-1e32-469b-8d47-315b34092841)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28fd8fe7-96fe-47a1-88b2-502a86e2b783)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7e1b502-ba63-4b71-a841-505587aa7562)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49b9452a-599a-47f8-8c9c-0409e41f36aa)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8997d9e9-0d50-4f59-ab47-d95323632851)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 21 "/RGB3") (pinfunction "DIN") (pintype "input") (tstamp 8ddd5a1d-6ff5-4f48-ac9f-866a38240f44)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp ac085d58-8a47-4915-8605-055a07aca075)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1d5e92bb-6767-434a-a9bd-588c58dc3b66)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (layer "F.Cu") + (tstamp b0303084-85c4-42e0-88ac-e5896d279fff) + (at 39.8 64.4) + (descr "Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix") + (tags "THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Generic connector, single row, 01x02, script generated") + (property "ki_keywords" "connector") + (path "/821847d2-024e-4e04-abfe-79faf82ef32a") + (attr through_hole) + (fp_text reference "J1" (at 2.5 -6.26) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 16623a94-da9f-41e6-b2c4-07a596592d80) + ) + (fp_text value "Conn_01x02_Pin" (at 2.5 5.66) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ce324de0-cf82-4f51-9afd-8c9603ac00d6) + ) + (fp_text user "${REFERENCE}" (at 2.5 3.2) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2e9e24f3-4a62-4c15-b679-2a7c11bf164f) + ) + (fp_line (start -2.8 4.16) (end -2.8 4.9) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fe674be-2b13-4dba-ba95-ecb3d3250264)) + (fp_line (start -2.8 4.9) (end -2.3 4.9) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f61a071-583f-4017-bad0-b7f445a31bcf)) + (fp_line (start -2.56 -5.261) (end -2.56 4.66) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc5f19dc-afd8-4a0d-b291-af9b3b2c9b96)) + (fp_line (start -2.56 -5.261) (end 7.56 -5.261) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21030a14-82a7-4f4b-a29c-df075a090d5e)) + (fp_line (start -2.56 -2.301) (end 7.56 -2.301) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a166092-724d-423d-ab35-46c97015ca03)) + (fp_line (start -2.56 2.6) (end 7.56 2.6) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6443044f-e3e7-4385-8ab9-de6835c308c2)) + (fp_line (start -2.56 4.1) (end 7.56 4.1) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bacfd60c-55d1-44a6-921e-b10ce4495165)) + (fp_line (start -2.56 4.66) (end 7.56 4.66) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c38905a9-c926-4168-b3d4-82ba87ba83d7)) + (fp_line (start 3.773 1.023) (end 3.726 1.069) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b981fff-214c-4471-83b3-e0273c5446f4)) + (fp_line (start 3.966 1.239) (end 3.931 1.274) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12ec0321-205d-4e44-af2e-ec7f17ac27fb)) + (fp_line (start 6.07 -1.275) (end 6.035 -1.239) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ffeaf25-da8a-4a78-869e-c47a06502d7b)) + (fp_line (start 6.275 -1.069) (end 6.228 -1.023) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d25507c8-0585-403c-84a8-aa696d276ac4)) + (fp_line (start 7.56 -5.261) (end 7.56 4.66) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c51f70fb-b3b7-4412-9d3f-5656bf8cb653)) + (fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp deba21b5-95ce-43b5-928a-0fdd82b2fa71)) + (fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b8bf8d8-de5b-4df0-b708-3fd6d11653b0)) + (fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90b2bd93-14ef-4018-9225-533afa3df1ef)) + (fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25b8d8be-91d8-4ae0-b5ec-82363ad53f0f)) + (fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f17d4e63-9555-4216-b08c-e7edd8c158e4)) + (fp_circle (center 5 0) (end 6.68 0) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp ed361b9d-5f83-4406-b54a-13e3dedd4478)) + (fp_line (start -3 -5.71) (end -3 5.1) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9208cbe-16a5-4fe8-8dc1-bab4c5e199c6)) + (fp_line (start -3 5.1) (end 8 5.1) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a03f5ae-01d7-4116-81da-b01b6b8b6655)) + (fp_line (start 8 -5.71) (end -3 -5.71) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61b42967-5372-4f2f-ba07-720be898a333)) + (fp_line (start 8 5.1) (end 8 -5.71) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ef56b1c-7271-41a7-a4c1-0439a337e25a)) + (fp_line (start -2.5 -5.2) (end 7.5 -5.2) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5183af2b-f044-42de-bf46-f0e65f5209f8)) + (fp_line (start -2.5 -2.3) (end 7.5 -2.3) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c72ababf-eb33-4225-ae25-dfbbc61b8bbf)) + (fp_line (start -2.5 2.6) (end 7.5 2.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a361744b-fe92-4f27-9557-727a91467981)) + (fp_line (start -2.5 4.1) (end -2.5 -5.2) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bb3346c-1254-4380-a952-c92ea96c4748)) + (fp_line (start -2.5 4.1) (end 7.5 4.1) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e468935-cd9e-4928-b631-817c9906938f)) + (fp_line (start -2 4.6) (end -2.5 4.1) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98718aa9-bfb5-4e30-b22c-7e2be51448bc)) + (fp_line (start 0.955 -1.138) (end -1.138 0.955) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a7e28c2-285c-43cd-b0b5-2bda76e00f7c)) + (fp_line (start 1.138 -0.955) (end -0.955 1.138) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bf06060-532d-44ed-86d3-04a2a0a33009)) + (fp_line (start 5.955 -1.138) (end 3.863 0.955) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9231410d-c96c-4215-afd4-99cf758fe380)) + (fp_line (start 6.138 -0.955) (end 4.046 1.138) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ec51f96-e0be-46e4-be57-73f23c5bf60b)) + (fp_line (start 7.5 -5.2) (end 7.5 4.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93030093-4445-41a8-81b7-6adec729f4d1)) + (fp_line (start 7.5 4.6) (end -2 4.6) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15e2e7a6-191c-4f4b-9373-bf925a200e3f)) + (fp_circle (center 0 0) (end 1.5 0) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b1986e19-f5e5-480b-9014-71577ae8bc03)) + (fp_circle (center 5 0) (end 6.5 0) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e4ad7e11-c2da-4e2b-b23e-223668352918)) + (pad "1" thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 7bec7da7-9125-48a2-b6e7-894e1d1e6939)) + (pad "2" thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 5f0480dc-2886-43e7-b5f9-7da22222c291)) + (model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu") + (tstamp c25996d0-6ff6-47b3-8782-aec1fcd2dbdb) + (at 21.6 65.6) + (descr "Mounting Hole 3.2mm, M3, DIN965") + (tags "mounting hole 3.2mm m3 din965") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "Mounting Hole without connection") + (property "ki_keywords" "mounting hole") + (path "/c26599f6-ef53-4466-b4da-379532bb6518") + (attr exclude_from_pos_files) + (fp_text reference "H2" (at 0 -3.8) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2b2b7c30-8120-4d34-bf24-6ed4156c0b36) + ) + (fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eb23745b-9c57-40be-98cb-11ab79e6b138) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 32370567-4d3a-491e-b1c0-6457e922f880) + ) + (fp_circle (center 0 0) (end 2.8 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 8a56d8d7-4839-4fee-8432-def02b07dbe4)) + (fp_circle (center 0 0) (end 3.05 0) + (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 667af63c-0366-4ef3-b39d-37e2916918bf)) + (pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 603b40b6-7df8-4063-b7e2-be475ba8fa4d)) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp ec5ed6d9-06b2-482e-84c0-d44d820e723a) + (at 63.2 37.64) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/03574b72-4187-4bd2-9af7-cad2a99eef69") + (attr through_hole) + (fp_text reference "D2" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e7e0a674-a7ba-432e-9b7a-a771ce002a35) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 259bd3db-ee2a-4f5b-93b1-ec8584bdccd9) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 05ff37a9-ac70-48b5-813b-0fa71346d2c1) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a7cd66b-420d-4989-8196-771f9d831753)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93ebd79d-192b-454c-90e1-912626aee902)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaf72422-6eae-400e-9667-c704c9667927)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02ca3be6-1c87-48be-ae32-73ded0fb84a2)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7513e221-ab32-4732-8f79-b431c33906cf)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4ba4780-a3c6-47ae-a975-ffd6154f210e)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82236e15-a8c4-478b-a1d1-b0e8cb4695be)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b739fa28-9630-40ec-9f70-0c7c44c1785a)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a760668-3c7d-4880-b04d-062e955d0768)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bd2fbc9-cb5b-420e-864a-fde11197ab58)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fa1a72b-b04d-4781-a239-732da7f05ccc)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae270f38-374b-43b4-b7f0-2c568d91d523)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e301f3c6-dd8c-41f6-9ad0-965beecbae47)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbed9153-35c9-46f6-a55e-2614822decfe)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d15a8f-f690-4774-bae4-2a545b16626c)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf15f87b-b1ed-4882-814d-30eae1ecb5b3)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 440cc179-cf85-4cd1-889c-9e039e2ddd55)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7c7a77d-c0ae-483b-a065-0ed860e2be39)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 768a314b-a430-43ec-9876-8eae5bad589b)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67492a62-16c7-49ac-983f-97efa9acc51f)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1eec456a-c369-44be-82bc-0c9a7bde1507)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f069ea-8dcd-4016-9a6d-8ae43b8a2e14)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38932507-2aa8-4cff-ac48-a358383d79b3)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55e5ae1c-6a08-4053-a354-b118da9b490e)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36008c5b-2726-49a4-a16c-97524ab2d2c3)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92701486-b2f2-434e-af4f-7bcc51997dd4)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d5269b-7ac1-4822-9185-95b4eca64fc7)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9a590c5-703a-4cb3-bdae-a3648c4e0c6a)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08115969-01d0-4dcd-bac2-065ec0b508a3)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f174a8b1-1e32-469b-8d47-315b34092841)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28fd8fe7-96fe-47a1-88b2-502a86e2b783)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7e1b502-ba63-4b71-a841-505587aa7562)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49b9452a-599a-47f8-8c9c-0409e41f36aa)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8997d9e9-0d50-4f59-ab47-d95323632851)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 19 "/RGB1") (pinfunction "DIN") (pintype "input") (tstamp 8ddd5a1d-6ff5-4f48-ac9f-866a38240f44)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp ac085d58-8a47-4915-8605-055a07aca075)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1d5e92bb-6767-434a-a9bd-588c58dc3b66)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (layer "F.Cu") + (tstamp ffd89ca2-bddb-4515-976e-b2383349edde) + (at 51.5 46.04) + (descr "JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator") + (tags "connector JST XH vertical") + (property "Sheetfile" "RGBee.kicad_sch") + (property "Sheetname" "") + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package") + (property "ki_keywords" "RGB LED NeoPixel addressable") + (path "/3ecb47eb-d1dd-4e50-8700-9dcfa6b1aa2e") + (attr through_hole) + (fp_text reference "D3" (at 2.5 -3.55) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d35c3413-b247-440c-8c2a-df7f82f4d610) + ) + (fp_text value "NeoPixel_THT" (at 2.5 4.6) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d6ef3e9b-da22-4baa-9238-e99d498eff93) + ) + (fp_text user "${REFERENCE}" (at 2.5 2.7) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 03ae8d3f-2a8d-4f28-b723-54f212af7cd2) + ) + (fp_line (start -2.85 -2.75) (end -2.85 -1.5) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d14c222-f976-4d9e-8dd3-ed42350fa493)) + (fp_line (start -2.56 -2.46) (end -2.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff82e7d3-f08c-4a48-af5c-834c3d7f4d1a)) + (fp_line (start -2.56 3.51) (end 7.56 3.51) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce979f0c-d688-488c-9f15-56b247a474c2)) + (fp_line (start -2.55 -2.45) (end -2.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab0a7d4a-7f69-4143-8e1a-bddfc81757a8)) + (fp_line (start -2.55 -1.7) (end -0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 170c680c-45d6-4dfb-bce0-f6ed7be28ade)) + (fp_line (start -2.55 -0.2) (end -1.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d05bf55-5b3f-4ba0-a5c9-514a3eb1da33)) + (fp_line (start -1.8 -0.2) (end -1.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1360b337-769d-4ba6-baad-0fd203f06cac)) + (fp_line (start -1.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d83fe7-06a5-412e-879b-a0cb63f4964e)) + (fp_line (start -1.6 -2.75) (end -2.85 -2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d73860bd-6717-40bf-b1ea-9b05ca06c6b9)) + (fp_line (start -0.75 -2.45) (end -2.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec7412a4-0bd7-4066-8650-84e7f48a2f89)) + (fp_line (start -0.75 -1.7) (end -0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c94b18b9-e5ea-470a-8a8e-ed01830a4430)) + (fp_line (start 0.75 -2.45) (end 0.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64ebb365-b4b3-4fae-ae69-f797d6a232cc)) + (fp_line (start 0.75 -1.7) (end 4.25 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 497845bf-e330-470a-8a41-8bd215780923)) + (fp_line (start 4.25 -2.45) (end 0.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97f3e2ab-7818-4757-8557-dbb225b264d1)) + (fp_line (start 4.25 -1.7) (end 4.25 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecea62cf-3567-4e9b-859b-8494aa645e0a)) + (fp_line (start 5.75 -2.45) (end 5.75 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b6cedce-f39a-456d-98ac-758be1537c87)) + (fp_line (start 5.75 -1.7) (end 7.55 -1.7) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0463a607-4c21-4f97-a9d6-5ce7f677b1fa)) + (fp_line (start 6.8 -0.2) (end 6.8 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7caad79f-ca8c-4e22-a7d9-f771eed8d27a)) + (fp_line (start 6.8 2.75) (end 2.5 2.75) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a8fb1c8-23ec-4d22-b301-cd5e0ace8db3)) + (fp_line (start 7.55 -2.45) (end 5.75 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19bba913-2b7c-45a6-9f67-1cba7e2eb972)) + (fp_line (start 7.55 -1.7) (end 7.55 -2.45) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65f84fd7-2499-4f97-b2e7-8bc13d5c262c)) + (fp_line (start 7.55 -0.2) (end 6.8 -0.2) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd1fb75e-f4f3-4279-94a9-8adb48821916)) + (fp_line (start 7.56 -2.46) (end -2.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6caea84e-65b0-4204-b34c-d8c7e7409007)) + (fp_line (start 7.56 3.51) (end 7.56 -2.46) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74ae8399-bb2f-4794-afa2-6361adab74b9)) + (fp_line (start -2.95 -2.85) (end -2.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f9e9575-f44d-4482-84f4-09dbc505e1b0)) + (fp_line (start -2.95 3.9) (end 7.95 3.9) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 233f6010-43d9-4554-9a4f-09e61c9775b2)) + (fp_line (start 7.95 -2.85) (end -2.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b188e0b-7cf8-43c2-87dc-38c31480aee0)) + (fp_line (start 7.95 3.9) (end 7.95 -2.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4934472-843c-47bf-859c-b7fea8e0ac69)) + (fp_line (start -2.45 -2.35) (end -2.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73842042-db26-4713-bd8f-2b64be00caec)) + (fp_line (start -2.45 3.4) (end 7.45 3.4) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c90802ac-ffae-4954-abb5-678860ea4aff)) + (fp_line (start -0.625 -2.35) (end 0 -1.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2888e3f-f779-4fcb-aef9-3ebfe264eb12)) + (fp_line (start 0 -1.35) (end 0.625 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7752958f-3d3e-461b-8733-8457dcddc93f)) + (fp_line (start 7.45 -2.35) (end -2.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9af7a3ad-b2cd-47b4-b2f5-26fa3242210a)) + (fp_line (start 7.45 3.4) (end 7.45 -2.35) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 949f0e97-1853-41f3-90c0-73ec51fe5039)) + (pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.147059) + (net 20 "/RGB2") (pinfunction "DIN") (pintype "input") (tstamp 7e309328-d0f4-48b1-9a68-b2da232b0b1c)) + (pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 1 "+5V") (pinfunction "5v") (pintype "power_in") (tstamp 0b232e22-d721-46aa-beda-d7ebaad5752a)) + (pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") + (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5bf28fb1-5389-4961-9842-2f47f651d4ad)) + (model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_line (start 73.1 71.1) (end 22.1 71.1) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 001d8470-d4a6-4712-9e25-b2200236c896)) + (gr_line (start 16.9 67.6) (end 16.9 71.1) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 28ddb005-2ead-4dc1-866c-84b16cc1fa2c)) + (gr_line (start 41.98 33.27) (end 73.1 33.2) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 2f135faf-fe7a-4400-94d0-f4db067bf290)) + (gr_line (start 22.1 71.1) (end 16.9 71.1) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3362f41e-3361-4127-befd-c6c38ca669a8)) + (gr_line (start 73.1 67.6) (end 73.1 71.1) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 86b7e67c-c5b2-409c-a828-a4d38e9a921e)) + (gr_line (start 73.1 33.2) (end 73.1 67.6) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9dae8a56-1bf3-46c4-912e-b5d8884dfb1b)) + (gr_line (start 29.98 33.27) (end 22.1 33.3) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dbb28b51-882f-4dfa-9a7d-a2b3caecdc9c)) + (gr_line (start 22.1 33.3) (end 16.9 33.3) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e5b9b3da-ece5-45bc-95be-a942dd089d41)) + (gr_line (start 16.9 67.6) (end 16.9 33.3) + (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp fafdff16-a7ed-4db6-9cd3-edf4fed1cb01)) + (gr_text "GND" (at 46.2 68.5) (layer "B.SilkS") (tstamp 72a20e6d-0078-4a25-a1be-f16b962a7df2) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "or 3.3v" (at 40.5 70) (layer "B.SilkS") (tstamp 7ab281fa-8c71-48a1-bf98-1117869a9f56) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "+5v\n" (at 40.8 68.5) (layer "B.SilkS") (tstamp dc2702d7-c01e-4385-9fc0-31dc1f583d29) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror)) + ) + (gr_text "V0.1\n" (at 31.5 69.8) (layer "F.SilkS") (tstamp 11c03b00-03af-40e7-b23d-6909e1b4dbff) + (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) + ) + (gr_text "RGBee" (at 18.4 48.8 270) (layer "F.SilkS") (tstamp 5ac75c41-df50-4145-a262-214d9b1b1db0) + (effects (font (size 2 2) (thickness 0.15)) (justify left bottom)) + ) + (dimension (type aligned) (layer "User.1") (tstamp 5bd0d0d5-d7f7-46b9-9479-5aadb84c4a2a) + (pts (xy 21.6 65.6) (xy 21.6 71.1)) + (height 10.5) + (gr_text "5.5000 mm" (at 9.95 68.35 90) (layer "User.1") (tstamp 5bd0d0d5-d7f7-46b9-9479-5aadb84c4a2a) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) + ) + (dimension (type aligned) (layer "User.1") (tstamp cabde6b4-cfa4-45cb-b5ca-d75225cfb0f9) + (pts (xy 21.6 38.8) (xy 21.6 33.3)) + (height -7.3) + (gr_text "5.5000 mm" (at 13.15 36.05 90) (layer "User.1") (tstamp cabde6b4-cfa4-45cb-b5ca-d75225cfb0f9) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) + ) + (dimension (type aligned) (layer "User.1") (tstamp f5f619c9-dbb7-49ae-8749-ca88f428a057) + (pts (xy 21.6 65.6) (xy 16.9 65.6)) + (height -11.5) + (gr_text "4.7000 mm" (at 19.25 75.95) (layer "User.1") (tstamp f5f619c9-dbb7-49ae-8749-ca88f428a057) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) + ) + (dimension (type aligned) (layer "User.1") (tstamp f8dc86d6-893c-4c61-a0ad-28d9270569c5) + (pts (xy 16.9 38.8) (xy 21.6 38.8)) + (height 7.3) + (gr_text "4.7000 mm" (at 19.25 44.95) (layer "User.1") (tstamp f8dc86d6-893c-4c61-a0ad-28d9270569c5) + (effects (font (size 1 1) (thickness 0.15))) + ) + (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4)) + (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned) + ) + + (segment (start 54 54.24) (end 54 62.64) (width 1.2) (layer "F.Cu") (net 1) (tstamp 16308c7f-21c2-433f-baa0-355ec408e243)) + (segment (start 65.7 69.14) (end 65.7 62.64) (width 1.2) (layer "F.Cu") (net 1) (tstamp 2606fe78-aa85-4aba-b687-303ca9e149ef)) + (segment (start 54 46.04) (end 54 54.24) (width 1.2) (layer "F.Cu") (net 1) (tstamp 33425492-56e9-453c-a376-c5de55ca534b)) + (segment (start 44.54 69.14) (end 39.8 64.4) (width 1.2) (layer "F.Cu") (net 1) (tstamp 37d43bc4-aebb-44c0-81df-0a592659041e)) + (segment (start 54 69.14) (end 54 62.64) (width 1.2) (layer "F.Cu") (net 1) (tstamp 432e69a6-f471-4583-8dab-9cc0d4caef40)) + (segment (start 54 69.14) (end 65.7 69.14) (width 1.2) (layer "F.Cu") (net 1) (tstamp 491cbe0a-d4d8-4e85-ac3c-bf2661e9a0b1)) + (segment (start 65.7 46.04) (end 65.7 37.64) (width 1.2) (layer "F.Cu") (net 1) (tstamp 789309d5-4b7b-4db4-ac28-ef60b64b9187)) + (segment (start 65.7 54.24) (end 65.7 46.04) (width 1.2) (layer "F.Cu") (net 1) (tstamp 920361ed-9cf2-439e-9660-c5ac98ff0702)) + (segment (start 54 37.64) (end 54 46.04) (width 1.2) (layer "F.Cu") (net 1) (tstamp 9ca1224d-5aae-496c-b7ea-14956275f01a)) + (segment (start 54 69.14) (end 44.54 69.14) (width 1.2) (layer "F.Cu") (net 1) (tstamp b43d5e01-a3d9-4cc6-b71a-f9d7f96a4edf)) + (segment (start 65.7 54.24) (end 65.7 62.64) (width 1.2) (layer "F.Cu") (net 1) (tstamp e831e090-21fd-4b5b-af93-cd23b34c34f3)) + (segment (start 51.5 37.64) (end 46.38 37.64) (width 0.25) (layer "F.Cu") (net 18) (tstamp 7ff00941-8bd0-4f9a-80dd-68ca66670b37)) + (segment (start 46.38 37.64) (end 43.6 34.86) (width 0.25) (layer "F.Cu") (net 18) (tstamp 9c91792f-8a0c-47d9-bed6-db115ba6aa83)) + (segment (start 61.9 36.34) (end 63.2 37.64) (width 0.25) (layer "B.Cu") (net 19) (tstamp 6db7afd1-108c-422d-9303-8814e470c913)) + (segment (start 44.66 36.34) (end 61.9 36.34) (width 0.25) (layer "B.Cu") (net 19) (tstamp 836f015c-83ef-48f5-b449-3d09dba9ae1c)) + (segment (start 43.6 37.4) (end 44.66 36.34) (width 0.25) (layer "B.Cu") (net 19) (tstamp b8cf43c6-3fa5-4d90-b8db-4696cd24b9c4)) + (segment (start 45.4 39.94) (end 51.5 46.04) (width 0.25) (layer "F.Cu") (net 20) (tstamp 29e02231-403c-4d75-969c-66130542edaa)) + (segment (start 43.6 39.94) (end 45.4 39.94) (width 0.25) (layer "F.Cu") (net 20) (tstamp 7a33bfe2-a67d-4115-b593-19349d08ef33)) + (segment (start 59.64 42.48) (end 63.2 46.04) (width 0.25) (layer "B.Cu") (net 21) (tstamp 3b2c9494-d8e0-4544-927e-10570a6eb759)) + (segment (start 43.6 42.48) (end 59.64 42.48) (width 0.25) (layer "B.Cu") (net 21) (tstamp 4d716c35-5f8e-40ff-a559-aa446af2fef4)) + (segment (start 51.5 52.92) (end 51.5 54.24) (width 0.25) (layer "F.Cu") (net 22) (tstamp 5904b9fd-ee44-4f5d-9b07-08a41161faed)) + (segment (start 43.6 45.02) (end 51.5 52.92) (width 0.25) (layer "F.Cu") (net 22) (tstamp e48f556c-6929-458d-a235-ef09af7cfa3a)) + (segment (start 43.6 47.56) (end 56.52 47.56) (width 0.25) (layer "B.Cu") (net 23) (tstamp 9adb189c-8849-498a-b977-59f3400808d6)) + (segment (start 56.52 47.56) (end 63.2 54.24) (width 0.25) (layer "B.Cu") (net 23) (tstamp a8052e48-2f9a-4c5c-a54c-397bd7be22c2)) + (segment (start 51.5 58.01972) (end 51.5 62.64) (width 0.25) (layer "F.Cu") (net 24) (tstamp 1d01847b-4e02-428f-b185-c188a09f85c0)) + (segment (start 43.6 50.11972) (end 51.5 58.01972) (width 0.25) (layer "F.Cu") (net 24) (tstamp 3a835b20-324b-4f3a-9802-70ff55f19136)) + (segment (start 43.6 50.1) (end 43.6 50.11972) (width 0.25) (layer "F.Cu") (net 24) (tstamp f0470342-14b1-4b68-bd6b-9907da1051d7)) + (segment (start 57.5 51.6) (end 60.2 54.3) (width 0.25) (layer "B.Cu") (net 25) (tstamp 2eb54c1a-2259-4289-beb8-e5dcfd05bc8c)) + (segment (start 44.64 51.6) (end 57.5 51.6) (width 0.25) (layer "B.Cu") (net 25) (tstamp 45b20dc2-3034-47c3-aa6a-d1c99550f35c)) + (segment (start 43.6 52.64) (end 44.64 51.6) (width 0.25) (layer "B.Cu") (net 25) (tstamp a68eb78c-ef0e-40af-8d2d-a15a6e0a16c7)) + (segment (start 60.2 54.3) (end 60.2 59.64) (width 0.25) (layer "B.Cu") (net 25) (tstamp c42fe998-1d07-41d7-aaea-43326b9dbdd8)) + (segment (start 60.2 59.64) (end 63.2 62.64) (width 0.25) (layer "B.Cu") (net 25) (tstamp d5e1b360-1493-4aa4-9e11-4d1003b068e7)) + + (zone (net 2) (net_name "GND") (layer "B.Cu") (tstamp 9f1c2776-42d9-4127-98b5-fcbad8fce6bf) (hatch edge 0.5) + (connect_pads (clearance 0.5)) + (min_thickness 0.25) (filled_areas_thickness no) + (fill (thermal_gap 0.5) (thermal_bridge_width 0.5)) + (polygon + (pts + (xy 16.9 33.3) + (xy 73.1 33.2) + (xy 73.1 71.1) + (xy 16.9 71.1) + ) + ) + ) +) diff --git a/RGBee.kicad_prl b/RGBee.kicad_prl new file mode 100644 index 0000000..7577b82 --- /dev/null +++ b/RGBee.kicad_prl @@ -0,0 +1,90 @@ +{ + "board": { + "active_layer": 36, + "active_layer_preset": "All Layers", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "meta": { + "filename": "RGBee.kicad_prl", + "version": 3 + }, + "project": { + "files": [ + { + "name": "RGBee.kicad_sch", + "open": false, + "window": { + "display": 0, + "maximized": false, + "pos_x": 1757, + "pos_y": 737, + "size_x": 1673, + "size_y": 693 + } + } + ] + } +} diff --git a/RGBee.kicad_pro b/RGBee.kicad_pro new file mode 100644 index 0000000..aada6af --- /dev/null +++ b/RGBee.kicad_pro @@ -0,0 +1,492 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, + "diff_pair_dimensions": [ + { + "gap": 0.0, + "via_gap": 0.0, + "width": 0.0 + } + ], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.7999999999999999, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.09999999999999999, + "min_via_diameter": 0.5, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 5, + "td_on_pad_in_zone": false, + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [ + 0.0, + 0.8, + 1.2 + ], + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + } + ], + "zones_allow_external_fillets": false + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "RGBee.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "803b3a72-c22e-426c-ba7e-3c2f8bf4be0d", + "" + ] + ], + "text_variables": {} +} diff --git a/RGBee.kicad_sch b/RGBee.kicad_sch new file mode 100644 index 0000000..3aebfd9 --- /dev/null +++ b/RGBee.kicad_sch @@ -0,0 +1,1286 @@ +(kicad_sch (version 20230121) (generator eeschema) + + (uuid 803b3a72-c22e-426c-ba7e-3c2f8bf4be0d) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x02_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x02_Pin" (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_locked" "" (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "ki_keywords" "connector" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x02, script generated" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x02_Pin_1_1" + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default)) + (fill (type none)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default)) + (fill (type outline)) + ) + (pin passive line (at 5.08 0 180) (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 5.08 -2.54 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "LED:NeoPixel_THT" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "D1" (at 13.335 3.6479 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 13.335 1.1079 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 1.27 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 2.54 -9.525 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "ki_keywords" "RGB LED NeoPixel addressable" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "RGB LED with integrated controller, 5mm/8mm LED package" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED*D5.0mm* LED*D8.0mm*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "NeoPixel_THT_0_0" + (text "RGB" (at 2.286 -4.191 0) + (effects (font (size 0.762 0.762))) + ) + ) + (symbol "NeoPixel_THT_0_1" + (rectangle (start -5.08 5.08) (end 5.08 -5.08) + (stroke (width 0.254) (type default)) + (fill (type background)) + ) + (polyline + (pts + (xy 1.27 -3.556) + (xy 1.778 -3.556) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -2.54) + (xy 1.778 -2.54) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 4.699 -3.556) + (xy 2.667 -3.556) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -2.54) + (xy 1.27 -3.556) + (xy 1.27 -3.048) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.524) + (xy 1.27 -2.54) + (xy 1.27 -2.032) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.683 -1.016) + (xy 3.683 -3.556) + (xy 3.683 -4.064) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + (polyline + (pts + (xy 4.699 -1.524) + (xy 2.667 -1.524) + (xy 3.683 -3.556) + (xy 4.699 -1.524) + ) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "NeoPixel_THT_1_1" + (pin input line (at 7.62 0 180) (length 2.54) + (name "DIN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -7.62 90) (length 2.54) + (name "5v" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 7.62 270) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "H" (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "MountingHole" (at 0 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "mounting hole" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Mounting Hole without connection" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "MountingHole*" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "MountingHole_0_1" + (circle (center 0 0) (radius 1.27) + (stroke (width 1.27) (type default)) + (fill (type none)) + ) + ) + ) + (symbol "mcu:rp2040-zero" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (at 0 15.24 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "rp2040-zero" (at 0 12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at -8.89 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at -8.89 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "rp2040-zero_0_1" + (rectangle (start -10.16 11.43) (end 10.16 -13.97) + (stroke (width 0) (type default)) + (fill (type none)) + ) + ) + (symbol "rp2040-zero_1_1" + (pin bidirectional line (at 12.7 8.89 180) (length 2.54) + (name "0" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 5.08 -16.51 90) (length 2.54) + (name "9" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 2.54 -16.51 90) (length 2.54) + (name "10" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 0 -16.51 90) (length 2.54) + (name "11" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -2.54 -16.51 90) (length 2.54) + (name "12" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -5.08 -16.51 90) (length 2.54) + (name "13" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -11.43 0) (length 2.54) + (name "14" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -8.89 0) (length 2.54) + (name "15" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -6.35 0) (length 2.54) + (name "26" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -3.81 0) (length 2.54) + (name "27" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 -1.27 0) (length 2.54) + (name "28" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 6.35 180) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at -12.7 1.27 0) (length 2.54) + (name "29" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -12.7 3.81 0) (length 2.54) + (name "3V3" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -12.7 6.35 0) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at -12.7 8.89 0) (length 2.54) + (name "5V" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 3.81 180) (length 2.54) + (name "2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 1.27 180) (length 2.54) + (name "3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -1.27 180) (length 2.54) + (name "4" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -3.81 180) (length 2.54) + (name "5" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -6.35 180) (length 2.54) + (name "6" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -8.89 180) (length 2.54) + (name "7" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 12.7 -11.43 180) (length 2.54) + (name "8" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (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) + ) + (property "Datasheet" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "global power" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_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 "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (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) + ) + (property "Datasheet" "" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "global power" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (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) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (no_connect (at 142.24 66.04) (uuid 021a7565-34be-40ff-b712-87dbdef13e6d)) + (no_connect (at 152.4 81.28) (uuid 080b2187-3607-41d4-b478-73a9c9dee8c9)) + (no_connect (at 142.24 68.58) (uuid 1b487e5f-26b7-46b0-8638-22484748585b)) + (no_connect (at 142.24 60.96) (uuid 3df13b57-5823-4fff-af68-c5ee4437c8ae)) + (no_connect (at 142.24 55.88) (uuid 45d800e6-93e1-4f15-9d54-a0bf96f1d15b)) + (no_connect (at 142.24 73.66) (uuid 69477546-a369-4af1-a4f7-b8712f28de4d)) + (no_connect (at 160.02 81.28) (uuid a46e62fb-7b06-4a09-85cc-3c51f2230cb3)) + (no_connect (at 149.86 81.28) (uuid b49ae6a4-e7bf-4e9f-9faf-226175c6a858)) + (no_connect (at 142.24 76.2) (uuid b66d84aa-65c7-4615-8cc6-eea9dcad88ce)) + (no_connect (at 142.24 63.5) (uuid c3449785-6f03-47d5-abb5-a4f8a72e42b6)) + (no_connect (at 142.24 58.42) (uuid c376b7c1-8cbe-4c41-85ac-fa7c0f0f4435)) + (no_connect (at 142.24 71.12) (uuid da49390f-0bd6-4567-ad7c-ea8347027ce0)) + (no_connect (at 154.94 81.28) (uuid e83bd68e-23de-4ced-8d1e-06ac1dd70588)) + (no_connect (at 167.64 76.2) (uuid f09f4988-a5bd-4372-a739-62c9177ff276)) + (no_connect (at 157.48 81.28) (uuid fb2d3d55-5293-48b6-acdb-b3c8cb767a5f)) + + (label "RGB6" (at 57.785 145.415 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 0c78e189-2e07-47cd-833f-d5a52048ea7a) + ) + (label "RGB4" (at 167.64 66.04 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 12d3a090-6135-4cd8-8349-ab55edb02f73) + ) + (label "RGB3" (at 85.725 86.995 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 13a6ec2c-fef6-446a-b4a0-6d288419e667) + ) + (label "RGB1" (at 85.725 55.88 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 2424788a-3a93-4209-a962-3a1310683d84) + ) + (label "RGB5" (at 167.64 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 26895106-2e7e-4ed7-88ab-11dc102c875e) + ) + (label "RGB5" (at 86.36 116.84 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 42323620-6c22-438e-85f8-b567e67b729c) + ) + (label "RGB0" (at 167.64 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6b65d3db-bd4d-4bc8-a573-95550f8cee3e) + ) + (label "RGB2" (at 167.64 60.96 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 706f2365-ecc4-4f0f-9489-ba70f54e603f) + ) + (label "RGB2" (at 56.515 86.36 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 7a1564b1-552c-4890-958d-02600b297ac8) + ) + (label "RGB0" (at 56.515 55.245 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid 7c5b6693-79ca-4962-bce8-d134fb003356) + ) + (label "RGB7" (at 167.64 73.66 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7cd63b99-62fa-46fd-931d-ef315b456bff) + ) + (label "RGB1" (at 167.64 58.42 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 940411e7-1a1c-4dcf-bf6a-a5c91fad74f5) + ) + (label "RGB4" (at 57.15 116.205 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid c17a459e-e321-4707-8425-bfb806ac6b71) + ) + (label "RGB7" (at 86.995 146.05 270) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right bottom)) + (uuid d58b1fcf-cdc3-4718-bb33-eff8686cde6f) + ) + (label "RGB3" (at 167.64 63.5 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dc05d08c-6af2-47a4-ba3e-4182a186665e) + ) + (label "RGB6" (at 167.64 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fc800030-4f32-4368-a234-a313df3ff2bc) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 78.105 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 03574b72-4187-4bd2-9af7-cad2a99eef69) + (property "Reference" "D2" (at 91.44 52.2321 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 91.44 54.7721 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 79.375 63.5 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 80.645 65.405 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid a4a03224-f9b0-453e-9301-89cf711a43b0)) + (pin "2" (uuid cb8b4f06-e69b-4e7d-a37f-45cf3678a22d)) + (pin "3" (uuid 38aee84c-aaa3-460c-825e-6c69e639733b)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "mcu:rp2040-zero") (at 154.94 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 14478aca-d8c3-4d23-a805-0aa3ce13281e) + (property "Reference" "U1" (at 154.94 48.26 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "rp2040-zero" (at 154.94 50.8 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "mcu:rp2040-zero-tht" (at 146.05 59.69 0) + (effects (font (size 1.27 1.27))) + ) + (property "Datasheet" "" (at 146.05 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3c8754bc-111a-487b-ae5c-9314dd0c7585)) + (pin "10" (uuid a6eea457-5c0a-432f-8e21-0f9d3104370a)) + (pin "11" (uuid 4a5b66b8-d2e3-4857-8d2a-aaf7c2252ed6)) + (pin "12" (uuid 04594713-f823-4756-b68a-8f4fce5fcf6f)) + (pin "13" (uuid d92b66cf-6351-4350-a212-78a2fd9c250c)) + (pin "14" (uuid 5be0fe4b-133a-4f20-ba77-a188d204692a)) + (pin "15" (uuid cca5a2d0-6b60-4538-bc34-3a7e250fabaa)) + (pin "16" (uuid adce8c6f-22c3-4fac-91a8-ef79eb9ecf6e)) + (pin "17" (uuid 1a65053c-a9f6-486e-afb3-093634498ac1)) + (pin "18" (uuid 93788662-355c-42cf-b4df-41f07d53f98c)) + (pin "19" (uuid 7d858f83-e3e1-4d3a-9fc5-c0a5c3d299e3)) + (pin "2" (uuid 229a2cda-f5ba-4580-88a3-93d6be4de365)) + (pin "20" (uuid 526e41c3-7827-4f6f-b9cc-79a019429472)) + (pin "21" (uuid eab48c31-783a-49f6-ba72-92709c04eab8)) + (pin "22" (uuid 6257ac0b-f73e-4255-8844-246126a54051)) + (pin "23" (uuid 7dc573b9-b284-4c00-8db3-da0a4cbd2572)) + (pin "3" (uuid 48c184c9-1ab9-467a-90bc-facbb6a653bf)) + (pin "4" (uuid ddf55cd9-bf72-4a13-b747-4a7a378389a1)) + (pin "5" (uuid 6b92a905-52f6-4327-a302-b80032fe9563)) + (pin "6" (uuid 722fb5ca-bef1-4768-903a-c01d30ec20cd)) + (pin "7" (uuid c7042683-1f25-4a01-98d9-70e174c4a38c)) + (pin "8" (uuid e2e8c677-dc5f-4bd0-81d6-e026b92bf1c9)) + (pin "9" (uuid ce024aae-8360-4c6d-982a-4f20ba52e871)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "U1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 48.895 47.625 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 24385081-286d-4ffb-ac1d-491be7d3e9ac) + (property "Reference" "#PWR02" (at 48.895 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 48.895 43.18 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 48.895 47.625 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 48.895 47.625 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 97016167-4a7d-47a7-8c1b-98ecd842753c)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR02") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 79.375 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 352c4c65-fbf8-4203-87be-7c9ea9eacb36) + (property "Reference" "D8" (at 92.71 142.4021 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 92.71 144.9421 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 80.645 153.67 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 81.915 155.575 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 8da290d1-60c8-429b-b205-3b37cf3719c0)) + (pin "2" (uuid 5cada5bb-bbef-47dd-9fc5-3b838441839f)) + (pin "3" (uuid 9299636c-0aef-4741-95d1-25122d98e9a6)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D8") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 48.895 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 3ecb47eb-d1dd-4e50-8700-9dcfa6b1aa2e) + (property "Reference" "D3" (at 62.23 82.7121 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 62.23 85.2521 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 50.165 93.98 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 51.435 95.885 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 6b7e2396-be1a-46a8-a9b5-ee0de8d57557)) + (pin "2" (uuid 3553d838-1615-470c-8657-db87929b16ec)) + (pin "3" (uuid 266981b5-5e4c-4d17-9f21-32be8a9bcac2)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 50.165 145.415 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 4df4cc06-8407-47ea-86a4-9d90f4e30637) + (property "Reference" "D7" (at 63.5 141.7671 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 63.5 144.3071 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 51.435 153.035 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 52.705 154.94 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 629fb0a6-0d25-4c95-a68a-ffb45ac7aab2)) + (pin "2" (uuid 825c629e-fbda-42e1-b9c2-950174cde495)) + (pin "3" (uuid 5131df9e-ef3a-4cd8-89e6-46cf2478a9da)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D7") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 79.375 138.43 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 53277824-06e7-4ea1-8144-fddc1f5cdacb) + (property "Reference" "#PWR015" (at 79.375 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 79.375 133.985 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 79.375 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 79.375 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 38758b30-4075-4422-9067-9b71d45c0f6c)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR015") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 48.895 55.245 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 56dc5b86-d38e-478a-9b25-aa6d85736df2) + (property "Reference" "D1" (at 62.23 51.5971 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 62.23 54.1371 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 50.165 62.865 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 51.435 64.77 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 7f410167-2fd2-497e-8452-d29776cc5e18)) + (pin "2" (uuid 6de38898-429b-40bd-b09b-2b2c789f6498)) + (pin "3" (uuid 9ceea3d0-6809-4561-9b95-297c997e3e9a)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 130.81 133.35 90) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 7b383349-624b-41ec-9524-c5009a0f33a6) + (property "Reference" "#PWR018" (at 137.16 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 134.62 133.35 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (at 130.81 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 130.81 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f948b875-e6a7-431f-a8bb-bfcf3f622169)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR018") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 78.105 94.615 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 7ce5639a-434d-42b3-be9f-6a781f729092) + (property "Reference" "#PWR08" (at 78.105 90.805 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 78.105 99.06 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 78.105 94.615 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 78.105 94.615 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d0a86921-bfcf-4d28-95e0-18deb52d6f8f)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR08") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 78.105 86.995 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 7d0e414c-c00e-4787-ac40-46a210d1901d) + (property "Reference" "D4" (at 91.44 83.3471 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 91.44 85.8871 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 79.375 94.615 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 80.645 96.52 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 651b6873-5f4b-4819-a8ee-97e8f7126ecf)) + (pin "2" (uuid 0742522c-f81f-48fa-b914-dbb67db4fe2c)) + (pin "3" (uuid 23d284d6-e621-4a2b-b624-c0209951b2b6)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Connector:Conn_01x02_Pin") (at 125.73 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 821847d2-024e-4e04-abfe-79faf82ef32a) + (property "Reference" "J1" (at 126.365 125.73 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x02_Pin" (at 126.365 128.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 125.73 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 125.73 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid abc5b4e0-cb9f-41c5-989b-2ef92dd2de34)) + (pin "2" (uuid 3cc444fd-c807-4429-9e0a-5955eb4a3fb0)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "J1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 78.74 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 8667c04a-e9fe-4bb3-ba48-b32f70fd81c2) + (property "Reference" "D6" (at 92.075 113.1921 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 92.075 115.7321 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 80.01 124.46 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 81.28 126.365 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 686f7070-0cdf-4855-b5de-8e020dc59deb)) + (pin "2" (uuid bf4b99e6-c869-4c8a-9285-ed44bbb662e1)) + (pin "3" (uuid f96420f9-db1f-43d8-8b2f-1e5a5506355d)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D6") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 48.895 78.74 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 8c910e4b-4af9-47e2-a1d5-7c1d0c2fb276) + (property "Reference" "#PWR05" (at 48.895 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 48.895 74.295 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 48.895 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 48.895 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3d484e9f-4d76-4d2b-94bf-911291b4a5e8)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR05") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 49.53 108.585 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid 9d0674dc-2293-4ff9-9a0e-2fd75969680d) + (property "Reference" "#PWR09" (at 49.53 102.235 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 49.53 104.14 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 49.53 108.585 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 49.53 108.585 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 392ed900-53a1-48f8-907f-e38da1d12037)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR09") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 50.165 153.035 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a26a1c4a-d9dd-4ec1-bf4a-475480177284) + (property "Reference" "#PWR014" (at 50.165 149.225 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 50.165 157.48 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 50.165 153.035 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 50.165 153.035 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5a661544-9bd1-42ee-9699-52b2c47215fe)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR014") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 78.105 63.5 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a65ed270-01f5-4f35-adb4-f361e74a485e) + (property "Reference" "#PWR04" (at 78.105 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 78.105 67.945 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 78.105 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 78.105 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e82b657e-40a5-4d22-8724-7b5b7e887073)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR04") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 78.105 48.26 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid a76b8afb-f7a2-48d9-842b-1b6e3b9b15f8) + (property "Reference" "#PWR03" (at 78.105 41.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 78.105 43.815 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 78.105 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 78.105 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2472448a-ad9a-490c-8586-8b2952c80641)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR03") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 48.895 62.865 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid af8a1bad-f2c7-4151-9f44-0af86cd1b9b5) + (property "Reference" "#PWR01" (at 48.895 59.055 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 48.895 67.31 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 48.895 62.865 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 48.895 62.865 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3657394d-b5a1-48a8-a5bb-c0ea32cddb27)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR01") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 50.165 137.795 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid b72f4151-97e4-4e0b-afb0-452f8e6c4317) + (property "Reference" "#PWR013" (at 50.165 131.445 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 50.165 133.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 50.165 137.795 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 50.165 137.795 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 824e2457-baab-4403-886f-2b60da6ce08e)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR013") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED:NeoPixel_THT") (at 49.53 116.205 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid b75f5914-b257-4b61-a5da-8f99757aa504) + (property "Reference" "D5" (at 62.865 112.5571 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "NeoPixel_THT" (at 62.865 115.0971 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Connector_JST:JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical" (at 50.8 123.825 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (property "Datasheet" "https://www.adafruit.com/product/1938" (at 52.07 125.73 0) + (effects (font (size 1.27 1.27)) (justify left top) hide) + ) + (pin "1" (uuid 6f4fbe3f-4811-4ca8-9537-704d75700dc3)) + (pin "2" (uuid 918a7aa7-911f-4a6a-9c8a-4958b36c4ac8)) + (pin "3" (uuid c45f3aaf-8e4e-40c2-a76b-e614b55e4a8d)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "D5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 49.53 123.825 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid c1cec4af-0e2c-4080-b342-03fdccd42aa6) + (property "Reference" "#PWR010" (at 49.53 120.015 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 49.53 128.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 49.53 123.825 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 49.53 123.825 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5fe7c1ff-375e-48e9-8b7e-57e6d1fc1e46)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR010") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at 162.56 130.175 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid c26599f6-ef53-4466-b4da-379532bb6518) + (property "Reference" "H2" (at 165.1 128.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (at 165.1 131.445 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (at 162.56 130.175 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 162.56 130.175 0) + (effects (font (size 1.27 1.27)) hide) + ) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "H2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Mechanical:MountingHole") (at 162.56 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid ca23ec45-1a4b-41ff-aa7d-efa95a1ca682) + (property "Reference" "H1" (at 165.1 123.19 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "MountingHole" (at 165.1 125.73 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (at 162.56 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (at 162.56 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "H1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 48.895 93.98 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid d7c9b842-8398-480e-8445-d8d80e759120) + (property "Reference" "#PWR06" (at 48.895 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 48.895 98.425 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 48.895 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 48.895 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a296b7b6-58b3-42ea-926a-4946c359dc5d)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR06") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 78.74 124.46 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid dcb5895b-6cbf-4f1d-8e8d-55000b9a204d) + (property "Reference" "#PWR012" (at 78.74 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 78.74 128.905 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 78.74 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 78.74 124.46 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 611562c7-e9be-4806-b116-59ab03053728)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR012") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 78.105 79.375 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid e4a158a7-5243-4607-9132-bc11d7f5cf7d) + (property "Reference" "#PWR07" (at 78.105 73.025 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 78.105 74.93 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 78.105 79.375 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 78.105 79.375 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 22b65ffe-4829-4996-a768-2aeeadf4a2c3)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR07") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 130.81 130.81 270) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid ea1fb15a-d0b1-44ba-a596-7037b4cf8eaa) + (property "Reference" "#PWR017" (at 127 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 134.62 130.81 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (at 130.81 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 130.81 130.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 79439f10-9b05-4790-8c56-5ae0e5437a6d)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR017") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:+5V") (at 79.375 153.67 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid fa12c9b7-7f56-4c84-b0b7-4d3f6c4b1cb9) + (property "Reference" "#PWR016" (at 79.375 149.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (at 79.375 158.115 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 79.375 153.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 79.375 153.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d5b94881-4f96-4019-88b3-bb5ad880fdf2)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR016") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "power:GND") (at 78.74 109.22 180) (unit 1) + (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) + (uuid fa521e01-ed33-415a-a8db-99b156e15231) + (property "Reference" "#PWR011" (at 78.74 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (at 78.74 104.775 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (at 78.74 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (at 78.74 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e1f0810c-8f04-467c-a66d-d3314be75ce9)) + (instances + (project "RGBee" + (path "/803b3a72-c22e-426c-ba7e-3c2f8bf4be0d" + (reference "#PWR011") (unit 1) + ) + ) + ) + ) + + (sheet_instances + (path "/" (page "1")) + ) +) diff --git a/images/rev0.png b/images/rev0.png new file mode 100644 index 0000000..874b4bd Binary files /dev/null and b/images/rev0.png differ diff --git a/rgbee.cfg b/rgbee.cfg new file mode 100644 index 0000000..065dfd9 --- /dev/null +++ b/rgbee.cfg @@ -0,0 +1,66 @@ +# To flash +# [*] Enable extra low level configuration options +# Micro-controller Architecture (Raspberry Pi RP2040] ---> +# Flash chip (Generic_03H with CLKDIV 4) ---> +# Communiccation interface (USB) ---> +# USB ids ---> +# () GPIO pins to set at micro-controller startup + + +# Klipper config for RGBee + +[mcu rgbee] +serial: /dev/serial/by-id/usb-Klipper_SERIAL_ID_GOES_HERE +restart_method: command + +[board_pins rgbee] +mcu: rgbee +aliases: + N1=gpio0, + N2=gpio1, + N3=gpio2, + N4=gpio3, + N5=gpio4, + N6=gpio5, + N7=gpio6, + N8=gpio7, + LED=gpio16 + +[neopixel my_neopixel1] +pin: rgbee:N1 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel2] +pin: rgbee:N2 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel3] +pin: rgbee:N3 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel4] +pin: rgbee:N4 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel5] +pin: rgbee:N5 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel6] +pin: rgbee:N6 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel7] +pin: rgbee:N7 +# See the "led" section for information on these parameters. + +[neopixel my_neopixel8] +pin: rgbee:N8 +# See the "led" section for information on these parameters. + +[neopixel rgbee] +pin: rgbee:LED +color_order: RGB +initial_RED: 1.0 +initial_GREEN: 0.0 +initial_BLUE: 1.0