Initial import
This commit is contained in:
parent
ac1da03eab
commit
52bd3a6972
27
LICENSE
27
LICENSE
@ -1,11 +1,26 @@
|
|||||||
Copyright (c) 2023 public.
|
Copyright (c) <year> <owner>. All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
1. Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
|
||||||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
3. Neither the name of the copyright holder nor the names of its contributors
|
||||||
|
may be used to endorse or promote products derived from this software without
|
||||||
|
specific prior written permission.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||||
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||||
|
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|||||||
@ -1,2 +1,3 @@
|
|||||||
# wastebin-notifier
|
# wastebin-notifier
|
||||||
|
|
||||||
|
A 3d printed wastebin that will color its lid to show the correct wastebin to put at the curb for collection.
|
||||||
BIN
cad/wastebin-notifier.FCStd
Normal file
BIN
cad/wastebin-notifier.FCStd
Normal file
Binary file not shown.
0
doc/README.md
Normal file
0
doc/README.md
Normal file
BIN
doc/esp8266-wemos-d1-mini-pinout.png
Normal file
BIN
doc/esp8266-wemos-d1-mini-pinout.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 617 KiB |
39
include/README
Normal file
39
include/README
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
|
||||||
|
This directory is intended for project header files.
|
||||||
|
|
||||||
|
A header file is a file containing C declarations and macro definitions
|
||||||
|
to be shared between several project source files. You request the use of a
|
||||||
|
header file in your project source file (C, C++, etc) located in `src` folder
|
||||||
|
by including it, with the C preprocessing directive `#include'.
|
||||||
|
|
||||||
|
```src/main.c
|
||||||
|
|
||||||
|
#include "header.h"
|
||||||
|
|
||||||
|
int main (void)
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Including a header file produces the same results as copying the header file
|
||||||
|
into each source file that needs it. Such copying would be time-consuming
|
||||||
|
and error-prone. With a header file, the related declarations appear
|
||||||
|
in only one place. If they need to be changed, they can be changed in one
|
||||||
|
place, and programs that include the header file will automatically use the
|
||||||
|
new version when next recompiled. The header file eliminates the labor of
|
||||||
|
finding and changing all the copies as well as the risk that a failure to
|
||||||
|
find one copy will result in inconsistencies within a program.
|
||||||
|
|
||||||
|
In C, the usual convention is to give header files names that end with `.h'.
|
||||||
|
It is most portable to use only letters, digits, dashes, and underscores in
|
||||||
|
header file names, and at most one dot.
|
||||||
|
|
||||||
|
Read more about using header files in official GCC documentation:
|
||||||
|
|
||||||
|
* Include Syntax
|
||||||
|
* Include Operation
|
||||||
|
* Once-Only Headers
|
||||||
|
* Computed Includes
|
||||||
|
|
||||||
|
https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html
|
||||||
46
lib/README
Normal file
46
lib/README
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
|
||||||
|
This directory is intended for project specific (private) libraries.
|
||||||
|
PlatformIO will compile them to static libraries and link into executable file.
|
||||||
|
|
||||||
|
The source code of each library should be placed in a an own separate directory
|
||||||
|
("lib/your_library_name/[here are source files]").
|
||||||
|
|
||||||
|
For example, see a structure of the following two libraries `Foo` and `Bar`:
|
||||||
|
|
||||||
|
|--lib
|
||||||
|
| |
|
||||||
|
| |--Bar
|
||||||
|
| | |--docs
|
||||||
|
| | |--examples
|
||||||
|
| | |--src
|
||||||
|
| | |- Bar.c
|
||||||
|
| | |- Bar.h
|
||||||
|
| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html
|
||||||
|
| |
|
||||||
|
| |--Foo
|
||||||
|
| | |- Foo.c
|
||||||
|
| | |- Foo.h
|
||||||
|
| |
|
||||||
|
| |- README --> THIS FILE
|
||||||
|
|
|
||||||
|
|- platformio.ini
|
||||||
|
|--src
|
||||||
|
|- main.c
|
||||||
|
|
||||||
|
and a contents of `src/main.c`:
|
||||||
|
```
|
||||||
|
#include <Foo.h>
|
||||||
|
#include <Bar.h>
|
||||||
|
|
||||||
|
int main (void)
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
PlatformIO Library Dependency Finder will find automatically dependent
|
||||||
|
libraries scanning project source files.
|
||||||
|
|
||||||
|
More information about PlatformIO Library Dependency Finder
|
||||||
|
- https://docs.platformio.org/page/librarymanager/ldf.html
|
||||||
1947
pcb/wastebin-notifier/fp-info-cache
Normal file
1947
pcb/wastebin-notifier/fp-info-cache
Normal file
File diff suppressed because it is too large
Load Diff
99
pcb/wastebin-notifier/wastebin-notifier-cache.lib
Normal file
99
pcb/wastebin-notifier/wastebin-notifier-cache.lib
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
EESchema-LIBRARY Version 2.4
|
||||||
|
#encoding utf-8
|
||||||
|
#
|
||||||
|
# Connector_Conn_01x03_Male
|
||||||
|
#
|
||||||
|
DEF Connector_Conn_01x03_Male J 0 40 Y N 1 F N
|
||||||
|
F0 "J" 0 200 50 H V C CNN
|
||||||
|
F1 "Connector_Conn_01x03_Male" 0 -200 50 H V C CNN
|
||||||
|
F2 "" 0 0 50 H I C CNN
|
||||||
|
F3 "" 0 0 50 H I C CNN
|
||||||
|
$FPLIST
|
||||||
|
Connector*:*_1x??_*
|
||||||
|
$ENDFPLIST
|
||||||
|
DRAW
|
||||||
|
S 34 -95 0 -105 1 1 6 F
|
||||||
|
S 34 5 0 -5 1 1 6 F
|
||||||
|
S 34 105 0 95 1 1 6 F
|
||||||
|
P 2 1 1 6 50 -100 34 -100 N
|
||||||
|
P 2 1 1 6 50 0 34 0 N
|
||||||
|
P 2 1 1 6 50 100 34 100 N
|
||||||
|
X Pin_1 1 200 100 150 L 50 50 1 1 P
|
||||||
|
X Pin_2 2 200 0 150 L 50 50 1 1 P
|
||||||
|
X Pin_3 3 200 -100 150 L 50 50 1 1 P
|
||||||
|
ENDDRAW
|
||||||
|
ENDDEF
|
||||||
|
#
|
||||||
|
# Device_R
|
||||||
|
#
|
||||||
|
DEF Device_R R 0 0 N Y 1 F N
|
||||||
|
F0 "R" 80 0 50 V V C CNN
|
||||||
|
F1 "Device_R" 0 0 50 V V C CNN
|
||||||
|
F2 "" -70 0 50 V I C CNN
|
||||||
|
F3 "" 0 0 50 H I C CNN
|
||||||
|
$FPLIST
|
||||||
|
R_*
|
||||||
|
$ENDFPLIST
|
||||||
|
DRAW
|
||||||
|
S -40 -100 40 100 0 1 10 N
|
||||||
|
X ~ 1 0 150 50 D 50 50 1 1 P
|
||||||
|
X ~ 2 0 -150 50 U 50 50 1 1 P
|
||||||
|
ENDDRAW
|
||||||
|
ENDDEF
|
||||||
|
#
|
||||||
|
# LED_WS2812B
|
||||||
|
#
|
||||||
|
DEF LED_WS2812B D 0 10 Y Y 1 F N
|
||||||
|
F0 "D" 200 225 50 H V R BNN
|
||||||
|
F1 "LED_WS2812B" 50 -225 50 H V L TNN
|
||||||
|
F2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" 50 -300 50 H I L TNN
|
||||||
|
F3 "" 100 -375 50 H I L TNN
|
||||||
|
$FPLIST
|
||||||
|
LED*WS2812*PLCC*5.0x5.0mm*P3.2mm*
|
||||||
|
$ENDFPLIST
|
||||||
|
DRAW
|
||||||
|
T 0 90 -165 30 0 0 0 RGB Normal 0 C C
|
||||||
|
S 200 200 -200 -200 0 1 10 f
|
||||||
|
P 2 0 1 0 50 -140 70 -140 N
|
||||||
|
P 2 0 1 0 50 -100 70 -100 N
|
||||||
|
P 2 0 1 0 185 -140 105 -140 N
|
||||||
|
P 3 0 1 0 90 -100 50 -140 50 -120 N
|
||||||
|
P 3 0 1 0 90 -60 50 -100 50 -80 N
|
||||||
|
P 3 0 1 0 145 -40 145 -140 145 -160 N
|
||||||
|
P 4 0 1 0 185 -60 105 -60 145 -140 185 -60 N
|
||||||
|
X VDD 1 0 300 100 D 50 50 1 1 W
|
||||||
|
X DOUT 2 300 0 100 L 50 50 1 1 O
|
||||||
|
X VSS 3 0 -300 100 U 50 50 1 1 W
|
||||||
|
X DIN 4 -300 0 100 R 50 50 1 1 I
|
||||||
|
ENDDRAW
|
||||||
|
ENDDEF
|
||||||
|
#
|
||||||
|
# power_GND
|
||||||
|
#
|
||||||
|
DEF power_GND #PWR 0 0 Y Y 1 F P
|
||||||
|
F0 "#PWR" 0 -250 50 H I C CNN
|
||||||
|
F1 "power_GND" 0 -150 50 H V C CNN
|
||||||
|
F2 "" 0 0 50 H I C CNN
|
||||||
|
F3 "" 0 0 50 H I C CNN
|
||||||
|
DRAW
|
||||||
|
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
|
||||||
|
X GND 1 0 0 0 D 50 50 1 1 W N
|
||||||
|
ENDDRAW
|
||||||
|
ENDDEF
|
||||||
|
#
|
||||||
|
# power_VCC
|
||||||
|
#
|
||||||
|
DEF power_VCC #PWR 0 0 Y Y 1 F P
|
||||||
|
F0 "#PWR" 0 -150 50 H I C CNN
|
||||||
|
F1 "power_VCC" 0 150 50 H V C CNN
|
||||||
|
F2 "" 0 0 50 H I C CNN
|
||||||
|
F3 "" 0 0 50 H I C CNN
|
||||||
|
DRAW
|
||||||
|
P 2 0 1 0 -30 50 0 100 N
|
||||||
|
P 2 0 1 0 0 0 0 100 N
|
||||||
|
P 2 0 1 0 0 100 30 50 N
|
||||||
|
X VCC 1 0 0 0 U 50 50 1 1 W N
|
||||||
|
ENDDRAW
|
||||||
|
ENDDEF
|
||||||
|
#
|
||||||
|
#End Library
|
||||||
836
pcb/wastebin-notifier/wastebin-notifier.kicad_pcb
Normal file
836
pcb/wastebin-notifier/wastebin-notifier.kicad_pcb
Normal file
@ -0,0 +1,836 @@
|
|||||||
|
(kicad_pcb (version 20171130) (host pcbnew 5.1.9-73d0e3b20d~88~ubuntu20.04.1)
|
||||||
|
|
||||||
|
(general
|
||||||
|
(thickness 1.6)
|
||||||
|
(drawings 8)
|
||||||
|
(tracks 123)
|
||||||
|
(zones 0)
|
||||||
|
(modules 14)
|
||||||
|
(nets 16)
|
||||||
|
)
|
||||||
|
|
||||||
|
(page A4)
|
||||||
|
(layers
|
||||||
|
(0 F.Cu signal)
|
||||||
|
(31 B.Cu signal)
|
||||||
|
(32 B.Adhes user)
|
||||||
|
(33 F.Adhes user)
|
||||||
|
(34 B.Paste user)
|
||||||
|
(35 F.Paste user)
|
||||||
|
(36 B.SilkS user)
|
||||||
|
(37 F.SilkS user)
|
||||||
|
(38 B.Mask user)
|
||||||
|
(39 F.Mask user)
|
||||||
|
(40 Dwgs.User user)
|
||||||
|
(41 Cmts.User user)
|
||||||
|
(42 Eco1.User user)
|
||||||
|
(43 Eco2.User user)
|
||||||
|
(44 Edge.Cuts user)
|
||||||
|
(45 Margin user)
|
||||||
|
(46 B.CrtYd user)
|
||||||
|
(47 F.CrtYd user)
|
||||||
|
(48 B.Fab user)
|
||||||
|
(49 F.Fab user)
|
||||||
|
)
|
||||||
|
|
||||||
|
(setup
|
||||||
|
(last_trace_width 0.25)
|
||||||
|
(user_trace_width 0.2)
|
||||||
|
(trace_clearance 0.2)
|
||||||
|
(zone_clearance 0.508)
|
||||||
|
(zone_45_only no)
|
||||||
|
(trace_min 0.2)
|
||||||
|
(via_size 0.8)
|
||||||
|
(via_drill 0.4)
|
||||||
|
(via_min_size 0.4)
|
||||||
|
(via_min_drill 0.3)
|
||||||
|
(uvia_size 0.3)
|
||||||
|
(uvia_drill 0.1)
|
||||||
|
(uvias_allowed no)
|
||||||
|
(uvia_min_size 0.2)
|
||||||
|
(uvia_min_drill 0.1)
|
||||||
|
(edge_width 0.05)
|
||||||
|
(segment_width 0.2)
|
||||||
|
(pcb_text_width 0.3)
|
||||||
|
(pcb_text_size 1.5 1.5)
|
||||||
|
(mod_edge_width 0.12)
|
||||||
|
(mod_text_size 1 1)
|
||||||
|
(mod_text_width 0.15)
|
||||||
|
(pad_size 1.524 1.524)
|
||||||
|
(pad_drill 0.762)
|
||||||
|
(pad_to_mask_clearance 0)
|
||||||
|
(aux_axis_origin 0 0)
|
||||||
|
(visible_elements FFFFFF7F)
|
||||||
|
(pcbplotparams
|
||||||
|
(layerselection 0x010fc_ffffffff)
|
||||||
|
(usegerberextensions false)
|
||||||
|
(usegerberattributes true)
|
||||||
|
(usegerberadvancedattributes true)
|
||||||
|
(creategerberjobfile true)
|
||||||
|
(excludeedgelayer true)
|
||||||
|
(linewidth 0.100000)
|
||||||
|
(plotframeref false)
|
||||||
|
(viasonmask false)
|
||||||
|
(mode 1)
|
||||||
|
(useauxorigin false)
|
||||||
|
(hpglpennumber 1)
|
||||||
|
(hpglpenspeed 20)
|
||||||
|
(hpglpendiameter 15.000000)
|
||||||
|
(psnegative false)
|
||||||
|
(psa4output false)
|
||||||
|
(plotreference true)
|
||||||
|
(plotvalue true)
|
||||||
|
(plotinvisibletext false)
|
||||||
|
(padsonsilk false)
|
||||||
|
(subtractmaskfromsilk false)
|
||||||
|
(outputformat 1)
|
||||||
|
(mirror false)
|
||||||
|
(drillshape 1)
|
||||||
|
(scaleselection 1)
|
||||||
|
(outputdirectory ""))
|
||||||
|
)
|
||||||
|
|
||||||
|
(net 0 "")
|
||||||
|
(net 1 "Net-(D1-Pad2)")
|
||||||
|
(net 2 GND)
|
||||||
|
(net 3 "Net-(D2-Pad2)")
|
||||||
|
(net 4 "Net-(D3-Pad2)")
|
||||||
|
(net 5 "Net-(D5-Pad2)")
|
||||||
|
(net 6 "Net-(D6-Pad2)")
|
||||||
|
(net 7 "Net-(D1-Pad1)")
|
||||||
|
(net 8 "Net-(D2-Pad1)")
|
||||||
|
(net 9 "Net-(D3-Pad1)")
|
||||||
|
(net 10 "Net-(D5-Pad1)")
|
||||||
|
(net 11 "Net-(D6-Pad1)")
|
||||||
|
(net 12 "Net-(D7-Pad1)")
|
||||||
|
(net 13 VCC)
|
||||||
|
(net 14 DATA)
|
||||||
|
(net 15 "Net-(D5-Pad4)")
|
||||||
|
|
||||||
|
(net_class Default "This is the default net class."
|
||||||
|
(clearance 0.2)
|
||||||
|
(trace_width 0.25)
|
||||||
|
(via_dia 0.8)
|
||||||
|
(via_drill 0.4)
|
||||||
|
(uvia_dia 0.3)
|
||||||
|
(uvia_drill 0.1)
|
||||||
|
(add_net DATA)
|
||||||
|
(add_net GND)
|
||||||
|
(add_net "Net-(D1-Pad1)")
|
||||||
|
(add_net "Net-(D1-Pad2)")
|
||||||
|
(add_net "Net-(D2-Pad1)")
|
||||||
|
(add_net "Net-(D2-Pad2)")
|
||||||
|
(add_net "Net-(D3-Pad1)")
|
||||||
|
(add_net "Net-(D3-Pad2)")
|
||||||
|
(add_net "Net-(D5-Pad1)")
|
||||||
|
(add_net "Net-(D5-Pad2)")
|
||||||
|
(add_net "Net-(D5-Pad4)")
|
||||||
|
(add_net "Net-(D6-Pad1)")
|
||||||
|
(add_net "Net-(D6-Pad2)")
|
||||||
|
(add_net "Net-(D7-Pad1)")
|
||||||
|
(add_net VCC)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFE2567)
|
||||||
|
(at 210.185 -165.735 90)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /6003042A)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R4 (at 0 1.905 180) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 0 (at 0 1.65 90) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 4 "Net-(D3-Pad2)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 15 "Net-(D5-Pad4)"))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC4A6)
|
||||||
|
(at 217.17 -165.735)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCE73E)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D5 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 10 "Net-(D5-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 5 "Net-(D5-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 15 "Net-(D5-Pad4)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FFE0B31)
|
||||||
|
(at 206.375 -165.735 270)
|
||||||
|
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
|
||||||
|
(tags "Through hole pin header THT 1x03 2.54mm single row")
|
||||||
|
(path /5FFF2156)
|
||||||
|
(fp_text reference J1 (at 0 7.62 180) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value Conn_01x03_Male (at -2.54 2.54 180) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user %R (at 0 2.54) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||||
|
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
|
||||||
|
(net 14 DATA))
|
||||||
|
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2458)
|
||||||
|
(at 213.995 -144.78)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE501F)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R7 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 12 "Net-(D7-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2447)
|
||||||
|
(at 213.995 -157.48)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE449E)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R6 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 11 "Net-(D6-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2436)
|
||||||
|
(at 213.995 -170.18)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE3F06)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R5 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 10 "Net-(D5-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2414)
|
||||||
|
(at 187.325 -144.78)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE331C)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R3 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 9 "Net-(D3-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2403)
|
||||||
|
(at 187.325 -157.48)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE2BB1)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R2 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 8 "Net-(D2-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD288C)
|
||||||
|
(at 187.325 -170.18)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE200D)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R1 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 7 "Net-(D1-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC4D4)
|
||||||
|
(at 217.17 -140.335)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCDCA6)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D7 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 12 "Net-(D7-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 6 "Net-(D6-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC4BD)
|
||||||
|
(at 217.17 -153.035)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFD3021)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D6 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 11 "Net-(D6-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 6 "Net-(D6-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 5 "Net-(D5-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC478)
|
||||||
|
(at 190.5 -140.335)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCD698)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D3 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 9 "Net-(D3-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 4 "Net-(D3-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 3 "Net-(D2-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFD2615)
|
||||||
|
(at 190.5 -153.035)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCC435)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D2 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 8 "Net-(D2-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 3 "Net-(D2-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 1 "Net-(D1-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC44A)
|
||||||
|
(at 190.5 -165.735)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCBFAD)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D1 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 7 "Net-(D1-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 1 "Net-(D1-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 14 DATA))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(gr_line (start 184.15 -172.72) (end 184.15 -133.985) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C95))
|
||||||
|
(gr_line (start 223.52 -173.355) (end 184.785 -173.355) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C94))
|
||||||
|
(gr_line (start 224.155 -133.985) (end 224.155 -172.72) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C93))
|
||||||
|
(gr_line (start 184.785 -133.35) (end 223.52 -133.35) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C92))
|
||||||
|
(gr_arc (start 223.52 -172.72) (end 224.155 -172.72) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
(gr_arc (start 223.52 -133.985) (end 223.52 -133.35) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
(gr_arc (start 184.785 -133.985) (end 184.15 -133.985) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
(gr_arc (start 184.785 -172.72) (end 184.785 -173.355) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
|
||||||
|
(segment (start 192.95 -160.02) (end 192.95 -154.635) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 192.405 -160.655) (end 192.95 -160.02) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 188.595 -160.655) (end 192.405 -160.655) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 188.132796 -161.29) (end 188.595 -160.655) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 188.05 -164.135) (end 188.132796 -161.29) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 219.62 -151.435) (end 220.65 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -151.435) (end 193.98 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -164.135) (end 220.675 -164.135) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.675 -164.135) (end 221.615 -163.195) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 221.615 -163.195) (end 221.615 -152.4) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.65 -151.435) (end 221.615 -152.4) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -138.735) (end 220.65 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.65 -138.735) (end 221.615 -139.7) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 221.615 -139.7) (end 221.615 -150.495) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.675 -151.435) (end 221.615 -150.495) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.65 -151.435) (end 220.675 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.98 -151.435) (end 194.005 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -151.435) (end 194.945 -150.495) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -139.7) (end 193.98 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -150.495) (end 194.945 -139.7) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.98 -138.735) (end 192.95 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -163.195) (end 194.005 -164.135) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -164.135) (end 192.95 -164.135) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -164.135) (end 194.005 -164.16) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -137.16) (end 192.95 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.675 -136.525) (end 192.95 -137.16) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.075 -136.525) (end 193.675 -136.525) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -137.16) (end 219.075 -136.525) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -138.735) (end 219.62 -137.16) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -151.435) (end 194.005 -151.46) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -152.4) (end 194.945 -163.195) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -151.46) (end 194.945 -152.4) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -164.135) (end 192.95 -165.01) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -165.01) (end 193.675 -165.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 200.66 -165.735) (end 201.295 -165.1) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.675 -165.735) (end 201.295 -165.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.04 -147.32) (end 192.95 -141.935) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 192.405 -147.955) (end 193.04 -147.32) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 188.595 -147.955) (end 192.405 -147.955) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 187.96 -148.59) (end 188.595 -147.955) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 188.05 -151.435) (end 187.96 -148.59) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 210.185 -168.275) (end 210.185 -166.6475) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 209.55 -168.91) (end 210.185 -168.275) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -168.91) (end 209.55 -168.91) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -168.275) (end 191.135 -168.91) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -162.56) (end 190.5 -168.275) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 188.05 -138.735) (end 188.9 -138.735) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 188.9 -138.735) (end 190.5 -140.335) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -140.335) (end 193.675 -140.335) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -140.335) (end 194.31 -140.97) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -148.59) (end 193.675 -149.225) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -140.97) (end 194.31 -148.59) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -161.925) (end 190.5 -162.56) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -161.925) (end 191.135 -161.925) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -149.225) (end 190.5 -149.86) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -149.86) (end 190.5 -152.4) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -152.4) (end 191.135 -153.035) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -153.035) (end 193.675 -153.035) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -153.035) (end 194.31 -153.67) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -161.29) (end 193.675 -161.925) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -149.225) (end 191.135 -149.225) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -153.67) (end 194.31 -161.29) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 219.71 -160.02) (end 219.62 -154.635) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 219.075 -160.655) (end 219.71 -160.02) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 215.265 -160.655) (end 219.075 -160.655) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 214.72 -161.29) (end 215.265 -160.655) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 214.72 -164.135) (end 214.72 -161.29) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 219.71 -147.32) (end 219.62 -141.935) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 219.075 -147.955) (end 219.71 -147.32) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 215.265 -147.955) (end 219.075 -147.955) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 214.72 -148.59) (end 215.265 -147.955) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 214.72 -151.435) (end 214.72 -148.59) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 188.2375 -167.5225) (end 188.05 -167.335) (width 0.25) (layer F.Cu) (net 7))
|
||||||
|
(segment (start 188.2375 -170.18) (end 188.2375 -167.5225) (width 0.25) (layer F.Cu) (net 7))
|
||||||
|
(segment (start 188.2375 -154.8225) (end 188.05 -154.635) (width 0.25) (layer F.Cu) (net 8))
|
||||||
|
(segment (start 188.2375 -157.48) (end 188.2375 -154.8225) (width 0.25) (layer F.Cu) (net 8))
|
||||||
|
(segment (start 188.2375 -142.1225) (end 188.05 -141.935) (width 0.25) (layer F.Cu) (net 9))
|
||||||
|
(segment (start 188.2375 -144.78) (end 188.2375 -142.1225) (width 0.25) (layer F.Cu) (net 9))
|
||||||
|
(segment (start 214.9075 -167.5225) (end 214.72 -167.335) (width 0.25) (layer F.Cu) (net 10))
|
||||||
|
(segment (start 214.9075 -170.18) (end 214.9075 -167.5225) (width 0.25) (layer F.Cu) (net 10))
|
||||||
|
(segment (start 214.9075 -154.8225) (end 214.72 -154.635) (width 0.25) (layer F.Cu) (net 11))
|
||||||
|
(segment (start 214.9075 -157.48) (end 214.9075 -154.8225) (width 0.25) (layer F.Cu) (net 11))
|
||||||
|
(segment (start 214.9075 -142.1225) (end 214.72 -141.935) (width 0.25) (layer F.Cu) (net 12))
|
||||||
|
(segment (start 214.9075 -144.78) (end 214.9075 -142.1225) (width 0.25) (layer F.Cu) (net 12))
|
||||||
|
(segment (start 186.4125 -170.18) (end 186.4125 -157.48) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 186.4125 -157.48) (end 186.4125 -144.78) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -148.13069) (end 213.0825 -144.78) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -157.48) (end 213.0825 -148.13069) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -170.18) (end 213.0825 -171.0925) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -171.0925) (end 212.09 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.09 -172.085) (end 187.96 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 186.4125 -170.18) (end 186.4125 -171.1725) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 186.4125 -171.1725) (end 187.325 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 187.325 -172.085) (end 187.96 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.17 -165.735) (end 213.0825 -166.6475) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 206.375 -165.735) (end 212.17 -165.735) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -170.18) (end 213.0825 -166.6475) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.17 -165.655) (end 213.0825 -164.7425) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.17 -165.735) (end 212.17 -165.655) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -164.7425) (end 213.0825 -157.48) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 192.95 -167.335) (end 202.87 -167.335) (width 0.25) (layer F.Cu) (net 14))
|
||||||
|
(segment (start 202.87 -167.335) (end 203.835 -166.37) (width 0.25) (layer F.Cu) (net 14))
|
||||||
|
(segment (start 203.835 -165.735) (end 203.835 -166.37) (width 0.25) (layer F.Cu) (net 14))
|
||||||
|
(segment (start 218.135 -167.335) (end 218.77 -167.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -166.37) (end 218.135 -167.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 218.77 -167.335) (end 219.62 -167.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -162.56) (end 217.17 -166.37) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -149.86) (end 217.17 -152.4) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 210.185 -140.97) (end 210.82 -140.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -153.67) (end 220.98 -161.29) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.805 -161.925) (end 217.17 -162.56) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 210.82 -140.335) (end 220.345 -140.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -140.335) (end 220.98 -140.97) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.805 -153.035) (end 220.345 -153.035) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -161.925) (end 217.805 -161.925) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -149.225) (end 217.805 -149.225) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.805 -149.225) (end 217.17 -149.86) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 210.185 -164.8225) (end 210.185 -140.97) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -140.97) (end 220.98 -148.59) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -152.4) (end 217.805 -153.035) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -161.29) (end 220.345 -161.925) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -148.59) (end 220.345 -149.225) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -153.035) (end 220.98 -153.67) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
|
||||||
|
)
|
||||||
836
pcb/wastebin-notifier/wastebin-notifier.kicad_pcb-bak
Normal file
836
pcb/wastebin-notifier/wastebin-notifier.kicad_pcb-bak
Normal file
@ -0,0 +1,836 @@
|
|||||||
|
(kicad_pcb (version 20171130) (host pcbnew 5.1.9-73d0e3b20d~88~ubuntu20.04.1)
|
||||||
|
|
||||||
|
(general
|
||||||
|
(thickness 1.6)
|
||||||
|
(drawings 8)
|
||||||
|
(tracks 123)
|
||||||
|
(zones 0)
|
||||||
|
(modules 14)
|
||||||
|
(nets 16)
|
||||||
|
)
|
||||||
|
|
||||||
|
(page A4)
|
||||||
|
(layers
|
||||||
|
(0 F.Cu signal)
|
||||||
|
(31 B.Cu signal)
|
||||||
|
(32 B.Adhes user)
|
||||||
|
(33 F.Adhes user)
|
||||||
|
(34 B.Paste user)
|
||||||
|
(35 F.Paste user)
|
||||||
|
(36 B.SilkS user)
|
||||||
|
(37 F.SilkS user)
|
||||||
|
(38 B.Mask user)
|
||||||
|
(39 F.Mask user)
|
||||||
|
(40 Dwgs.User user)
|
||||||
|
(41 Cmts.User user)
|
||||||
|
(42 Eco1.User user)
|
||||||
|
(43 Eco2.User user)
|
||||||
|
(44 Edge.Cuts user)
|
||||||
|
(45 Margin user)
|
||||||
|
(46 B.CrtYd user)
|
||||||
|
(47 F.CrtYd user)
|
||||||
|
(48 B.Fab user)
|
||||||
|
(49 F.Fab user)
|
||||||
|
)
|
||||||
|
|
||||||
|
(setup
|
||||||
|
(last_trace_width 0.25)
|
||||||
|
(user_trace_width 0.2)
|
||||||
|
(trace_clearance 0.2)
|
||||||
|
(zone_clearance 0.508)
|
||||||
|
(zone_45_only no)
|
||||||
|
(trace_min 0.2)
|
||||||
|
(via_size 0.8)
|
||||||
|
(via_drill 0.4)
|
||||||
|
(via_min_size 0.4)
|
||||||
|
(via_min_drill 0.3)
|
||||||
|
(uvia_size 0.3)
|
||||||
|
(uvia_drill 0.1)
|
||||||
|
(uvias_allowed no)
|
||||||
|
(uvia_min_size 0.2)
|
||||||
|
(uvia_min_drill 0.1)
|
||||||
|
(edge_width 0.05)
|
||||||
|
(segment_width 0.2)
|
||||||
|
(pcb_text_width 0.3)
|
||||||
|
(pcb_text_size 1.5 1.5)
|
||||||
|
(mod_edge_width 0.12)
|
||||||
|
(mod_text_size 1 1)
|
||||||
|
(mod_text_width 0.15)
|
||||||
|
(pad_size 1.524 1.524)
|
||||||
|
(pad_drill 0.762)
|
||||||
|
(pad_to_mask_clearance 0)
|
||||||
|
(aux_axis_origin 0 0)
|
||||||
|
(visible_elements FFFFFF7F)
|
||||||
|
(pcbplotparams
|
||||||
|
(layerselection 0x010fc_ffffffff)
|
||||||
|
(usegerberextensions false)
|
||||||
|
(usegerberattributes true)
|
||||||
|
(usegerberadvancedattributes true)
|
||||||
|
(creategerberjobfile true)
|
||||||
|
(excludeedgelayer true)
|
||||||
|
(linewidth 0.100000)
|
||||||
|
(plotframeref false)
|
||||||
|
(viasonmask false)
|
||||||
|
(mode 1)
|
||||||
|
(useauxorigin false)
|
||||||
|
(hpglpennumber 1)
|
||||||
|
(hpglpenspeed 20)
|
||||||
|
(hpglpendiameter 15.000000)
|
||||||
|
(psnegative false)
|
||||||
|
(psa4output false)
|
||||||
|
(plotreference true)
|
||||||
|
(plotvalue true)
|
||||||
|
(plotinvisibletext false)
|
||||||
|
(padsonsilk false)
|
||||||
|
(subtractmaskfromsilk false)
|
||||||
|
(outputformat 1)
|
||||||
|
(mirror false)
|
||||||
|
(drillshape 1)
|
||||||
|
(scaleselection 1)
|
||||||
|
(outputdirectory ""))
|
||||||
|
)
|
||||||
|
|
||||||
|
(net 0 "")
|
||||||
|
(net 1 "Net-(D1-Pad2)")
|
||||||
|
(net 2 GND)
|
||||||
|
(net 3 "Net-(D2-Pad2)")
|
||||||
|
(net 4 "Net-(D3-Pad2)")
|
||||||
|
(net 5 "Net-(D5-Pad2)")
|
||||||
|
(net 6 "Net-(D6-Pad2)")
|
||||||
|
(net 7 "Net-(D1-Pad1)")
|
||||||
|
(net 8 "Net-(D2-Pad1)")
|
||||||
|
(net 9 "Net-(D3-Pad1)")
|
||||||
|
(net 10 "Net-(D5-Pad1)")
|
||||||
|
(net 11 "Net-(D6-Pad1)")
|
||||||
|
(net 12 "Net-(D7-Pad1)")
|
||||||
|
(net 13 VCC)
|
||||||
|
(net 14 DATA)
|
||||||
|
(net 15 "Net-(D5-Pad4)")
|
||||||
|
|
||||||
|
(net_class Default "This is the default net class."
|
||||||
|
(clearance 0.2)
|
||||||
|
(trace_width 0.25)
|
||||||
|
(via_dia 0.8)
|
||||||
|
(via_drill 0.4)
|
||||||
|
(uvia_dia 0.3)
|
||||||
|
(uvia_drill 0.1)
|
||||||
|
(add_net DATA)
|
||||||
|
(add_net GND)
|
||||||
|
(add_net "Net-(D1-Pad1)")
|
||||||
|
(add_net "Net-(D1-Pad2)")
|
||||||
|
(add_net "Net-(D2-Pad1)")
|
||||||
|
(add_net "Net-(D2-Pad2)")
|
||||||
|
(add_net "Net-(D3-Pad1)")
|
||||||
|
(add_net "Net-(D3-Pad2)")
|
||||||
|
(add_net "Net-(D5-Pad1)")
|
||||||
|
(add_net "Net-(D5-Pad2)")
|
||||||
|
(add_net "Net-(D5-Pad4)")
|
||||||
|
(add_net "Net-(D6-Pad1)")
|
||||||
|
(add_net "Net-(D6-Pad2)")
|
||||||
|
(add_net "Net-(D7-Pad1)")
|
||||||
|
(add_net VCC)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFE2567)
|
||||||
|
(at 210.185 -165.735 90)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /6003042A)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R4 (at 0 1.905 180) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 0 (at 0 1.65 90) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 4 "Net-(D3-Pad2)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 15 "Net-(D5-Pad4)"))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC4A6)
|
||||||
|
(at 217.17 -165.735)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCE73E)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D5 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 10 "Net-(D5-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 5 "Net-(D5-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 15 "Net-(D5-Pad4)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FFE0B31)
|
||||||
|
(at 206.375 -165.735 270)
|
||||||
|
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
|
||||||
|
(tags "Through hole pin header THT 1x03 2.54mm single row")
|
||||||
|
(path /5FFF2156)
|
||||||
|
(fp_text reference J1 (at 0 7.62 180) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value Conn_01x03_Male (at -2.54 2.54 180) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user %R (at 0 2.54) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||||
|
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
|
||||||
|
(net 14 DATA))
|
||||||
|
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2458)
|
||||||
|
(at 213.995 -144.78)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE501F)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R7 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 12 "Net-(D7-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2447)
|
||||||
|
(at 213.995 -157.48)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE449E)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R6 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 11 "Net-(D6-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2436)
|
||||||
|
(at 213.995 -170.18)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE3F06)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R5 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 10 "Net-(D5-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2414)
|
||||||
|
(at 187.325 -144.78)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE331C)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R3 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 9 "Net-(D3-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD2403)
|
||||||
|
(at 187.325 -157.48)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE2BB1)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R2 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 8 "Net-(D2-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FFD288C)
|
||||||
|
(at 187.325 -170.18)
|
||||||
|
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
|
||||||
|
(tags resistor)
|
||||||
|
(path /5FFE200D)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference R1 (at 2.54 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value 47 (at 0 1.65) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.5 0.5) (thickness 0.08)))
|
||||||
|
)
|
||||||
|
(pad 2 smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 7 "Net-(D1-Pad1)"))
|
||||||
|
(pad 1 smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.243902)
|
||||||
|
(net 13 VCC))
|
||||||
|
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC4D4)
|
||||||
|
(at 217.17 -140.335)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCDCA6)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D7 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 12 "Net-(D7-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 6 "Net-(D6-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC4BD)
|
||||||
|
(at 217.17 -153.035)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFD3021)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D6 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 11 "Net-(D6-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 6 "Net-(D6-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 5 "Net-(D5-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC478)
|
||||||
|
(at 190.5 -140.335)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCD698)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D3 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 9 "Net-(D3-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 4 "Net-(D3-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 3 "Net-(D2-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFD2615)
|
||||||
|
(at 190.5 -153.035)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCC435)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D2 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 8 "Net-(D2-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 3 "Net-(D2-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 1 "Net-(D1-Pad2)"))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FFCC44A)
|
||||||
|
(at 190.5 -165.735)
|
||||||
|
(descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
|
||||||
|
(tags "LED RGB NeoPixel")
|
||||||
|
(path /5FFCBFAD)
|
||||||
|
(attr smd)
|
||||||
|
(fp_text reference D1 (at 4.445 0) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text value WS2812B (at 0 4) (layer F.Fab)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
|
||||||
|
(fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
|
||||||
|
(fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
|
||||||
|
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||||
|
(effects (font (size 0.8 0.8) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
|
||||||
|
(effects (font (size 1 1) (thickness 0.15)))
|
||||||
|
)
|
||||||
|
(pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 7 "Net-(D1-Pad1)"))
|
||||||
|
(pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 1 "Net-(D1-Pad2)"))
|
||||||
|
(pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 14 DATA))
|
||||||
|
(pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
|
||||||
|
(net 2 GND))
|
||||||
|
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
|
||||||
|
(at (xyz 0 0 0))
|
||||||
|
(scale (xyz 1 1 1))
|
||||||
|
(rotate (xyz 0 0 0))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(gr_line (start 184.15 -172.72) (end 184.15 -133.985) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C95))
|
||||||
|
(gr_line (start 223.52 -173.355) (end 184.785 -173.355) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C94))
|
||||||
|
(gr_line (start 224.155 -133.985) (end 224.155 -172.72) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C93))
|
||||||
|
(gr_line (start 184.785 -133.35) (end 223.52 -133.35) (layer Edge.Cuts) (width 0.05) (tstamp 5FFE2C92))
|
||||||
|
(gr_arc (start 223.52 -172.72) (end 224.155 -172.72) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
(gr_arc (start 223.52 -133.985) (end 223.52 -133.35) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
(gr_arc (start 184.785 -133.985) (end 184.15 -133.985) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
(gr_arc (start 184.785 -172.72) (end 184.785 -173.355) (angle -90) (layer Edge.Cuts) (width 0.05))
|
||||||
|
|
||||||
|
(segment (start 192.95 -160.02) (end 192.95 -154.635) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 192.405 -160.655) (end 192.95 -160.02) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 188.595 -160.655) (end 192.405 -160.655) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 188.132796 -161.29) (end 188.595 -160.655) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 188.05 -164.135) (end 188.132796 -161.29) (width 0.25) (layer F.Cu) (net 1))
|
||||||
|
(segment (start 219.62 -151.435) (end 220.65 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -151.435) (end 193.98 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -164.135) (end 220.675 -164.135) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.675 -164.135) (end 221.615 -163.195) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 221.615 -163.195) (end 221.615 -152.4) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.65 -151.435) (end 221.615 -152.4) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -138.735) (end 220.65 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.65 -138.735) (end 221.615 -139.7) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 221.615 -139.7) (end 221.615 -150.495) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.675 -151.435) (end 221.615 -150.495) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 220.65 -151.435) (end 220.675 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.98 -151.435) (end 194.005 -151.435) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -151.435) (end 194.945 -150.495) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -139.7) (end 193.98 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -150.495) (end 194.945 -139.7) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.98 -138.735) (end 192.95 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -163.195) (end 194.005 -164.135) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -164.135) (end 192.95 -164.135) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -164.135) (end 194.005 -164.16) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -137.16) (end 192.95 -138.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.675 -136.525) (end 192.95 -137.16) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.075 -136.525) (end 193.675 -136.525) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -137.16) (end 219.075 -136.525) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 219.62 -138.735) (end 219.62 -137.16) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -151.435) (end 194.005 -151.46) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.945 -152.4) (end 194.945 -163.195) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 194.005 -151.46) (end 194.945 -152.4) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -164.135) (end 192.95 -165.01) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 192.95 -165.01) (end 193.675 -165.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 200.66 -165.735) (end 201.295 -165.1) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.675 -165.735) (end 201.295 -165.735) (width 0.25) (layer F.Cu) (net 2))
|
||||||
|
(segment (start 193.04 -147.32) (end 192.95 -141.935) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 192.405 -147.955) (end 193.04 -147.32) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 188.595 -147.955) (end 192.405 -147.955) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 187.96 -148.59) (end 188.595 -147.955) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 188.05 -151.435) (end 187.96 -148.59) (width 0.25) (layer F.Cu) (net 3))
|
||||||
|
(segment (start 210.185 -168.275) (end 210.185 -166.6475) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 209.55 -168.91) (end 210.185 -168.275) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.77 -168.91) (end 209.55 -168.91) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -168.275) (end 191.77 -168.91) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -162.56) (end 191.135 -168.275) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.77 -161.925) (end 191.135 -162.56) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -161.925) (end 191.77 -161.925) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 188.05 -138.735) (end 188.9 -138.735) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 188.9 -138.735) (end 190.5 -140.335) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -140.335) (end 193.675 -140.335) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -149.225) (end 191.135 -149.225) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -140.335) (end 194.31 -140.97) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -149.225) (end 190.5 -149.86) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -149.86) (end 190.5 -152.4) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -140.97) (end 194.31 -148.59) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -148.59) (end 193.675 -149.225) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 191.135 -153.035) (end 193.675 -153.035) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 190.5 -152.4) (end 191.135 -153.035) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -161.29) (end 193.675 -161.925) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 193.675 -153.035) (end 194.31 -153.67) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 194.31 -153.67) (end 194.31 -161.29) (width 0.25) (layer F.Cu) (net 4))
|
||||||
|
(segment (start 219.71 -160.02) (end 219.62 -154.635) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 219.075 -160.655) (end 219.71 -160.02) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 215.265 -160.655) (end 219.075 -160.655) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 214.72 -161.29) (end 215.265 -160.655) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 214.72 -164.135) (end 214.72 -161.29) (width 0.25) (layer F.Cu) (net 5))
|
||||||
|
(segment (start 219.71 -147.32) (end 219.62 -141.935) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 219.075 -147.955) (end 219.71 -147.32) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 215.265 -147.955) (end 219.075 -147.955) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 214.72 -148.59) (end 215.265 -147.955) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 214.72 -151.435) (end 214.72 -148.59) (width 0.25) (layer F.Cu) (net 6))
|
||||||
|
(segment (start 188.2375 -167.5225) (end 188.05 -167.335) (width 0.25) (layer F.Cu) (net 7))
|
||||||
|
(segment (start 188.2375 -170.18) (end 188.2375 -167.5225) (width 0.25) (layer F.Cu) (net 7))
|
||||||
|
(segment (start 188.2375 -154.8225) (end 188.05 -154.635) (width 0.25) (layer F.Cu) (net 8))
|
||||||
|
(segment (start 188.2375 -157.48) (end 188.2375 -154.8225) (width 0.25) (layer F.Cu) (net 8))
|
||||||
|
(segment (start 188.2375 -142.1225) (end 188.05 -141.935) (width 0.25) (layer F.Cu) (net 9))
|
||||||
|
(segment (start 188.2375 -144.78) (end 188.2375 -142.1225) (width 0.25) (layer F.Cu) (net 9))
|
||||||
|
(segment (start 214.9075 -167.5225) (end 214.72 -167.335) (width 0.25) (layer F.Cu) (net 10))
|
||||||
|
(segment (start 214.9075 -170.18) (end 214.9075 -167.5225) (width 0.25) (layer F.Cu) (net 10))
|
||||||
|
(segment (start 214.9075 -154.8225) (end 214.72 -154.635) (width 0.25) (layer F.Cu) (net 11))
|
||||||
|
(segment (start 214.9075 -157.48) (end 214.9075 -154.8225) (width 0.25) (layer F.Cu) (net 11))
|
||||||
|
(segment (start 214.9075 -142.1225) (end 214.72 -141.935) (width 0.25) (layer F.Cu) (net 12))
|
||||||
|
(segment (start 214.9075 -144.78) (end 214.9075 -142.1225) (width 0.25) (layer F.Cu) (net 12))
|
||||||
|
(segment (start 186.4125 -170.18) (end 186.4125 -157.48) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 186.4125 -157.48) (end 186.4125 -144.78) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -148.13069) (end 213.0825 -144.78) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -157.48) (end 213.0825 -148.13069) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -170.18) (end 213.0825 -171.0925) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -171.0925) (end 212.09 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.09 -172.085) (end 187.96 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 186.4125 -170.18) (end 186.4125 -171.1725) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 186.4125 -171.1725) (end 187.325 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 187.325 -172.085) (end 187.96 -172.085) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.17 -165.735) (end 213.0825 -166.6475) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 206.375 -165.735) (end 212.17 -165.735) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -170.18) (end 213.0825 -166.6475) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.17 -165.655) (end 213.0825 -164.7425) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 212.17 -165.735) (end 212.17 -165.655) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 213.0825 -164.7425) (end 213.0825 -157.48) (width 0.25) (layer F.Cu) (net 13))
|
||||||
|
(segment (start 192.95 -167.335) (end 202.87 -167.335) (width 0.25) (layer F.Cu) (net 14))
|
||||||
|
(segment (start 202.87 -167.335) (end 203.835 -166.37) (width 0.25) (layer F.Cu) (net 14))
|
||||||
|
(segment (start 203.835 -165.735) (end 203.835 -166.37) (width 0.25) (layer F.Cu) (net 14))
|
||||||
|
(segment (start 218.135 -167.335) (end 218.77 -167.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -166.37) (end 218.135 -167.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 218.77 -167.335) (end 219.62 -167.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -162.56) (end 217.17 -166.37) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -149.86) (end 217.17 -152.4) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 210.185 -140.97) (end 210.82 -140.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -153.67) (end 220.98 -161.29) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.805 -161.925) (end 217.17 -162.56) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 210.82 -140.335) (end 220.345 -140.335) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -140.335) (end 220.98 -140.97) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.805 -153.035) (end 220.345 -153.035) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -161.925) (end 217.805 -161.925) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -149.225) (end 217.805 -149.225) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.805 -149.225) (end 217.17 -149.86) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 210.185 -164.8225) (end 210.185 -140.97) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -140.97) (end 220.98 -148.59) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 217.17 -152.4) (end 217.805 -153.035) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -161.29) (end 220.345 -161.925) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.98 -148.59) (end 220.345 -149.225) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
(segment (start 220.345 -153.035) (end 220.98 -153.67) (width 0.25) (layer F.Cu) (net 15))
|
||||||
|
|
||||||
|
)
|
||||||
239
pcb/wastebin-notifier/wastebin-notifier.pro
Normal file
239
pcb/wastebin-notifier/wastebin-notifier.pro
Normal file
@ -0,0 +1,239 @@
|
|||||||
|
update=Tue 12 Jan 2021 09:36:23 PM CET
|
||||||
|
version=1
|
||||||
|
last_client=kicad
|
||||||
|
[general]
|
||||||
|
version=1
|
||||||
|
RootSch=
|
||||||
|
BoardNm=
|
||||||
|
[cvpcb]
|
||||||
|
version=1
|
||||||
|
NetIExt=net
|
||||||
|
[eeschema]
|
||||||
|
version=1
|
||||||
|
LibDir=
|
||||||
|
[eeschema/libraries]
|
||||||
|
[pcbnew]
|
||||||
|
version=1
|
||||||
|
PageLayoutDescrFile=
|
||||||
|
LastNetListRead=
|
||||||
|
CopperLayerCount=2
|
||||||
|
BoardThickness=1.6
|
||||||
|
AllowMicroVias=0
|
||||||
|
AllowBlindVias=0
|
||||||
|
RequireCourtyardDefinitions=0
|
||||||
|
ProhibitOverlappingCourtyards=1
|
||||||
|
MinTrackWidth=0.2
|
||||||
|
MinViaDiameter=0.4
|
||||||
|
MinViaDrill=0.3
|
||||||
|
MinMicroViaDiameter=0.2
|
||||||
|
MinMicroViaDrill=0.09999999999999999
|
||||||
|
MinHoleToHole=0.25
|
||||||
|
TrackWidth1=0.25
|
||||||
|
TrackWidth2=0.2
|
||||||
|
ViaDiameter1=0.8
|
||||||
|
ViaDrill1=0.4
|
||||||
|
dPairWidth1=0.2
|
||||||
|
dPairGap1=0.25
|
||||||
|
dPairViaGap1=0.25
|
||||||
|
SilkLineWidth=0.12
|
||||||
|
SilkTextSizeV=1
|
||||||
|
SilkTextSizeH=1
|
||||||
|
SilkTextSizeThickness=0.15
|
||||||
|
SilkTextItalic=0
|
||||||
|
SilkTextUpright=1
|
||||||
|
CopperLineWidth=0.2
|
||||||
|
CopperTextSizeV=1.5
|
||||||
|
CopperTextSizeH=1.5
|
||||||
|
CopperTextThickness=0.3
|
||||||
|
CopperTextItalic=0
|
||||||
|
CopperTextUpright=1
|
||||||
|
EdgeCutLineWidth=0.05
|
||||||
|
CourtyardLineWidth=0.05
|
||||||
|
OthersLineWidth=0.15
|
||||||
|
OthersTextSizeV=1
|
||||||
|
OthersTextSizeH=1
|
||||||
|
OthersTextSizeThickness=0.15
|
||||||
|
OthersTextItalic=0
|
||||||
|
OthersTextUpright=1
|
||||||
|
SolderMaskClearance=0
|
||||||
|
SolderMaskMinWidth=0
|
||||||
|
SolderPasteClearance=0
|
||||||
|
SolderPasteRatio=-0
|
||||||
|
[pcbnew/Layer.F.Cu]
|
||||||
|
Name=F.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.In1.Cu]
|
||||||
|
Name=In1.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In2.Cu]
|
||||||
|
Name=In2.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In3.Cu]
|
||||||
|
Name=In3.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In4.Cu]
|
||||||
|
Name=In4.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In5.Cu]
|
||||||
|
Name=In5.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In6.Cu]
|
||||||
|
Name=In6.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In7.Cu]
|
||||||
|
Name=In7.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In8.Cu]
|
||||||
|
Name=In8.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In9.Cu]
|
||||||
|
Name=In9.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In10.Cu]
|
||||||
|
Name=In10.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In11.Cu]
|
||||||
|
Name=In11.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In12.Cu]
|
||||||
|
Name=In12.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In13.Cu]
|
||||||
|
Name=In13.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In14.Cu]
|
||||||
|
Name=In14.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In15.Cu]
|
||||||
|
Name=In15.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In16.Cu]
|
||||||
|
Name=In16.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In17.Cu]
|
||||||
|
Name=In17.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In18.Cu]
|
||||||
|
Name=In18.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In19.Cu]
|
||||||
|
Name=In19.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In20.Cu]
|
||||||
|
Name=In20.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In21.Cu]
|
||||||
|
Name=In21.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In22.Cu]
|
||||||
|
Name=In22.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In23.Cu]
|
||||||
|
Name=In23.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In24.Cu]
|
||||||
|
Name=In24.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In25.Cu]
|
||||||
|
Name=In25.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In26.Cu]
|
||||||
|
Name=In26.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In27.Cu]
|
||||||
|
Name=In27.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In28.Cu]
|
||||||
|
Name=In28.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In29.Cu]
|
||||||
|
Name=In29.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.In30.Cu]
|
||||||
|
Name=In30.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Layer.B.Cu]
|
||||||
|
Name=B.Cu
|
||||||
|
Type=0
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.B.Adhes]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.F.Adhes]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.B.Paste]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.F.Paste]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.B.SilkS]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.F.SilkS]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.B.Mask]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.F.Mask]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Dwgs.User]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Cmts.User]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Eco1.User]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Eco2.User]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Edge.Cuts]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Margin]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.B.CrtYd]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.F.CrtYd]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.B.Fab]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.F.Fab]
|
||||||
|
Enabled=1
|
||||||
|
[pcbnew/Layer.Rescue]
|
||||||
|
Enabled=0
|
||||||
|
[pcbnew/Netclasses]
|
||||||
|
[pcbnew/Netclasses/Default]
|
||||||
|
Name=Default
|
||||||
|
Clearance=0.2
|
||||||
|
TrackWidth=0.25
|
||||||
|
ViaDiameter=0.8
|
||||||
|
ViaDrill=0.4
|
||||||
|
uViaDiameter=0.3
|
||||||
|
uViaDrill=0.1
|
||||||
|
dPairWidth=0.2
|
||||||
|
dPairGap=0.25
|
||||||
|
dPairViaGap=0.25
|
||||||
431
pcb/wastebin-notifier/wastebin-notifier.sch
Normal file
431
pcb/wastebin-notifier/wastebin-notifier.sch
Normal file
@ -0,0 +1,431 @@
|
|||||||
|
EESchema Schematic File Version 4
|
||||||
|
EELAYER 30 0
|
||||||
|
EELAYER END
|
||||||
|
$Descr A4 11693 8268
|
||||||
|
encoding utf-8
|
||||||
|
Sheet 1 1
|
||||||
|
Title ""
|
||||||
|
Date ""
|
||||||
|
Rev ""
|
||||||
|
Comp ""
|
||||||
|
Comment1 ""
|
||||||
|
Comment2 ""
|
||||||
|
Comment3 ""
|
||||||
|
Comment4 ""
|
||||||
|
$EndDescr
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D1
|
||||||
|
U 1 1 5FFCBFAD
|
||||||
|
P 1250 1750
|
||||||
|
F 0 "D1" H 1594 1796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 1594 1705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 1300 1450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 1350 1375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 1250 1750 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 1750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D2
|
||||||
|
U 1 1 5FFCC435
|
||||||
|
P 1250 3250
|
||||||
|
F 0 "D2" H 1594 3296 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 1594 3205 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 1300 2950 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 1350 2875 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 1250 3250 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 3250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D3
|
||||||
|
U 1 1 5FFCD698
|
||||||
|
P 1250 4750
|
||||||
|
F 0 "D3" H 1594 4796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 1594 4705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 1300 4450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 1350 4375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 1250 4750 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 4750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D7
|
||||||
|
U 1 1 5FFCDCA6
|
||||||
|
P 2250 4750
|
||||||
|
F 0 "D7" H 2594 4796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 2594 4705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 2300 4450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 2350 4375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 2250 4750 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 4750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D5
|
||||||
|
U 1 1 5FFCE73E
|
||||||
|
P 2250 1750
|
||||||
|
F 0 "D5" H 2594 1796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 2594 1705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 2300 1450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 2350 1375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 2250 1750 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 1750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D6
|
||||||
|
U 1 1 5FFD3021
|
||||||
|
P 2250 3250
|
||||||
|
F 0 "D6" H 2594 3296 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 2594 3205 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 2300 2950 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 2350 2875 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 2250 3250 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 3250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R1
|
||||||
|
U 1 1 5FFE200D
|
||||||
|
P 1250 1250
|
||||||
|
F 0 "R1" H 1320 1296 50 0000 L CNN
|
||||||
|
F 1 "47" H 1320 1205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1180 1250 50 0001 C CNN
|
||||||
|
F 3 "~" H 1250 1250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1250 1250 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 1250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R2
|
||||||
|
U 1 1 5FFE2BB1
|
||||||
|
P 1250 2750
|
||||||
|
F 0 "R2" H 1320 2796 50 0000 L CNN
|
||||||
|
F 1 "47" H 1320 2705 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1180 2750 50 0001 C CNN
|
||||||
|
F 3 "~" H 1250 2750 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1250 2750 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 2750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R3
|
||||||
|
U 1 1 5FFE331C
|
||||||
|
P 1250 4250
|
||||||
|
F 0 "R3" H 1320 4296 50 0000 L CNN
|
||||||
|
F 1 "47" H 1320 4205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1180 4250 50 0001 C CNN
|
||||||
|
F 3 "~" H 1250 4250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1250 4250 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 4250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R5
|
||||||
|
U 1 1 5FFE3F06
|
||||||
|
P 2250 1250
|
||||||
|
F 0 "R5" H 2320 1296 50 0000 L CNN
|
||||||
|
F 1 "47" H 2320 1205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 2180 1250 50 0001 C CNN
|
||||||
|
F 3 "~" H 2250 1250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 2250 1250 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 1250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R6
|
||||||
|
U 1 1 5FFE449E
|
||||||
|
P 2250 2750
|
||||||
|
F 0 "R6" H 2320 2796 50 0000 L CNN
|
||||||
|
F 1 "47" H 2320 2705 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 2180 2750 50 0001 C CNN
|
||||||
|
F 3 "~" H 2250 2750 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 2250 2750 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 2750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R7
|
||||||
|
U 1 1 5FFE501F
|
||||||
|
P 2250 4250
|
||||||
|
F 0 "R7" H 2320 4296 50 0000 L CNN
|
||||||
|
F 1 "47" H 2320 4205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 2180 4250 50 0001 C CNN
|
||||||
|
F 3 "~" H 2250 4250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 2250 4250 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 4250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Wire Wire Line
|
||||||
|
2250 4400 2250 4450
|
||||||
|
Wire Wire Line
|
||||||
|
2250 2900 2250 2950
|
||||||
|
Wire Wire Line
|
||||||
|
2250 1400 2250 1450
|
||||||
|
Wire Wire Line
|
||||||
|
1250 1400 1250 1450
|
||||||
|
Wire Wire Line
|
||||||
|
1250 2900 1250 2950
|
||||||
|
Wire Wire Line
|
||||||
|
1250 4400 1250 4450
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0101
|
||||||
|
U 1 1 60019584
|
||||||
|
P 1250 4050
|
||||||
|
F 0 "#PWR0101" H 1250 3900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1265 4223 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 4050 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 4050 50 0001 C CNN
|
||||||
|
1 1250 4050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0102
|
||||||
|
U 1 1 6001B24B
|
||||||
|
P 1250 2550
|
||||||
|
F 0 "#PWR0102" H 1250 2400 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1265 2723 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 2550 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 2550 50 0001 C CNN
|
||||||
|
1 1250 2550
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0103
|
||||||
|
U 1 1 6001B4E6
|
||||||
|
P 1250 1050
|
||||||
|
F 0 "#PWR0103" H 1250 900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1265 1223 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 1050 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 1050 50 0001 C CNN
|
||||||
|
1 1250 1050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0105
|
||||||
|
U 1 1 6001E52A
|
||||||
|
P 2250 1050
|
||||||
|
F 0 "#PWR0105" H 2250 900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 2265 1223 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 1050 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 1050 50 0001 C CNN
|
||||||
|
1 2250 1050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0106
|
||||||
|
U 1 1 6001EDD7
|
||||||
|
P 2250 2550
|
||||||
|
F 0 "#PWR0106" H 2250 2400 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 2265 2723 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 2550 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 2550 50 0001 C CNN
|
||||||
|
1 2250 2550
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0107
|
||||||
|
U 1 1 6001F911
|
||||||
|
P 2250 4050
|
||||||
|
F 0 "#PWR0107" H 2250 3900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 2265 4223 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 4050 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 4050 50 0001 C CNN
|
||||||
|
1 2250 4050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0108
|
||||||
|
U 1 1 6002025F
|
||||||
|
P 2250 3600
|
||||||
|
F 0 "#PWR0108" H 2250 3350 50 0001 C CNN
|
||||||
|
F 1 "GND" H 2255 3427 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 3600 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 3600 50 0001 C CNN
|
||||||
|
1 2250 3600
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0109
|
||||||
|
U 1 1 60020A98
|
||||||
|
P 2250 5100
|
||||||
|
F 0 "#PWR0109" H 2250 4850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 2255 4927 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 5100 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 5100 50 0001 C CNN
|
||||||
|
1 2250 5100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0110
|
||||||
|
U 1 1 60021AA1
|
||||||
|
P 2250 2100
|
||||||
|
F 0 "#PWR0110" H 2250 1850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 2255 1927 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 2100 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 2100 50 0001 C CNN
|
||||||
|
1 2250 2100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0112
|
||||||
|
U 1 1 600275D1
|
||||||
|
P 1250 5100
|
||||||
|
F 0 "#PWR0112" H 1250 4850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1255 4927 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 5100 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 5100 50 0001 C CNN
|
||||||
|
1 1250 5100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0113
|
||||||
|
U 1 1 60027C1F
|
||||||
|
P 1250 3600
|
||||||
|
F 0 "#PWR0113" H 1250 3350 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1255 3427 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 3600 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 3600 50 0001 C CNN
|
||||||
|
1 1250 3600
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0114
|
||||||
|
U 1 1 60028061
|
||||||
|
P 1250 2100
|
||||||
|
F 0 "#PWR0114" H 1250 1850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1255 1927 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 2100 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 2100 50 0001 C CNN
|
||||||
|
1 1250 2100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Wire Wire Line
|
||||||
|
1250 2050 1250 2100
|
||||||
|
Wire Wire Line
|
||||||
|
1250 1050 1250 1100
|
||||||
|
Wire Wire Line
|
||||||
|
1250 2550 1250 2600
|
||||||
|
Wire Wire Line
|
||||||
|
1250 3550 1250 3600
|
||||||
|
Wire Wire Line
|
||||||
|
1250 4050 1250 4100
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5050 1250 5100
|
||||||
|
Wire Wire Line
|
||||||
|
2250 5050 2250 5100
|
||||||
|
Wire Wire Line
|
||||||
|
2250 4100 2250 4050
|
||||||
|
Wire Wire Line
|
||||||
|
2250 3550 2250 3600
|
||||||
|
Wire Wire Line
|
||||||
|
2250 2550 2250 2600
|
||||||
|
Wire Wire Line
|
||||||
|
2250 2050 2250 2100
|
||||||
|
Wire Wire Line
|
||||||
|
2250 1050 2250 1100
|
||||||
|
Wire Wire Line
|
||||||
|
1550 1750 1600 1750
|
||||||
|
Wire Wire Line
|
||||||
|
1600 1750 1600 2300
|
||||||
|
Wire Wire Line
|
||||||
|
1600 2300 900 2300
|
||||||
|
Wire Wire Line
|
||||||
|
900 2300 900 3250
|
||||||
|
Wire Wire Line
|
||||||
|
900 3250 950 3250
|
||||||
|
Wire Wire Line
|
||||||
|
1550 3250 1600 3250
|
||||||
|
Wire Wire Line
|
||||||
|
1600 3250 1600 3800
|
||||||
|
Wire Wire Line
|
||||||
|
1600 3800 900 3800
|
||||||
|
Wire Wire Line
|
||||||
|
900 3800 900 4750
|
||||||
|
Wire Wire Line
|
||||||
|
900 4750 950 4750
|
||||||
|
Wire Wire Line
|
||||||
|
2550 1750 2600 1750
|
||||||
|
Wire Wire Line
|
||||||
|
2600 1750 2600 2300
|
||||||
|
Wire Wire Line
|
||||||
|
2600 2300 1900 2300
|
||||||
|
Wire Wire Line
|
||||||
|
1900 2300 1900 3250
|
||||||
|
Wire Wire Line
|
||||||
|
1900 3250 1950 3250
|
||||||
|
Wire Wire Line
|
||||||
|
2550 3250 2600 3250
|
||||||
|
Wire Wire Line
|
||||||
|
2600 3250 2600 3800
|
||||||
|
Wire Wire Line
|
||||||
|
2600 3800 1900 3800
|
||||||
|
Wire Wire Line
|
||||||
|
1900 3800 1900 4750
|
||||||
|
Wire Wire Line
|
||||||
|
1900 4750 1950 4750
|
||||||
|
Text GLabel 950 1750 0 50 Input ~ 0
|
||||||
|
DATA
|
||||||
|
$Comp
|
||||||
|
L Connector:Conn_01x03_Male J1
|
||||||
|
U 1 1 5FFF2156
|
||||||
|
P 1050 5750
|
||||||
|
F 0 "J1" H 1158 6031 50 0000 C CNN
|
||||||
|
F 1 "Conn_01x03_Male" H 1158 5940 50 0000 C CNN
|
||||||
|
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1050 5750 50 0001 C CNN
|
||||||
|
F 3 "~" H 1050 5750 50 0001 C CNN
|
||||||
|
1 1050 5750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0115
|
||||||
|
U 1 1 5FFF405F
|
||||||
|
P 1350 5850
|
||||||
|
F 0 "#PWR0115" H 1350 5600 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1355 5677 50 0000 C CNN
|
||||||
|
F 2 "" H 1350 5850 50 0001 C CNN
|
||||||
|
F 3 "" H 1350 5850 50 0001 C CNN
|
||||||
|
1 1350 5850
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0116
|
||||||
|
U 1 1 5FFF43BB
|
||||||
|
P 1350 5650
|
||||||
|
F 0 "#PWR0116" H 1350 5500 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1365 5823 50 0000 C CNN
|
||||||
|
F 2 "" H 1350 5650 50 0001 C CNN
|
||||||
|
F 3 "" H 1350 5650 50 0001 C CNN
|
||||||
|
1 1350 5650
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Text GLabel 1350 5750 2 50 Input ~ 0
|
||||||
|
DATA
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5650 1350 5650
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5750 1350 5750
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5850 1350 5850
|
||||||
|
Wire Wire Line
|
||||||
|
1550 4750 1750 4750
|
||||||
|
Wire Wire Line
|
||||||
|
1750 1750 1950 1750
|
||||||
|
$Comp
|
||||||
|
L Device:R R4
|
||||||
|
U 1 1 6003042A
|
||||||
|
P 1750 3250
|
||||||
|
F 0 "R4" H 1820 3296 50 0000 L CNN
|
||||||
|
F 1 "0" H 1820 3205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1680 3250 50 0001 C CNN
|
||||||
|
F 3 "~" H 1750 3250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1750 3250 50 0001 C CNN "LCSC"
|
||||||
|
1 1750 3250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Wire Wire Line
|
||||||
|
1750 3400 1750 4750
|
||||||
|
Wire Wire Line
|
||||||
|
1750 1750 1750 3100
|
||||||
|
$EndSCHEMATC
|
||||||
431
pcb/wastebin-notifier/wastebin-notifier.sch-bak
Normal file
431
pcb/wastebin-notifier/wastebin-notifier.sch-bak
Normal file
@ -0,0 +1,431 @@
|
|||||||
|
EESchema Schematic File Version 4
|
||||||
|
EELAYER 30 0
|
||||||
|
EELAYER END
|
||||||
|
$Descr A4 11693 8268
|
||||||
|
encoding utf-8
|
||||||
|
Sheet 1 1
|
||||||
|
Title ""
|
||||||
|
Date ""
|
||||||
|
Rev ""
|
||||||
|
Comp ""
|
||||||
|
Comment1 ""
|
||||||
|
Comment2 ""
|
||||||
|
Comment3 ""
|
||||||
|
Comment4 ""
|
||||||
|
$EndDescr
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D1
|
||||||
|
U 1 1 5FFCBFAD
|
||||||
|
P 1250 1750
|
||||||
|
F 0 "D1" H 1594 1796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 1594 1705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 1300 1450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 1350 1375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 1250 1750 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 1750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D2
|
||||||
|
U 1 1 5FFCC435
|
||||||
|
P 1250 3250
|
||||||
|
F 0 "D2" H 1594 3296 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 1594 3205 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 1300 2950 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 1350 2875 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 1250 3250 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 3250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D3
|
||||||
|
U 1 1 5FFCD698
|
||||||
|
P 1250 4750
|
||||||
|
F 0 "D3" H 1594 4796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 1594 4705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 1300 4450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 1350 4375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 1250 4750 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 4750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D7
|
||||||
|
U 1 1 5FFCDCA6
|
||||||
|
P 2250 4750
|
||||||
|
F 0 "D7" H 2594 4796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 2594 4705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 2300 4450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 2350 4375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 2250 4750 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 4750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D5
|
||||||
|
U 1 1 5FFCE73E
|
||||||
|
P 2250 1750
|
||||||
|
F 0 "D5" H 2594 1796 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 2594 1705 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 2300 1450 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 2350 1375 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 2250 1750 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 1750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L LED:WS2812B D6
|
||||||
|
U 1 1 5FFD3021
|
||||||
|
P 2250 3250
|
||||||
|
F 0 "D6" H 2594 3296 50 0000 L CNN
|
||||||
|
F 1 "WS2812B" H 2594 3205 50 0000 L CNN
|
||||||
|
F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 2300 2950 50 0001 L TNN
|
||||||
|
F 3 "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" H 2350 2875 50 0001 L TNN
|
||||||
|
F 4 "C114586" H 2250 3250 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 3250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R1
|
||||||
|
U 1 1 5FFE200D
|
||||||
|
P 1250 1250
|
||||||
|
F 0 "R1" H 1320 1296 50 0000 L CNN
|
||||||
|
F 1 "47" H 1320 1205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1180 1250 50 0001 C CNN
|
||||||
|
F 3 "~" H 1250 1250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1250 1250 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 1250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R2
|
||||||
|
U 1 1 5FFE2BB1
|
||||||
|
P 1250 2750
|
||||||
|
F 0 "R2" H 1320 2796 50 0000 L CNN
|
||||||
|
F 1 "47" H 1320 2705 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1180 2750 50 0001 C CNN
|
||||||
|
F 3 "~" H 1250 2750 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1250 2750 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 2750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R3
|
||||||
|
U 1 1 5FFE331C
|
||||||
|
P 1250 4250
|
||||||
|
F 0 "R3" H 1320 4296 50 0000 L CNN
|
||||||
|
F 1 "47" H 1320 4205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1180 4250 50 0001 C CNN
|
||||||
|
F 3 "~" H 1250 4250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1250 4250 50 0001 C CNN "LCSC"
|
||||||
|
1 1250 4250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R5
|
||||||
|
U 1 1 5FFE3F06
|
||||||
|
P 2250 1250
|
||||||
|
F 0 "R5" H 2320 1296 50 0000 L CNN
|
||||||
|
F 1 "47" H 2320 1205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 2180 1250 50 0001 C CNN
|
||||||
|
F 3 "~" H 2250 1250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 2250 1250 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 1250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R6
|
||||||
|
U 1 1 5FFE449E
|
||||||
|
P 2250 2750
|
||||||
|
F 0 "R6" H 2320 2796 50 0000 L CNN
|
||||||
|
F 1 "47" H 2320 2705 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 2180 2750 50 0001 C CNN
|
||||||
|
F 3 "~" H 2250 2750 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 2250 2750 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 2750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L Device:R R7
|
||||||
|
U 1 1 5FFE501F
|
||||||
|
P 2250 4250
|
||||||
|
F 0 "R7" H 2320 4296 50 0000 L CNN
|
||||||
|
F 1 "47" H 2320 4205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 2180 4250 50 0001 C CNN
|
||||||
|
F 3 "~" H 2250 4250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 2250 4250 50 0001 C CNN "LCSC"
|
||||||
|
1 2250 4250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Wire Wire Line
|
||||||
|
2250 4400 2250 4450
|
||||||
|
Wire Wire Line
|
||||||
|
2250 2900 2250 2950
|
||||||
|
Wire Wire Line
|
||||||
|
2250 1400 2250 1450
|
||||||
|
Wire Wire Line
|
||||||
|
1250 1400 1250 1450
|
||||||
|
Wire Wire Line
|
||||||
|
1250 2900 1250 2950
|
||||||
|
Wire Wire Line
|
||||||
|
1250 4400 1250 4450
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0101
|
||||||
|
U 1 1 60019584
|
||||||
|
P 1250 4050
|
||||||
|
F 0 "#PWR0101" H 1250 3900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1265 4223 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 4050 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 4050 50 0001 C CNN
|
||||||
|
1 1250 4050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0102
|
||||||
|
U 1 1 6001B24B
|
||||||
|
P 1250 2550
|
||||||
|
F 0 "#PWR0102" H 1250 2400 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1265 2723 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 2550 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 2550 50 0001 C CNN
|
||||||
|
1 1250 2550
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0103
|
||||||
|
U 1 1 6001B4E6
|
||||||
|
P 1250 1050
|
||||||
|
F 0 "#PWR0103" H 1250 900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1265 1223 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 1050 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 1050 50 0001 C CNN
|
||||||
|
1 1250 1050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0105
|
||||||
|
U 1 1 6001E52A
|
||||||
|
P 2250 1050
|
||||||
|
F 0 "#PWR0105" H 2250 900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 2265 1223 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 1050 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 1050 50 0001 C CNN
|
||||||
|
1 2250 1050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0106
|
||||||
|
U 1 1 6001EDD7
|
||||||
|
P 2250 2550
|
||||||
|
F 0 "#PWR0106" H 2250 2400 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 2265 2723 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 2550 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 2550 50 0001 C CNN
|
||||||
|
1 2250 2550
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0107
|
||||||
|
U 1 1 6001F911
|
||||||
|
P 2250 4050
|
||||||
|
F 0 "#PWR0107" H 2250 3900 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 2265 4223 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 4050 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 4050 50 0001 C CNN
|
||||||
|
1 2250 4050
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0108
|
||||||
|
U 1 1 6002025F
|
||||||
|
P 2250 3600
|
||||||
|
F 0 "#PWR0108" H 2250 3350 50 0001 C CNN
|
||||||
|
F 1 "GND" H 2255 3427 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 3600 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 3600 50 0001 C CNN
|
||||||
|
1 2250 3600
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0109
|
||||||
|
U 1 1 60020A98
|
||||||
|
P 2250 5100
|
||||||
|
F 0 "#PWR0109" H 2250 4850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 2255 4927 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 5100 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 5100 50 0001 C CNN
|
||||||
|
1 2250 5100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0110
|
||||||
|
U 1 1 60021AA1
|
||||||
|
P 2250 2100
|
||||||
|
F 0 "#PWR0110" H 2250 1850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 2255 1927 50 0000 C CNN
|
||||||
|
F 2 "" H 2250 2100 50 0001 C CNN
|
||||||
|
F 3 "" H 2250 2100 50 0001 C CNN
|
||||||
|
1 2250 2100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0112
|
||||||
|
U 1 1 600275D1
|
||||||
|
P 1250 5100
|
||||||
|
F 0 "#PWR0112" H 1250 4850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1255 4927 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 5100 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 5100 50 0001 C CNN
|
||||||
|
1 1250 5100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0113
|
||||||
|
U 1 1 60027C1F
|
||||||
|
P 1250 3600
|
||||||
|
F 0 "#PWR0113" H 1250 3350 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1255 3427 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 3600 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 3600 50 0001 C CNN
|
||||||
|
1 1250 3600
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0114
|
||||||
|
U 1 1 60028061
|
||||||
|
P 1250 2100
|
||||||
|
F 0 "#PWR0114" H 1250 1850 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1255 1927 50 0000 C CNN
|
||||||
|
F 2 "" H 1250 2100 50 0001 C CNN
|
||||||
|
F 3 "" H 1250 2100 50 0001 C CNN
|
||||||
|
1 1250 2100
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Wire Wire Line
|
||||||
|
1250 2050 1250 2100
|
||||||
|
Wire Wire Line
|
||||||
|
1250 1050 1250 1100
|
||||||
|
Wire Wire Line
|
||||||
|
1250 2550 1250 2600
|
||||||
|
Wire Wire Line
|
||||||
|
1250 3550 1250 3600
|
||||||
|
Wire Wire Line
|
||||||
|
1250 4050 1250 4100
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5050 1250 5100
|
||||||
|
Wire Wire Line
|
||||||
|
2250 5050 2250 5100
|
||||||
|
Wire Wire Line
|
||||||
|
2250 4100 2250 4050
|
||||||
|
Wire Wire Line
|
||||||
|
2250 3550 2250 3600
|
||||||
|
Wire Wire Line
|
||||||
|
2250 2550 2250 2600
|
||||||
|
Wire Wire Line
|
||||||
|
2250 2050 2250 2100
|
||||||
|
Wire Wire Line
|
||||||
|
2250 1050 2250 1100
|
||||||
|
Wire Wire Line
|
||||||
|
1550 1750 1600 1750
|
||||||
|
Wire Wire Line
|
||||||
|
1600 1750 1600 2300
|
||||||
|
Wire Wire Line
|
||||||
|
1600 2300 900 2300
|
||||||
|
Wire Wire Line
|
||||||
|
900 2300 900 3250
|
||||||
|
Wire Wire Line
|
||||||
|
900 3250 950 3250
|
||||||
|
Wire Wire Line
|
||||||
|
1550 3250 1600 3250
|
||||||
|
Wire Wire Line
|
||||||
|
1600 3250 1600 3800
|
||||||
|
Wire Wire Line
|
||||||
|
1600 3800 900 3800
|
||||||
|
Wire Wire Line
|
||||||
|
900 3800 900 4750
|
||||||
|
Wire Wire Line
|
||||||
|
900 4750 950 4750
|
||||||
|
Wire Wire Line
|
||||||
|
2550 1750 2600 1750
|
||||||
|
Wire Wire Line
|
||||||
|
2600 1750 2600 2300
|
||||||
|
Wire Wire Line
|
||||||
|
2600 2300 1900 2300
|
||||||
|
Wire Wire Line
|
||||||
|
1900 2300 1900 3250
|
||||||
|
Wire Wire Line
|
||||||
|
1900 3250 1950 3250
|
||||||
|
Wire Wire Line
|
||||||
|
2550 3250 2600 3250
|
||||||
|
Wire Wire Line
|
||||||
|
2600 3250 2600 3800
|
||||||
|
Wire Wire Line
|
||||||
|
2600 3800 1900 3800
|
||||||
|
Wire Wire Line
|
||||||
|
1900 3800 1900 4750
|
||||||
|
Wire Wire Line
|
||||||
|
1900 4750 1950 4750
|
||||||
|
Text GLabel 950 1750 0 50 Input ~ 0
|
||||||
|
DATA
|
||||||
|
$Comp
|
||||||
|
L Connector:Conn_01x03_Male J1
|
||||||
|
U 1 1 5FFF2156
|
||||||
|
P 1050 5750
|
||||||
|
F 0 "J1" H 1158 6031 50 0000 C CNN
|
||||||
|
F 1 "Conn_01x03_Male" H 1158 5940 50 0000 C CNN
|
||||||
|
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 1050 5750 50 0001 C CNN
|
||||||
|
F 3 "~" H 1050 5750 50 0001 C CNN
|
||||||
|
1 1050 5750
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:GND #PWR0115
|
||||||
|
U 1 1 5FFF405F
|
||||||
|
P 1350 5850
|
||||||
|
F 0 "#PWR0115" H 1350 5600 50 0001 C CNN
|
||||||
|
F 1 "GND" H 1355 5677 50 0000 C CNN
|
||||||
|
F 2 "" H 1350 5850 50 0001 C CNN
|
||||||
|
F 3 "" H 1350 5850 50 0001 C CNN
|
||||||
|
1 1350 5850
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
$Comp
|
||||||
|
L power:VCC #PWR0116
|
||||||
|
U 1 1 5FFF43BB
|
||||||
|
P 1350 5650
|
||||||
|
F 0 "#PWR0116" H 1350 5500 50 0001 C CNN
|
||||||
|
F 1 "VCC" H 1365 5823 50 0000 C CNN
|
||||||
|
F 2 "" H 1350 5650 50 0001 C CNN
|
||||||
|
F 3 "" H 1350 5650 50 0001 C CNN
|
||||||
|
1 1350 5650
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Text GLabel 1350 5750 2 50 Input ~ 0
|
||||||
|
DATA
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5650 1350 5650
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5750 1350 5750
|
||||||
|
Wire Wire Line
|
||||||
|
1250 5850 1350 5850
|
||||||
|
Wire Wire Line
|
||||||
|
1550 4750 1750 4750
|
||||||
|
Wire Wire Line
|
||||||
|
1750 1750 1950 1750
|
||||||
|
$Comp
|
||||||
|
L Device:R R7
|
||||||
|
U 1 1 6003042A
|
||||||
|
P 1750 3250
|
||||||
|
F 0 "R7" H 1820 3296 50 0000 L CNN
|
||||||
|
F 1 "0" H 1820 3205 50 0000 L CNN
|
||||||
|
F 2 "Resistor_SMD:R_0805_2012Metric" V 1680 3250 50 0001 C CNN
|
||||||
|
F 3 "~" H 1750 3250 50 0001 C CNN
|
||||||
|
F 4 "C17714" H 1750 3250 50 0001 C CNN "LCSC"
|
||||||
|
1 1750 3250
|
||||||
|
1 0 0 -1
|
||||||
|
$EndComp
|
||||||
|
Wire Wire Line
|
||||||
|
1750 3400 1750 4750
|
||||||
|
Wire Wire Line
|
||||||
|
1750 1750 1750 3100
|
||||||
|
$EndSCHEMATC
|
||||||
14
platformio.ini
Normal file
14
platformio.ini
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
; PlatformIO Project Configuration File
|
||||||
|
;
|
||||||
|
; Build options: build flags, source filter
|
||||||
|
; Upload options: custom upload port, speed and extra flags
|
||||||
|
; Library options: dependencies, extra library storages
|
||||||
|
; Advanced options: extra scripting
|
||||||
|
;
|
||||||
|
; Please visit documentation for the other options and examples
|
||||||
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
|
[env:d1_mini_pro]
|
||||||
|
platform = espressif8266
|
||||||
|
board = d1_mini_pro
|
||||||
|
framework = arduino
|
||||||
9
src/main.cpp
Normal file
9
src/main.cpp
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
// put your setup code here, to run once:
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// put your main code here, to run repeatedly:
|
||||||
|
}
|
||||||
15
src/main.h
Normal file
15
src/main.h
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#ifndef MAIN_H
|
||||||
|
#define MAIN_H
|
||||||
|
|
||||||
|
#define PIN_LEDSTRIP D2
|
||||||
|
#define PIN_SWITCH_DISABLE D4
|
||||||
|
#define PIN_SWITCH_ACTIVE D3
|
||||||
|
|
||||||
|
#define NUM_LEDS 5
|
||||||
|
#define BRIGHTNESS 127
|
||||||
|
#define LED_TYPE WS2811
|
||||||
|
#define COLOR_ORDER GRB
|
||||||
|
|
||||||
|
void display(CRGB color, bool blink);
|
||||||
|
|
||||||
|
#endif
|
||||||
11
test/README
Normal file
11
test/README
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
This directory is intended for PlatformIO Unit Testing and project tests.
|
||||||
|
|
||||||
|
Unit Testing is a software testing method by which individual units of
|
||||||
|
source code, sets of one or more MCU program modules together with associated
|
||||||
|
control data, usage procedures, and operating procedures, are tested to
|
||||||
|
determine whether they are fit for use. Unit testing finds problems early
|
||||||
|
in the development cycle.
|
||||||
|
|
||||||
|
More information about PlatformIO Unit Testing:
|
||||||
|
- https://docs.platformio.org/page/plus/unit-testing.html
|
||||||
Loading…
Reference in New Issue
Block a user