first commit

master
simon 2019-08-01 00:10:13 +02:00
commit 6bdf750c62
54 changed files with 21654 additions and 0 deletions

View File

@ -0,0 +1,48 @@
//use <mendel_misc.inc>
//use <parametric_involute_gear_v5.0.scad>
$fn=50; //100
h = 20;
//motor-rad
//color("blue")
union(){
difference(){
union(){
translate([0, 0, 0]) cylinder (h+1.5,35,35); //platform zylinder
// translate([0, 0, 50]) cube ([60,5,6]); //Motorwelle
}
//translate([0, 0, 2]) cylinder (20,33,33,$fn=8); //ausschnitt glas 8eck
translate([0, 0, 2]) cylinder (22,31.5,31.5); //platform zylinder
translate([0, 0, 16]) cylinder (4,33,33); //dichtring
//color("blue") translate([-10.5, 6, 2]) cube ([21,26,4]); //Charger module
//color("blue") translate([-10.5, 6, 6]) cube ([21,20,2]); //Charger space
//color("blue") translate([-10.5, 6, 6]) cube ([21,12,4]); //Charger space
//color("blue") translate([-4.5, 30, 2]) cube ([9,5.5,4]); //Charger usb
//color("red") translate([26-14-2, 18, h-6-11]) cube ([14,6,11]); //Power-Switch
//color("black") translate([24, 10, 3]) cube ([2,10,11]); //Power-Switch-cable
//color("red") translate([26-14-2, 16, 14-6]) cube ([14,2,2]);//Power-Switch-cable
//color("yellow") translate([-10, -10-8, 4]) cube ([20,24,15]); //WLAN module
//lipo 50x35x3
// translate([-26, -18, h-6-5]) cube ([52,36,5]); //AKKU
// color("red") translate([-5, -25, h-6-5]) cube ([10,6,5]); //LED
// color("red") translate([-5, 19, h-6-5]) cube ([10,6,5]); //LED
// color("red") translate([-2, -25, h-6-5-2]) cube ([4,50,2]); //LED kabel
}
// color("red") translate([-3, 18, 2]) cube ([6,1,6]); //support
// color("black") translate([-1, 27, 2]) cube ([1,7,6]); //support
// color("black") translate([10, 19, 3]) cube ([1,4,6]); //support
}

66
Artnet/ola_recv_dmx.py Executable file
View File

@ -0,0 +1,66 @@
#!/usr/bin/env python
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# ola_recv_dmx.py
# Copyright (C) 2005 Simon Newton
"""Receive DMX data."""
import getopt
import textwrap
import sys
from ola.ClientWrapper import ClientWrapper
__author__ = 'nomis52@gmail.com (Simon Newton)'
def NewData(data):
print(data)
def Usage():
print(textwrap.dedent("""
Usage: ola_recv_dmx.py --universe <universe>
Display the DXM512 data for the universe.
-h, --help Display this help message and exit.
-u, --universe <universe> Universe number."""))
def main():
try:
opts, args = getopt.getopt(sys.argv[1:], "hu:", ["help", "universe="])
except getopt.GetoptError as err:
print(str(err))
Usage()
sys.exit(2)
universe = 1
for o, a in opts:
if o in ("-h", "--help"):
Usage()
sys.exit()
elif o in ("-u", "--universe"):
universe = int(a)
wrapper = ClientWrapper()
client = wrapper.Client()
client.RegisterUniverse(universe, client.REGISTER, NewData)
wrapper.Run()
if __name__ == "__main__":
main()

39
Artnet/send-DMX.py Normal file
View File

@ -0,0 +1,39 @@
#zeile aufnehmen und an glaeser senden
#python ola_recv_dmx.py | grep array
#python ola_recv_dmx.py | python send-DMX.py
import sys
import os
i = 1
line = sys.stdin.readline()
while line:
line = sys.stdin.readline()
data = line.split("[")[1]
ch1 = int(data.split(", ")[0])
ch2 = int(data.split(", ")[1])
ch3 = int(data.split(", ")[2])
ch4 = int(data.split(", ")[3])
ch5 = int(data.split(", ")[4])
ch6 = int(data.split(", ")[5])
print (ch1,ch2,ch3,ch4,ch5,ch6)
# echo -n "170000070150000050" >/dev/udp/172.23.92.16/31302
if i == 1:
# 172.23.92.16 ist Lounge, 172.23.92.19 ist flur
cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.16/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# print cmd
os.system(cmd)
cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.19/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
os.system(cmd)
os.system(cmd)
cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.114/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
os.system(cmd)
cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.202/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
os.system(cmd)
i = i+1
if i > 5:
i = 0

View File

@ -0,0 +1,65 @@
#zeile aufnehmen und an glaeser senden
#python ola_recv_dmx.py | grep array
#python ola_recv_dmx.py | python send-DMX.py
#python ola_recv_dmx.py | python3 send-DMX_Arduino.py
import sys
import os
import struct
import socket
UDP_IP = "172.23.92.15"
UDP_PORT = 49152
sock = socket.socket(socket.AF_INET, # Internet
socket.SOCK_DGRAM) # UDP
i = 1
line = sys.stdin.readline()
while line:
line = sys.stdin.readline()
data = line.split("[")[1]
ch1 = int(data.split(", ")[0])
ch2 = int(data.split(", ")[1])
ch3 = int(data.split(", ")[2])
ch4 = int(data.split(", ")[3])
ch5 = int(data.split(", ")[4])
ch6 = int(data.split(", ")[5])
print (ch1,ch2,ch3,ch4,ch5,ch6)
# echo -n "170000070150000050" >/dev/udp/172.23.92.16/31302
if (i == 1 or i == 6 or i == 11 or i == 16):
# 172.23.92.16 ist Lounge, 172.23.92.19 ist flur
cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.16/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
os.system(cmd)
# 172.23.92.19 ist flur
cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.19/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
os.system(cmd)
os.system(cmd)
# gläser
# cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.114/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# os.system(cmd)
# cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/192.168.1.202/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# os.system(cmd)
# cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.154/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# os.system(cmd)
# cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.153/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# os.system(cmd)
# cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.185/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# os.system(cmd)
# neue gläser
# cmd="/bin/bash -c \"echo -n \"%03i%03i%03i%03i%03i%03i\" >/dev/udp/172.23.92.191/31302\"" %(ch1,ch2,ch3,ch4,ch5,ch6)
# os.system(cmd)
# Fensterbogenbeleuchtung
if i == 20:
data = [ch2,ch1,ch3]*116
sock.sendto(b'r' + struct.pack(">H", len(data) + 2) + b'\x00\x00' + bytes(data), (UDP_IP, UDP_PORT))
i = i+1
if i > 20:
i = 0

3
Glas/fp-lib-table Normal file
View File

@ -0,0 +1,3 @@
(fp_lib_table
(lib (name receive_v1_1)(type KiCad)(uri "$(KIPRJMOD)/receive_v1_1.pretty")(options "")(descr ""))
)

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00*
G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Soldermask,Bot*
G04 #@! TF.FilePolarity,Negative*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00*
G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Paste,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00*
G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Legend,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,20 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00*
G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Profile,NP*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,0.152400*%
G04 APERTURE END LIST*
D10*
X148266050Y-104897000D02*
G75*
G03X148266050Y-104897000I-30480000J0D01*
G01*
M02*

View File

@ -0,0 +1,234 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00*
G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Soldermask,Top*
G04 #@! TF.FilePolarity,Negative*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10R,2.006200X1.803200*%
%ADD11R,1.400000X1.400000*%
%ADD12R,1.503200X1.703200*%
%ADD13R,1.403200X1.403200*%
%ADD14R,1.803200X2.003200*%
%ADD15R,1.403200X0.753200*%
%ADD16R,2.003200X1.803200*%
%ADD17R,1.703200X1.503200*%
%ADD18R,1.703200X1.203200*%
%ADD19R,2.400000X2.400000*%
%ADD20R,1.403200X1.203200*%
%ADD21R,1.983200X2.363200*%
%ADD22R,0.803200X1.003200*%
%ADD23R,1.803200X2.903200*%
%ADD24R,3.203200X5.203200*%
%ADD25R,1.803200X2.006200*%
%ADD26R,2.603200X2.603200*%
G04 APERTURE END LIST*
D10*
G04 #@! TO.C,R4*
X139700000Y-93497000D03*
X139700000Y-90653000D03*
G04 #@! TD*
G04 #@! TO.C,R11*
X133096000Y-99416000D03*
X133096000Y-102260000D03*
G04 #@! TD*
D11*
G04 #@! TO.C,TP8*
X135890000Y-93218000D03*
G04 #@! TD*
G04 #@! TO.C,TP7*
X128524000Y-102362000D03*
G04 #@! TD*
D10*
G04 #@! TO.C,R10*
X120015000Y-95774599D03*
X120015000Y-98618599D03*
G04 #@! TD*
D12*
G04 #@! TO.C,R2*
X113096000Y-106681065D03*
X114996000Y-106681065D03*
G04 #@! TD*
D13*
G04 #@! TO.C,LED1*
X108517259Y-106681065D03*
X110617259Y-106681065D03*
G04 #@! TD*
D14*
G04 #@! TO.C,C2*
X113795000Y-97155000D03*
X110995000Y-97155000D03*
G04 #@! TD*
D15*
G04 #@! TO.C,IC1*
X111276375Y-104009509D03*
X111276375Y-102109509D03*
X113876375Y-102109509D03*
X113876375Y-103059509D03*
X113876375Y-104009509D03*
G04 #@! TD*
D16*
G04 #@! TO.C,C3*
X117187259Y-104271065D03*
X117187259Y-101471065D03*
G04 #@! TD*
D12*
G04 #@! TO.C,C4*
X111445000Y-99695000D03*
X113345000Y-99695000D03*
G04 #@! TD*
D17*
G04 #@! TO.C,R1*
X108585000Y-104455000D03*
X108585000Y-102555000D03*
G04 #@! TD*
D10*
G04 #@! TO.C,R3*
X123190000Y-98618599D03*
X123190000Y-95774599D03*
G04 #@! TD*
D18*
G04 #@! TO.C,U$1*
X124160000Y-92200000D03*
X124160000Y-90200000D03*
X124160000Y-88200000D03*
X124160000Y-86200000D03*
X124160000Y-84200000D03*
X124160000Y-82200000D03*
X124160000Y-80200000D03*
X111560000Y-92200000D03*
X111560000Y-90200000D03*
X111560000Y-88200000D03*
X111560000Y-86200000D03*
X111560000Y-84200000D03*
X111560000Y-82200000D03*
X111560000Y-80200000D03*
G04 #@! TD*
D19*
G04 #@! TO.C,TP4*
X106680000Y-92710000D03*
G04 #@! TD*
G04 #@! TO.C,TP6*
X129540000Y-88900000D03*
G04 #@! TD*
G04 #@! TO.C,TP5*
X129540000Y-85090000D03*
G04 #@! TD*
G04 #@! TO.C,TP3*
X129540000Y-96520000D03*
G04 #@! TD*
G04 #@! TO.C,TP2*
X129540000Y-92710000D03*
G04 #@! TD*
G04 #@! TO.C,TP1*
X129540000Y-81280000D03*
G04 #@! TD*
D20*
G04 #@! TO.C,IC3*
X91603800Y-112293200D03*
X91603800Y-110693200D03*
X96203800Y-112293200D03*
X96203800Y-110693200D03*
X96203800Y-109093200D03*
G04 #@! TD*
D14*
G04 #@! TO.C,C1*
X91310000Y-105410000D03*
X94110000Y-105410000D03*
G04 #@! TD*
D12*
G04 #@! TO.C,C5*
X98347350Y-105316100D03*
X100247350Y-105316100D03*
G04 #@! TD*
D21*
G04 #@! TO.C,D1*
X93210000Y-92710000D03*
X97280000Y-92710000D03*
G04 #@! TD*
D20*
G04 #@! TO.C,IC2*
X143905000Y-96520200D03*
X143905000Y-98120200D03*
X139305000Y-96520200D03*
X139305000Y-98120200D03*
X139305000Y-99720200D03*
G04 #@! TD*
D22*
G04 #@! TO.C,D2*
X107188000Y-81514000D03*
X107188000Y-79014000D03*
G04 #@! TD*
D12*
G04 #@! TO.C,R5*
X100015000Y-90805000D03*
X101915000Y-90805000D03*
G04 #@! TD*
D17*
G04 #@! TO.C,R6*
X107630000Y-84140000D03*
X107630000Y-86040000D03*
G04 #@! TD*
G04 #@! TO.C,C6*
X101600000Y-93980000D03*
X101600000Y-95880000D03*
G04 #@! TD*
D22*
G04 #@! TO.C,D3*
X109030000Y-81450000D03*
X109030000Y-78950000D03*
G04 #@! TD*
D17*
G04 #@! TO.C,C7*
X133350000Y-95565000D03*
X133350000Y-93665000D03*
G04 #@! TD*
D23*
G04 #@! TO.C,C8*
X100962000Y-82804000D03*
X103762000Y-82804000D03*
G04 #@! TD*
D12*
G04 #@! TO.C,R7*
X96520000Y-88900000D03*
X94620000Y-88900000D03*
G04 #@! TD*
D24*
G04 #@! TO.C,X1*
X121444000Y-105918000D03*
X125444000Y-105918000D03*
G04 #@! TD*
D25*
G04 #@! TO.C,R8*
X104292000Y-111125000D03*
X101448000Y-111125000D03*
G04 #@! TD*
G04 #@! TO.C,R9*
X104927000Y-87630000D03*
X102083000Y-87630000D03*
G04 #@! TD*
D16*
G04 #@! TO.C,C9*
X104775000Y-101095000D03*
X104775000Y-98295000D03*
G04 #@! TD*
G04 #@! TO.C,C10*
X101600000Y-98295000D03*
X101600000Y-101095000D03*
G04 #@! TD*
D26*
G04 #@! TO.C,D4*
X97790000Y-101260000D03*
X97790000Y-96860000D03*
G04 #@! TD*
G04 #@! TO.C,D5*
X92710000Y-96860000D03*
X92710000Y-101260000D03*
G04 #@! TD*
M02*

View File

@ -0,0 +1,205 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.0+dfsg1-1~bpo9+1*
G04 #@! TF.CreationDate,2018-12-28T11:25:29+01:00*
G04 #@! TF.ProjectId,receive_v1_1,726563656976655F76315F312E6B6963,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Paste,Top*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW 5.0.0+dfsg1-1~bpo9+1) date Fri Dec 28 11:25:29 2018*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10R,1.803000X1.600000*%
%ADD11R,1.300000X1.500000*%
%ADD12R,1.200000X1.200000*%
%ADD13R,1.600000X1.800000*%
%ADD14R,1.200000X0.550000*%
%ADD15R,1.800000X1.600000*%
%ADD16R,1.500000X1.300000*%
%ADD17R,1.500000X1.000000*%
%ADD18R,1.200000X1.000000*%
%ADD19R,1.780000X2.160000*%
%ADD20R,0.600000X0.800000*%
%ADD21R,1.600000X2.700000*%
%ADD22R,3.000000X5.000000*%
%ADD23R,1.600000X1.803000*%
%ADD24R,2.400000X2.400000*%
G04 APERTURE END LIST*
D10*
G04 #@! TO.C,R4*
X139700000Y-93497000D03*
X139700000Y-90653000D03*
G04 #@! TD*
G04 #@! TO.C,R11*
X133096000Y-99416000D03*
X133096000Y-102260000D03*
G04 #@! TD*
G04 #@! TO.C,R10*
X120015000Y-95774599D03*
X120015000Y-98618599D03*
G04 #@! TD*
D11*
G04 #@! TO.C,R2*
X113096000Y-106681065D03*
X114996000Y-106681065D03*
G04 #@! TD*
D12*
G04 #@! TO.C,LED1*
X108517259Y-106681065D03*
X110617259Y-106681065D03*
G04 #@! TD*
D13*
G04 #@! TO.C,C2*
X113795000Y-97155000D03*
X110995000Y-97155000D03*
G04 #@! TD*
D14*
G04 #@! TO.C,IC1*
X111276375Y-104009509D03*
X111276375Y-102109509D03*
X113876375Y-102109509D03*
X113876375Y-103059509D03*
X113876375Y-104009509D03*
G04 #@! TD*
D15*
G04 #@! TO.C,C3*
X117187259Y-104271065D03*
X117187259Y-101471065D03*
G04 #@! TD*
D11*
G04 #@! TO.C,C4*
X111445000Y-99695000D03*
X113345000Y-99695000D03*
G04 #@! TD*
D16*
G04 #@! TO.C,R1*
X108585000Y-104455000D03*
X108585000Y-102555000D03*
G04 #@! TD*
D10*
G04 #@! TO.C,R3*
X123190000Y-98618599D03*
X123190000Y-95774599D03*
G04 #@! TD*
D17*
G04 #@! TO.C,U$1*
X124160000Y-92200000D03*
X124160000Y-90200000D03*
X124160000Y-88200000D03*
X124160000Y-86200000D03*
X124160000Y-84200000D03*
X124160000Y-82200000D03*
X124160000Y-80200000D03*
X111560000Y-92200000D03*
X111560000Y-90200000D03*
X111560000Y-88200000D03*
X111560000Y-86200000D03*
X111560000Y-84200000D03*
X111560000Y-82200000D03*
X111560000Y-80200000D03*
G04 #@! TD*
D18*
G04 #@! TO.C,IC3*
X91603800Y-112293200D03*
X91603800Y-110693200D03*
X96203800Y-112293200D03*
X96203800Y-110693200D03*
X96203800Y-109093200D03*
G04 #@! TD*
D13*
G04 #@! TO.C,C1*
X91310000Y-105410000D03*
X94110000Y-105410000D03*
G04 #@! TD*
D11*
G04 #@! TO.C,C5*
X98347350Y-105316100D03*
X100247350Y-105316100D03*
G04 #@! TD*
D19*
G04 #@! TO.C,D1*
X93210000Y-92710000D03*
X97280000Y-92710000D03*
G04 #@! TD*
D18*
G04 #@! TO.C,IC2*
X143905000Y-96520200D03*
X143905000Y-98120200D03*
X139305000Y-96520200D03*
X139305000Y-98120200D03*
X139305000Y-99720200D03*
G04 #@! TD*
D20*
G04 #@! TO.C,D2*
X107188000Y-81514000D03*
X107188000Y-79014000D03*
G04 #@! TD*
D11*
G04 #@! TO.C,R5*
X100015000Y-90805000D03*
X101915000Y-90805000D03*
G04 #@! TD*
D16*
G04 #@! TO.C,R6*
X107630000Y-84140000D03*
X107630000Y-86040000D03*
G04 #@! TD*
G04 #@! TO.C,C6*
X101600000Y-93980000D03*
X101600000Y-95880000D03*
G04 #@! TD*
D20*
G04 #@! TO.C,D3*
X109030000Y-81450000D03*
X109030000Y-78950000D03*
G04 #@! TD*
D16*
G04 #@! TO.C,C7*
X133350000Y-95565000D03*
X133350000Y-93665000D03*
G04 #@! TD*
D21*
G04 #@! TO.C,C8*
X100962000Y-82804000D03*
X103762000Y-82804000D03*
G04 #@! TD*
D11*
G04 #@! TO.C,R7*
X96520000Y-88900000D03*
X94620000Y-88900000D03*
G04 #@! TD*
D22*
G04 #@! TO.C,X1*
X121444000Y-105918000D03*
X125444000Y-105918000D03*
G04 #@! TD*
D23*
G04 #@! TO.C,R8*
X104292000Y-111125000D03*
X101448000Y-111125000D03*
G04 #@! TD*
G04 #@! TO.C,R9*
X104927000Y-87630000D03*
X102083000Y-87630000D03*
G04 #@! TD*
D15*
G04 #@! TO.C,C9*
X104775000Y-101095000D03*
X104775000Y-98295000D03*
G04 #@! TD*
G04 #@! TO.C,C10*
X101600000Y-98295000D03*
X101600000Y-101095000D03*
G04 #@! TD*
D24*
G04 #@! TO.C,D4*
X97790000Y-101260000D03*
X97790000Y-96860000D03*
G04 #@! TD*
G04 #@! TO.C,D5*
X92710000Y-96860000D03*
X92710000Y-101260000D03*
G04 #@! TD*
M02*

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,179 @@
%!PS-Adobe-3.0
%%Creator: PCBNEW
%%CreationDate: Fri Sep 14 22:35:38 2018
%%Title: /home/s/Dokumente/09_KiCad/glas/V1_1/gerber/receive_v1_1-NPTH-drl_map.ps
%%Pages: 1
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentMedia: A4 595 842 0 () ()
%%Orientation: Landscape
%%EndComments
%%BeginProlog
/line { newpath moveto lineto stroke } bind def
/cir0 { newpath 0 360 arc stroke } bind def
/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def
/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def
/arc0 { newpath arc stroke } bind def
/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/poly0 { stroke } bind def
/poly1 { closepath gsave fill grestore stroke } bind def
/poly2 { closepath gsave fill grestore stroke } bind def
/rect0 { rectstroke } bind def
/rect1 { rectfill } bind def
/rect2 { rectfill } bind def
/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def
/linemode1 { 1 setlinecap 1 setlinejoin } bind def
/dashedline { [200] 100 setdash } bind def
/solidline { [] 0 setdash } bind def
/phantomshow { moveto
/KicadFont findfont 0.000001 scalefont setfont
show } bind def
/textshow { gsave
findfont exch scalefont setfont concat 1 scale 0 0 moveto show
} bind def
/reencodefont {
findfont dup length dict begin
{ 1 index /FID ne
{ def }
{ pop pop } ifelse
} forall
/Encoding ISOLatin1Encoding def
currentdict
end } bind def
/KicadFont /Helvetica reencodefont definefont pop
/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop
/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop
/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
gsave
0.0072 0.0072 scale
linemode1
82680 0 translate 90 rotate
86.729 setlinewidth
%%EndPageSetup
0 0 0 setrgbcolor
104.075 setlinewidth
58465 57876 20815 cir0
78.7397 setlinewidth
118.111 setlinewidth
0 0 0 setrgbcolor
0 0 0 setrgbcolor
newpath
38725.7 35175.5 moveto
38725.7 36356.6 lineto
39006.9 36356.6 lineto
39175.6 36300.3 lineto
39288.1 36187.9 lineto
39344.4 36075.4 lineto
39400.6 35850.4 lineto
39400.6 35681.7 lineto
39344.4 35456.7 lineto
39288.1 35344.2 lineto
39175.6 35231.7 lineto
39006.9 35175.5 lineto
38725.7 35175.5 lineto
stroke
newpath
39906.8 35175.5 moveto
39906.8 35962.9 lineto
stroke
newpath
39906.8 35737.9 moveto
39963 35850.4 lineto
40019.3 35906.6 lineto
40131.8 35962.9 lineto
40244.2 35962.9 lineto
stroke
newpath
40637.9 35175.5 moveto
40637.9 35962.9 lineto
stroke
newpath
40637.9 36356.6 moveto
40581.7 36300.3 lineto
40637.9 36244.1 lineto
40694.2 36300.3 lineto
40637.9 36356.6 lineto
40637.9 36244.1 lineto
stroke
newpath
41369.1 35175.5 moveto
41256.6 35231.7 lineto
41200.4 35344.2 lineto
41200.4 36356.6 lineto
stroke
newpath
41987.8 35175.5 moveto
41875.3 35231.7 lineto
41819 35344.2 lineto
41819 36356.6 lineto
stroke
newpath
43337.6 35175.5 moveto
43337.6 36356.6 lineto
43731.3 35512.9 lineto
44125 36356.6 lineto
44125 35175.5 lineto
stroke
newpath
45193.6 35175.5 moveto
45193.6 35794.2 lineto
45137.4 35906.6 lineto
45024.9 35962.9 lineto
44799.9 35962.9 lineto
44687.4 35906.6 lineto
stroke
newpath
45193.6 35231.7 moveto
45081.1 35175.5 lineto
44799.9 35175.5 lineto
44687.4 35231.7 lineto
44631.2 35344.2 lineto
44631.2 35456.7 lineto
44687.4 35569.2 lineto
44799.9 35625.4 lineto
45081.1 35625.4 lineto
45193.6 35681.7 lineto
stroke
newpath
45756.1 35962.9 moveto
45756.1 34781.8 lineto
stroke
newpath
45756.1 35906.6 moveto
45868.5 35962.9 lineto
46093.5 35962.9 lineto
46206 35906.6 lineto
46262.2 35850.4 lineto
46318.5 35737.9 lineto
46318.5 35400.5 lineto
46262.2 35288 lineto
46206 35231.7 lineto
46093.5 35175.5 lineto
45868.5 35175.5 lineto
45756.1 35231.7 lineto
stroke
newpath
46824.7 35288 moveto
46880.9 35231.7 lineto
46824.7 35175.5 lineto
46768.4 35231.7 lineto
46824.7 35288 lineto
46824.7 35175.5 lineto
stroke
newpath
46824.7 35906.6 moveto
46880.9 35850.4 lineto
46824.7 35794.2 lineto
46768.4 35850.4 lineto
46824.7 35906.6 lineto
46824.7 35794.2 lineto
stroke
showpage
grestore
%%EOF

View File

@ -0,0 +1,11 @@
M48
;DRILL file {KiCad 5.0.0+dfsg1-1~bpo9+1} date Fri Dec 28 11:25:32 2018
;FORMAT={-:-/ absolute / inch / decimal}
FMAT,2
INCH,TZ
%
G90
G05
M72
T0
M30

View File

@ -0,0 +1,539 @@
%!PS-Adobe-3.0
%%Creator: PCBNEW
%%CreationDate: Fri Sep 14 22:35:38 2018
%%Title: /home/s/Dokumente/09_KiCad/glas/V1_1/gerber/receive_v1_1-PTH-drl_map.ps
%%Pages: 1
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentMedia: A4 595 842 0 () ()
%%Orientation: Landscape
%%EndComments
%%BeginProlog
/line { newpath moveto lineto stroke } bind def
/cir0 { newpath 0 360 arc stroke } bind def
/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def
/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def
/arc0 { newpath arc stroke } bind def
/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/poly0 { stroke } bind def
/poly1 { closepath gsave fill grestore stroke } bind def
/poly2 { closepath gsave fill grestore stroke } bind def
/rect0 { rectstroke } bind def
/rect1 { rectfill } bind def
/rect2 { rectfill } bind def
/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def
/linemode1 { 1 setlinecap 1 setlinejoin } bind def
/dashedline { [200] 100 setdash } bind def
/solidline { [] 0 setdash } bind def
/phantomshow { moveto
/KicadFont findfont 0.000001 scalefont setfont
show } bind def
/textshow { gsave
findfont exch scalefont setfont concat 1 scale 0 0 moveto show
} bind def
/reencodefont {
findfont dup length dict begin
{ 1 index /FID ne
{ def }
{ pop pop } ifelse
} forall
/Encoding ISOLatin1Encoding def
currentdict
end } bind def
/KicadFont /Helvetica reencodefont definefont pop
/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop
/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop
/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
gsave
0.0072 0.0072 scale
linemode1
82680 0 translate 90 rotate
86.729 setlinewidth
%%EndPageSetup
0 0 0 setrgbcolor
104.075 setlinewidth
58465 57876 20815 cir0
78.7397 setlinewidth
newpath
38277.8 58080.9 moveto
38687.5 57671.1 lineto
stroke
newpath
38687.5 58080.9 moveto
38277.8 57671.1 lineto
stroke
newpath
38376.3 56863.3 moveto
38786.1 56453.5 lineto
stroke
newpath
38786.1 56863.3 moveto
38376.3 56453.5 lineto
stroke
newpath
48234.3 58011.5 moveto
48644 57601.7 lineto
stroke
newpath
48644 58011.5 moveto
48234.3 57601.7 lineto
stroke
newpath
48240.5 59147.5 moveto
48650.2 58737.7 lineto
stroke
newpath
48650.2 59147.5 moveto
48240.5 58737.7 lineto
stroke
118.111 setlinewidth
0 0 0 setrgbcolor
0 0 0 setrgbcolor
newpath
38725.7 35175.5 moveto
38725.7 36356.6 lineto
39006.9 36356.6 lineto
39175.6 36300.3 lineto
39288.1 36187.9 lineto
39344.4 36075.4 lineto
39400.6 35850.4 lineto
39400.6 35681.7 lineto
39344.4 35456.7 lineto
39288.1 35344.2 lineto
39175.6 35231.7 lineto
39006.9 35175.5 lineto
38725.7 35175.5 lineto
stroke
newpath
39906.8 35175.5 moveto
39906.8 35962.9 lineto
stroke
newpath
39906.8 35737.9 moveto
39963 35850.4 lineto
40019.3 35906.6 lineto
40131.8 35962.9 lineto
40244.2 35962.9 lineto
stroke
newpath
40637.9 35175.5 moveto
40637.9 35962.9 lineto
stroke
newpath
40637.9 36356.6 moveto
40581.7 36300.3 lineto
40637.9 36244.1 lineto
40694.2 36300.3 lineto
40637.9 36356.6 lineto
40637.9 36244.1 lineto
stroke
newpath
41369.1 35175.5 moveto
41256.6 35231.7 lineto
41200.4 35344.2 lineto
41200.4 36356.6 lineto
stroke
newpath
41987.8 35175.5 moveto
41875.3 35231.7 lineto
41819 35344.2 lineto
41819 36356.6 lineto
stroke
newpath
43337.6 35175.5 moveto
43337.6 36356.6 lineto
43731.3 35512.9 lineto
44125 36356.6 lineto
44125 35175.5 lineto
stroke
newpath
45193.6 35175.5 moveto
45193.6 35794.2 lineto
45137.4 35906.6 lineto
45024.9 35962.9 lineto
44799.9 35962.9 lineto
44687.4 35906.6 lineto
stroke
newpath
45193.6 35231.7 moveto
45081.1 35175.5 lineto
44799.9 35175.5 lineto
44687.4 35231.7 lineto
44631.2 35344.2 lineto
44631.2 35456.7 lineto
44687.4 35569.2 lineto
44799.9 35625.4 lineto
45081.1 35625.4 lineto
45193.6 35681.7 lineto
stroke
newpath
45756.1 35962.9 moveto
45756.1 34781.8 lineto
stroke
newpath
45756.1 35906.6 moveto
45868.5 35962.9 lineto
46093.5 35962.9 lineto
46206 35906.6 lineto
46262.2 35850.4 lineto
46318.5 35737.9 lineto
46318.5 35400.5 lineto
46262.2 35288 lineto
46206 35231.7 lineto
46093.5 35175.5 lineto
45868.5 35175.5 lineto
45756.1 35231.7 lineto
stroke
newpath
46824.7 35288 moveto
46880.9 35231.7 lineto
46824.7 35175.5 lineto
46768.4 35231.7 lineto
46824.7 35288 lineto
46824.7 35175.5 lineto
stroke
newpath
46824.7 35906.6 moveto
46880.9 35850.4 lineto
46824.7 35794.2 lineto
46768.4 35850.4 lineto
46824.7 35906.6 lineto
46824.7 35794.2 lineto
stroke
newpath
37188.3 33434.4 moveto
37598 33024.6 lineto
stroke
newpath
37598 33434.4 moveto
37188.3 33024.6 lineto
stroke
0 0 0 setrgbcolor
0 0 0 setrgbcolor
newpath
38950.7 33876.3 moveto
39063.1 33876.3 lineto
39175.6 33820 lineto
39231.9 33763.8 lineto
39288.1 33651.3 lineto
39344.4 33426.3 lineto
39344.4 33145.1 lineto
39288.1 32920.1 lineto
39231.9 32807.7 lineto
39175.6 32751.4 lineto
39063.1 32695.2 lineto
38950.7 32695.2 lineto
38838.2 32751.4 lineto
38781.9 32807.7 lineto
38725.7 32920.1 lineto
38669.4 33145.1 lineto
38669.4 33426.3 lineto
38725.7 33651.3 lineto
38781.9 33763.8 lineto
38838.2 33820 lineto
38950.7 33876.3 lineto
stroke
newpath
39850.5 32807.7 moveto
39906.8 32751.4 lineto
39850.5 32695.2 lineto
39794.3 32751.4 lineto
39850.5 32807.7 lineto
39850.5 32695.2 lineto
stroke
newpath
40919.2 33876.3 moveto
40694.2 33876.3 lineto
40581.7 33820 lineto
40525.5 33763.8 lineto
40413 33595.1 lineto
40356.7 33370.1 lineto
40356.7 32920.1 lineto
40413 32807.7 lineto
40469.2 32751.4 lineto
40581.7 32695.2 lineto
40806.7 32695.2 lineto
40919.2 32751.4 lineto
40975.4 32807.7 lineto
41031.6 32920.1 lineto
41031.6 33201.4 lineto
40975.4 33313.8 lineto
40919.2 33370.1 lineto
40806.7 33426.3 lineto
40581.7 33426.3 lineto
40469.2 33370.1 lineto
40413 33313.8 lineto
40356.7 33201.4 lineto
stroke
newpath
41762.8 33876.3 moveto
41875.3 33876.3 lineto
41987.8 33820 lineto
42044 33763.8 lineto
42100.3 33651.3 lineto
42156.5 33426.3 lineto
42156.5 33145.1 lineto
42100.3 32920.1 lineto
42044 32807.7 lineto
41987.8 32751.4 lineto
41875.3 32695.2 lineto
41762.8 32695.2 lineto
41650.3 32751.4 lineto
41594.1 32807.7 lineto
41537.8 32920.1 lineto
41481.6 33145.1 lineto
41481.6 33426.3 lineto
41537.8 33651.3 lineto
41594.1 33763.8 lineto
41650.3 33820 lineto
41762.8 33876.3 lineto
stroke
newpath
42662.7 32695.2 moveto
42662.7 33482.6 lineto
stroke
newpath
42662.7 33370.1 moveto
42718.9 33426.3 lineto
42831.4 33482.6 lineto
43000.1 33482.6 lineto
43112.6 33426.3 lineto
43168.9 33313.8 lineto
43168.9 32695.2 lineto
stroke
newpath
43168.9 33313.8 moveto
43225.1 33426.3 lineto
43337.6 33482.6 lineto
43506.3 33482.6 lineto
43618.8 33426.3 lineto
43675.1 33313.8 lineto
43675.1 32695.2 lineto
stroke
newpath
44237.5 32695.2 moveto
44237.5 33482.6 lineto
stroke
newpath
44237.5 33370.1 moveto
44293.7 33426.3 lineto
44406.2 33482.6 lineto
44574.9 33482.6 lineto
44687.4 33426.3 lineto
44743.7 33313.8 lineto
44743.7 32695.2 lineto
stroke
newpath
44743.7 33313.8 moveto
44799.9 33426.3 lineto
44912.4 33482.6 lineto
45081.1 33482.6 lineto
45193.6 33426.3 lineto
45249.9 33313.8 lineto
45249.9 32695.2 lineto
stroke
newpath
47555.8 33932.5 moveto
46543.5 32414 lineto
stroke
newpath
49074.4 33876.3 moveto
49186.9 33876.3 lineto
49299.4 33820 lineto
49355.6 33763.8 lineto
49411.8 33651.3 lineto
49468.1 33426.3 lineto
49468.1 33145.1 lineto
49411.8 32920.1 lineto
49355.6 32807.7 lineto
49299.4 32751.4 lineto
49186.9 32695.2 lineto
49074.4 32695.2 lineto
48961.9 32751.4 lineto
48905.7 32807.7 lineto
48849.4 32920.1 lineto
48793.2 33145.1 lineto
48793.2 33426.3 lineto
48849.4 33651.3 lineto
48905.7 33763.8 lineto
48961.9 33820 lineto
49074.4 33876.3 lineto
stroke
newpath
49974.3 32807.7 moveto
50030.5 32751.4 lineto
49974.3 32695.2 lineto
49918 32751.4 lineto
49974.3 32807.7 lineto
49974.3 32695.2 lineto
stroke
newpath
50761.7 33876.3 moveto
50874.2 33876.3 lineto
50986.6 33820 lineto
51042.9 33763.8 lineto
51099.1 33651.3 lineto
51155.4 33426.3 lineto
51155.4 33145.1 lineto
51099.1 32920.1 lineto
51042.9 32807.7 lineto
50986.6 32751.4 lineto
50874.2 32695.2 lineto
50761.7 32695.2 lineto
50649.2 32751.4 lineto
50592.9 32807.7 lineto
50536.7 32920.1 lineto
50480.5 33145.1 lineto
50480.5 33426.3 lineto
50536.7 33651.3 lineto
50592.9 33763.8 lineto
50649.2 33820 lineto
50761.7 33876.3 lineto
stroke
newpath
51605.3 33763.8 moveto
51661.6 33820 lineto
51774 33876.3 lineto
52055.3 33876.3 lineto
52167.8 33820 lineto
52224 33763.8 lineto
52280.2 33651.3 lineto
52280.2 33538.8 lineto
52224 33370.1 lineto
51549.1 32695.2 lineto
52280.2 32695.2 lineto
stroke
newpath
53292.6 33482.6 moveto
53292.6 32695.2 lineto
stroke
newpath
53011.4 33932.5 moveto
52730.2 33088.9 lineto
53461.3 33088.9 lineto
stroke
newpath
53855 33876.3 moveto
53855 33651.3 lineto
stroke
newpath
54305 33876.3 moveto
54305 33651.3 lineto
stroke
newpath
56048.5 32245.2 moveto
55992.3 32301.5 lineto
55879.8 32470.2 lineto
55823.5 32582.7 lineto
55767.3 32751.4 lineto
55711.1 33032.6 lineto
55711.1 33257.6 lineto
55767.3 33538.8 lineto
55823.5 33707.5 lineto
55879.8 33820 lineto
55992.3 33988.8 lineto
56048.5 34045 lineto
stroke
newpath
57004.6 33482.6 moveto
57004.6 32695.2 lineto
stroke
newpath
56723.4 33932.5 moveto
56442.2 33088.9 lineto
57173.4 33088.9 lineto
stroke
newpath
58523.2 32695.2 moveto
58523.2 33876.3 lineto
stroke
newpath
59029.4 32695.2 moveto
59029.4 33313.8 lineto
58973.2 33426.3 lineto
58860.7 33482.6 lineto
58691.9 33482.6 lineto
58579.4 33426.3 lineto
58523.2 33370.1 lineto
stroke
newpath
59760.6 32695.2 moveto
59648.1 32751.4 lineto
59591.8 32807.7 lineto
59535.6 32920.1 lineto
59535.6 33257.6 lineto
59591.8 33370.1 lineto
59648.1 33426.3 lineto
59760.6 33482.6 lineto
59929.3 33482.6 lineto
60041.8 33426.3 lineto
60098 33370.1 lineto
60154.3 33257.6 lineto
60154.3 32920.1 lineto
60098 32807.7 lineto
60041.8 32751.4 lineto
59929.3 32695.2 lineto
59760.6 32695.2 lineto
stroke
newpath
60829.2 32695.2 moveto
60716.7 32751.4 lineto
60660.4 32863.9 lineto
60660.4 33876.3 lineto
stroke
newpath
61729.1 32751.4 moveto
61616.6 32695.2 lineto
61391.6 32695.2 lineto
61279.1 32751.4 lineto
61222.9 32863.9 lineto
61222.9 33313.8 lineto
61279.1 33426.3 lineto
61391.6 33482.6 lineto
61616.6 33482.6 lineto
61729.1 33426.3 lineto
61785.3 33313.8 lineto
61785.3 33201.4 lineto
61222.9 33088.9 lineto
stroke
newpath
62235.2 32751.4 moveto
62347.7 32695.2 lineto
62572.7 32695.2 lineto
62685.2 32751.4 lineto
62741.4 32863.9 lineto
62741.4 32920.1 lineto
62685.2 33032.6 lineto
62572.7 33088.9 lineto
62404 33088.9 lineto
62291.5 33145.1 lineto
62235.2 33257.6 lineto
62235.2 33313.8 lineto
62291.5 33426.3 lineto
62404 33482.6 lineto
62572.7 33482.6 lineto
62685.2 33426.3 lineto
stroke
newpath
63135.1 32245.2 moveto
63191.4 32301.5 lineto
63303.9 32470.2 lineto
63360.1 32582.7 lineto
63416.3 32751.4 lineto
63472.6 33032.6 lineto
63472.6 33257.6 lineto
63416.3 33538.8 lineto
63360.1 33707.5 lineto
63303.9 33820 lineto
63191.4 33988.8 lineto
63135.1 34045 lineto
stroke
showpage
grestore
%%EOF

View File

@ -0,0 +1,17 @@
M48
;DRILL file {KiCad 5.0.0+dfsg1-1~bpo9+1} date Fri Dec 28 11:25:32 2018
;FORMAT={-:-/ absolute / inch / decimal}
FMAT,2
INCH,TZ
T1C0.0236
%
G90
G05
M72
T1
X3.4852Y-4.1298
X3.4909Y-4.2
X4.0592Y-4.1338
X4.0596Y-4.0683
T0
M30

File diff suppressed because it is too large Load Diff

Binary file not shown.

345
Glas/receive_v1_1-cache.lib Normal file
View File

@ -0,0 +1,345 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# Connector:TestPoint
#
DEF Connector:TestPoint TP 0 30 N N 1 F N
F0 "TP" 0 270 50 H V C CNN
F1 "Connector:TestPoint" 0 200 50 H V C CNN
F2 "" 200 0 50 H I C CNN
F3 "" 200 0 50 H I C CNN
$FPLIST
Pin*
Test*
$ENDFPLIST
DRAW
C 0 130 30 0 1 0 N
X 1 1 0 0 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:00917?0026
#
DEF receive_v1_1-eagle-import:00917?0026 X 0 40 Y Y 1 L N
F0 "X" 0 100 59 H V L BNN
F1 "receive_v1_1-eagle-import:00917?0026" 0 -250 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
A 42 -130 21 291 1495 1 0 10 N 60 -120 25 -120
A 42 -69 20 -1471 -314 1 0 10 N 25 -80 60 -80
A 42 -30 21 291 1495 1 0 10 N 60 -20 25 -20
A 42 30 20 -1495 -291 1 0 10 N 25 20 60 20
P 2 1 0 0 0 -120 25 -120 N
P 2 1 0 0 0 -80 0 -120 N
P 2 1 0 0 0 -20 25 -20 N
P 2 1 0 0 0 20 0 -20 N
P 2 1 0 0 25 -80 0 -80 N
P 2 1 0 0 25 20 0 20 N
X 1 1 -100 0 100 R 0 50 1 0 P
X 2 2 -100 -100 100 R 0 50 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:A4L-LOC
#
DEF ~receive_v1_1-eagle-import:A4L-LOC #FRAME 0 40 Y Y 1 L N
F0 "#FRAME" 0 0 50 H I C CNN
F1 "receive_v1_1-eagle-import:A4L-LOC" 0 0 50 H I C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
T 0 8550 600 85 0 1 0 >DRAWING_NAME Normal 0 L B
T 0 8550 400 76 0 1 0 >LAST_DATE_TIME Normal 0 L B
T 0 9075 200 85 0 1 0 >SHEET Normal 0 L B
T 0 8540 195 85 0 1 0 Sheet: Normal 0 L B
P 2 1 0 0 6350 150 6350 950 N
P 2 1 0 0 6350 950 8475 950 N
P 2 1 0 0 8475 350 8475 150 N
P 2 1 0 0 8475 350 8475 550 N
P 2 1 0 0 8475 550 8475 750 N
P 2 1 0 0 8475 550 10100 550 N
P 2 1 0 0 8475 750 8475 950 N
P 2 1 0 0 8475 750 10100 750 N
P 2 1 0 0 8475 950 10100 950 N
P 2 1 0 0 9700 150 9700 350 N
P 2 1 0 0 9700 350 8475 350 N
P 2 1 0 0 9700 350 10100 350 N
P 2 1 0 0 10100 150 10100 350 N
P 2 1 0 0 10100 350 10100 550 N
P 2 1 0 0 10100 550 10100 750 N
P 2 1 0 0 10100 750 10100 950 N
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:BAT60J
#
DEF receive_v1_1-eagle-import:BAT60J D 0 40 Y Y 1 L N
F0 "D" -90 75 59 H V L BNN
F1 "receive_v1_1-eagle-import:BAT60J" -90 -135 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -50 -50 50 0 N
P 2 1 0 0 -50 50 -50 -50 N
P 2 1 0 0 25 -40 25 -50 N
P 2 1 0 0 50 -50 25 -50 N
P 2 1 0 0 50 0 -50 50 N
P 2 1 0 0 50 0 50 -50 N
P 2 1 0 0 50 50 50 0 N
P 2 1 0 0 75 50 50 50 N
P 2 1 0 0 75 50 75 40 N
X A A -100 0 100 R 0 0 1 0 P
X C C 100 0 100 L 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:C-EUC0805
#
DEF receive_v1_1-eagle-import:C-EUC0805 C 0 40 Y Y 1 L N
F0 "C" 60 15 59 H V L BNN
F1 "receive_v1_1-eagle-import:C-EUC0805" 60 -185 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
S -80 -80 80 -60 1 0 0 F
S -80 -40 80 -20 1 0 0 F
P 2 1 0 0 0 -100 0 -80 N
P 2 1 0 0 0 0 0 -20 N
X 1 1 0 100 100 D 0 0 1 0 P
X 2 2 0 -200 100 U 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:C-EUC1206
#
DEF receive_v1_1-eagle-import:C-EUC1206 C 0 40 Y Y 1 L N
F0 "C" 60 15 59 H V L BNN
F1 "receive_v1_1-eagle-import:C-EUC1206" 60 -185 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
S -80 -80 80 -60 1 0 0 F
S -80 -40 80 -20 1 0 0 F
P 2 1 0 0 0 -100 0 -80 N
P 2 1 0 0 0 0 0 -20 N
X 1 1 0 100 100 D 0 0 1 0 P
X 2 2 0 -200 100 U 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:C-EUC1210
#
DEF receive_v1_1-eagle-import:C-EUC1210 C 0 40 Y Y 1 L N
F0 "C" 60 15 59 H V L BNN
F1 "receive_v1_1-eagle-import:C-EUC1210" 60 -185 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
S -80 -80 80 -60 1 0 0 F
S -80 -40 80 -20 1 0 0 F
P 2 1 0 0 0 -100 0 -80 N
P 2 1 0 0 0 0 0 -20 N
X 1 1 0 100 100 D 0 0 1 0 P
X 2 2 0 -200 100 U 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:ESP8266-03
#
DEF ~receive_v1_1-eagle-import:ESP8266-03 ~ 0 40 Y Y 1 L N
F0 "" 0 0 50 H I C CNN
F1 "receive_v1_1-eagle-import:ESP8266-03" 0 0 50 H I C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
T 0 300 1300 42 0 1 0 ESP8266 Normal 0 L B
P 2 1 0 0 200 -100 1100 -100 N
P 2 1 0 0 200 1400 200 -100 N
P 2 1 0 0 1100 -100 1100 1400 N
P 2 1 0 0 1100 1400 200 1400 N
X ANT ANT 1300 1200 200 L 50 50 1 0 U
X CH_PD CH_PD 1300 1000 200 L 50 50 1 0 U
X GND GND 1300 0 200 L 50 50 1 0 U
X GPIO0 GPIO0 0 0 200 R 50 50 1 0 U
X GPIO12 GPIO12 0 800 200 R 50 50 1 0 U
X GPIO13 GPIO13 0 600 200 R 50 50 1 0 U
X GPIO14 GPIO14 0 1000 200 R 50 50 1 0 U
X GPIO15 GPIO15 0 400 200 R 50 50 1 0 U
X GPIO18 GPIO18 1300 800 200 L 50 50 1 0 U
X GPIO2 GPIO2 0 200 200 R 50 50 1 0 U
X NC NC 1300 200 200 L 50 50 1 0 U
X URXD URXD 1300 600 200 L 50 50 1 0 U
X UTXD UTXD 1300 400 200 L 50 50 1 0 U
X VCC VCC 0 1200 200 R 50 50 1 0 U
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:GND
#
DEF receive_v1_1-eagle-import:GND #GND 0 40 Y Y 1 L P
F0 "#GND" 0 0 50 H I C CNN
F1 "receive_v1_1-eagle-import:GND" -100 -100 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -75 0 75 0 N
X GND 1 0 100 100 D 0 0 1 0 W
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:LEDCHIP-LED0805
#
DEF receive_v1_1-eagle-import:LEDCHIP-LED0805 LED 0 40 Y Y 1 L N
F0 "LED" 140 -180 59 V V L BNN
F1 "receive_v1_1-eagle-import:LEDCHIP-LED0805" 225 -180 59 V V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -80 -30 -135 -85 N
P 2 1 0 0 -75 -75 -130 -130 N
P 2 1 0 0 0 -100 -50 -100 N
P 2 1 0 0 0 -100 -50 0 N
P 2 1 0 0 0 0 -50 0 N
P 2 1 0 0 0 0 0 -100 N
P 2 1 0 0 50 -100 0 -100 N
P 2 1 0 0 50 0 0 -100 N
P 2 1 0 0 50 0 0 0 N
P 3 1 0 0 -135 -85 -120 -50 -100 -70 F
P 3 1 0 0 -130 -130 -115 -95 -95 -115 F
X A A 0 100 100 D 0 0 1 0 P
X C C 0 -200 100 U 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:MCP73831
#
DEF receive_v1_1-eagle-import:MCP73831 IC 0 40 Y Y 1 L N
F0 "IC" -200 300 59 H V L BNN
F1 "receive_v1_1-eagle-import:MCP73831" -200 -400 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -200 -300 -200 300 N
P 2 1 0 0 -200 300 200 300 N
P 2 1 0 0 200 -300 -200 -300 N
P 2 1 0 0 200 300 200 -300 N
X STAT 1 -400 -100 200 R 50 50 1 0 U
X VSS 2 400 -200 200 L 50 50 1 0 U
X VBAT 3 400 200 200 L 50 50 1 0 U
X VDD 4 -400 100 200 R 50 50 1 0 U
X PROG 5 400 0 200 L 50 50 1 0 U
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:R-EU_R0805
#
DEF receive_v1_1-eagle-import:R-EU_R0805 R 0 40 Y Y 1 L N
F0 "R" -150 59 59 H V L BNN
F1 "receive_v1_1-eagle-import:R-EU_R0805" -150 -130 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -100 -35 -100 35 N
P 2 1 0 0 -100 -35 100 -35 N
P 2 1 0 0 100 -35 100 35 N
P 2 1 0 0 100 35 -100 35 N
X 1 1 -200 0 100 R 0 0 1 0 P
X 2 2 200 0 100 L 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:R-EU_R1206
#
DEF receive_v1_1-eagle-import:R-EU_R1206 R 0 40 Y Y 1 L N
F0 "R" -150 59 59 H V L BNN
F1 "receive_v1_1-eagle-import:R-EU_R1206" -150 -130 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -100 -35 -100 35 N
P 2 1 0 0 -100 -35 100 -35 N
P 2 1 0 0 100 -35 100 35 N
P 2 1 0 0 100 35 -100 35 N
X 1 1 -200 0 100 R 0 0 1 0 P
X 2 2 200 0 100 L 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:SCHOTTKY-DIODESMD
#
DEF receive_v1_1-eagle-import:SCHOTTKY-DIODESMD D 0 40 Y Y 1 L N
F0 "D" -90 75 59 H V L BNN
F1 "receive_v1_1-eagle-import:SCHOTTKY-DIODESMD" -90 -135 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -50 -50 50 0 N
P 2 1 0 0 -50 50 -50 -50 N
P 2 1 0 0 25 -40 25 -50 N
P 2 1 0 0 50 -50 25 -50 N
P 2 1 0 0 50 0 -50 50 N
P 2 1 0 0 50 0 50 -50 N
P 2 1 0 0 50 50 50 0 N
P 2 1 0 0 75 50 50 50 N
P 2 1 0 0 75 50 75 40 N
X A A -100 0 100 R 0 0 1 0 P
X C C 100 0 100 L 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:SUPPRESSOR-SMBJ
#
DEF receive_v1_1-eagle-import:SUPPRESSOR-SMBJ D 0 40 Y Y 1 L N
F0 "D" 110 75 59 H V L BNN
F1 "receive_v1_1-eagle-import:SUPPRESSOR-SMBJ" 110 -35 59 H V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -50 -50 50 -50 N
P 2 1 0 0 -50 50 -50 25 N
P 2 1 0 0 0 50 -50 -50 N
P 2 1 0 0 0 50 -50 50 N
P 2 1 0 0 50 -50 0 50 N
P 2 1 0 0 50 50 0 50 N
P 2 1 0 0 50 75 50 50 N
X A A 0 -100 100 U 0 0 1 0 P
X C C 0 100 100 D 0 0 1 0 P
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:VCC
#
DEF receive_v1_1-eagle-import:VCC #P+ 0 40 Y Y 1 L P
F0 "#P+" 0 0 50 H I C CNN
F1 "receive_v1_1-eagle-import:VCC" -100 -100 59 V V L BNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 0 0 -50 -75 N
P 2 1 0 0 50 -75 0 0 N
X VCC 1 0 -100 100 U 0 0 1 0 W
ENDDRAW
ENDDEF
#
# receive_v1_1-eagle-import:WS2812
#
DEF ~receive_v1_1-eagle-import:WS2812 IC 0 40 Y Y 2 L N
F0 "IC" -100 -60 59 H V L BNN
F1 "receive_v1_1-eagle-import:WS2812" 0 0 50 H I C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 1 0 0 -200 -200 -200 100 N
P 2 1 0 0 -200 100 200 100 N
P 2 1 0 0 200 -200 -200 -200 N
P 2 1 0 0 200 100 200 -200 N
X DOUT 1 300 -100 100 L 50 50 1 0 O
X DIN 2 -300 0 100 R 50 50 1 0 I
X VCNTL 3 100 500 100 D 50 50 2 0 W
X VLED 5 0 600 100 D 50 50 2 0 W
X GND 6 0 -500 100 U 50 50 2 0 W
ENDDRAW
ENDDEF
#
#End Library

View File

@ -0,0 +1,3 @@
EESchema-DOCLIB Version 2.0
#
#End Doc Library

File diff suppressed because it is too large Load Diff

2203
Glas/receive_v1_1.brd Normal file

File diff suppressed because it is too large Load Diff

2756
Glas/receive_v1_1.kicad_pcb Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

492
Glas/receive_v1_1.net Normal file
View File

@ -0,0 +1,492 @@
(export (version D)
(design
(source /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1.sch)
(date "Sa 11 Aug 2018 00:32:49 CEST")
(tool "Eeschema 5.0.0+dfsg1-1~bpo9+1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source receive_v1_1.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /receive_v1_1_1/) (tstamps /5B6DFACA/)
(title_block
(title)
(company)
(rev)
(date)
(source receive_v1_1_1.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /receive_v1_1_2/) (tstamps /5B6DFC7E/)
(title_block
(title)
(company)
(rev)
(date)
(source receive_v1_1_2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C1)
(value 4.7uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 33354583271174E6))
(comp (ref C2)
(value 10uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp A437799099D41F3B))
(comp (ref C3)
(value 4.7uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp ACEB8AA80C7BD23D))
(comp (ref C4)
(value 100nF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 18AF332D375CDECD))
(comp (ref C5)
(value 1uF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp D9A42AEA629E9F7E))
(comp (ref D1)
(value "TVS 6V8")
(footprint receive_v1_1:SMBJ)
(libsource (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp D34E0B9D7F8C6C1C))
(comp (ref IC1)
(value MCP73831)
(footprint receive_v1_1:SOT23-5L)
(libsource (lib receive_v1_1-eagle-import) (part MCP73831) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 7C8C299E06F92037))
(comp (ref R1)
(value 2.7K)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 27FD2D81B18B4CD))
(comp (ref R2)
(value 470R)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 2AF825E8B40906EE))
(comp (ref LED1)
(value LEDCHIP-LED0805)
(footprint receive_v1_1:CHIP-LED0805)
(libsource (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 56580ACBD5D4A691))
(comp (ref IC2)
(value WS2812)
(footprint receive_v1_1:WS2812)
(libsource (lib receive_v1_1-eagle-import) (part WS2812) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 53D52AEB541775CA))
(comp (ref IC3)
(value WS2812)
(footprint receive_v1_1:WS2812)
(libsource (lib receive_v1_1-eagle-import) (part WS2812) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp B33006915ED25CA7))
(comp (ref R7)
(value 10k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp BBCFCC776C012852))
(comp (ref X1)
(value 00917?0026)
(footprint receive_v1_1:009176002)
(libsource (lib receive_v1_1-eagle-import) (part 00917?0026) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 97C2823C753049C4))
(comp (ref R8)
(value 100R)
(footprint receive_v1_1:R1206)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 3776C06BD4B64AA6))
(comp (ref R9)
(value Jumper)
(footprint receive_v1_1:R1206)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 8234BE3B466A3745))
(comp (ref C9)
(value 10uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 6FF1E0DBD736F15A))
(comp (ref C10)
(value 10uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 21F9ED814F457455))
(comp (ref D4)
(value SCHOTTKY-DIODESMD)
(footprint receive_v1_1:SMB)
(libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 378136B8DCE5EB0D))
(comp (ref D5)
(value SCHOTTKY-DIODESMD)
(footprint receive_v1_1:SMB)
(libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp E8A02D8F73B70CE6))
(comp (ref TP2)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 5B6E1710))
(comp (ref TP3)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 5B6E67FF))
(comp (ref U$1)
(value ESP8266-03)
(footprint receive_v1_1:ESP-03)
(libsource (lib receive_v1_1-eagle-import) (part ESP8266-03) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 850A8AB0BABD3B23))
(comp (ref R4)
(value 10k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 23E57F8398DC0D12))
(comp (ref D2)
(value BAT60J)
(footprint receive_v1_1:SOD323_ST)
(libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 4C475A1A20478EC3))
(comp (ref R5)
(value 1k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp CCADE161F5E59E3A))
(comp (ref R6)
(value 1k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp EF632DAE64669C67))
(comp (ref C6)
(value 1uF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp A3ABC6EF65EADBD0))
(comp (ref D3)
(value BAT60J)
(footprint receive_v1_1:SOD323_ST)
(libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 40D44ED439967F7A))
(comp (ref C7)
(value 100nF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp EBEB2313A6F2A611))
(comp (ref C8)
(value 4,7uF)
(footprint receive_v1_1:C1210)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1210) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp A7C735F03607F4DE))
(comp (ref TP1)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 5B70A1B5))
(comp (ref TP5)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 5B6E0753))
(comp (ref TP6)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 5B6E0D07))
(comp (ref TP4)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 5B6E346D)))
(libparts
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part 00917?0026)
(fields
(field (name Reference) X)
(field (name Value) 00917?0026))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part BAT60J)
(fields
(field (name Reference) D)
(field (name Value) BAT60J))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part C-EUC0805)
(fields
(field (name Reference) C)
(field (name Value) C-EUC0805))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part C-EUC1206)
(fields
(field (name Reference) C)
(field (name Value) C-EUC1206))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part C-EUC1210)
(fields
(field (name Reference) C)
(field (name Value) C-EUC1210))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part ESP8266-03)
(fields
(field (name Value) ESP8266-03))
(pins
(pin (num ANT) (name ANT) (type unspc))
(pin (num CH_PD) (name CH_PD) (type unspc))
(pin (num GND) (name GND) (type unspc))
(pin (num GPIO0) (name GPIO0) (type unspc))
(pin (num GPIO2) (name GPIO2) (type unspc))
(pin (num GPIO12) (name GPIO12) (type unspc))
(pin (num GPIO13) (name GPIO13) (type unspc))
(pin (num GPIO14) (name GPIO14) (type unspc))
(pin (num GPIO15) (name GPIO15) (type unspc))
(pin (num GPIO18) (name GPIO18) (type unspc))
(pin (num NC) (name NC) (type unspc))
(pin (num URXD) (name URXD) (type unspc))
(pin (num UTXD) (name UTXD) (type unspc))
(pin (num VCC) (name VCC) (type unspc))))
(libpart (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805)
(fields
(field (name Reference) LED)
(field (name Value) LEDCHIP-LED0805))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part MCP73831)
(fields
(field (name Reference) IC)
(field (name Value) MCP73831))
(pins
(pin (num 1) (name STAT) (type unspc))
(pin (num 2) (name VSS) (type unspc))
(pin (num 3) (name VBAT) (type unspc))
(pin (num 4) (name VDD) (type unspc))
(pin (num 5) (name PROG) (type unspc))))
(libpart (lib receive_v1_1-eagle-import) (part R-EU_R0805)
(fields
(field (name Reference) R)
(field (name Value) R-EU_R0805))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part R-EU_R1206)
(fields
(field (name Reference) R)
(field (name Value) R-EU_R1206))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD)
(fields
(field (name Reference) D)
(field (name Value) SCHOTTKY-DIODESMD))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ)
(fields
(field (name Reference) D)
(field (name Value) SUPPRESSOR-SMBJ))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part WS2812)
(fields
(field (name Reference) IC)
(field (name Value) WS2812))
(pins
(pin (num 1) (name DOUT) (type output))
(pin (num 2) (name DIN) (type input))
(pin (num 3) (name VCNTL) (type power_in))
(pin (num 5) (name VLED) (type power_in))
(pin (num 6) (name GND) (type power_in)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical receive_v1_1-eagle-import)
(uri /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1-eagle-import.lib)))
(nets
(net (code 1) (name "Net-(IC1-Pad1)")
(node (ref IC1) (pin 1))
(node (ref R2) (pin 1)))
(net (code 2) (name VCC)
(node (ref IC3) (pin 5))
(node (ref TP2) (pin 1))
(node (ref C3) (pin 1))
(node (ref X1) (pin 1))
(node (ref C7) (pin 1))
(node (ref C8) (pin 1))
(node (ref U$1) (pin VCC))
(node (ref IC2) (pin 5))
(node (ref IC1) (pin 3)))
(net (code 3) (name PWR_IN)
(node (ref IC1) (pin 4))
(node (ref C4) (pin 1))
(node (ref R7) (pin 2))
(node (ref C9) (pin 1))
(node (ref LED1) (pin A))
(node (ref D1) (pin C))
(node (ref C6) (pin 1))
(node (ref C2) (pin 1))
(node (ref D4) (pin C)))
(net (code 4) (name "Net-(IC1-Pad5)")
(node (ref IC1) (pin 5))
(node (ref R1) (pin 2)))
(net (code 5) (name "Net-(LED1-PadC)")
(node (ref R2) (pin 2))
(node (ref LED1) (pin C)))
(net (code 6) (name DOUT)
(node (ref U$1) (pin GPIO2))
(node (ref IC2) (pin 2)))
(net (code 7) (name "Net-(IC3-Pad1)")
(node (ref IC3) (pin 1)))
(net (code 8) (name "Net-(IC2-Pad1)")
(node (ref R8) (pin 1))
(node (ref IC2) (pin 1)))
(net (code 9) (name "Net-(IC3-Pad2)")
(node (ref IC3) (pin 2))
(node (ref R8) (pin 2)))
(net (code 10) (name /receive_v1_1_1/PWR_LED)
(node (ref IC2) (pin 3))
(node (ref IC3) (pin 3)))
(net (code 11) (name "Net-(C1-Pad1)")
(node (ref D4) (pin A))
(node (ref D5) (pin C))
(node (ref C1) (pin 1))
(node (ref C5) (pin 2)))
(net (code 12) (name /receive_v1_1_1/IND)
(node (ref C1) (pin 2))
(node (ref C10) (pin 1))
(node (ref C5) (pin 1))
(node (ref C9) (pin 2)))
(net (code 13) (name GND)
(node (ref U$1) (pin GND))
(node (ref U$1) (pin GPIO15))
(node (ref C7) (pin 2))
(node (ref C8) (pin 2))
(node (ref R4) (pin 1))
(node (ref R7) (pin 1))
(node (ref R9) (pin 1))
(node (ref R9) (pin 2))
(node (ref IC3) (pin 6))
(node (ref X1) (pin 2))
(node (ref TP3) (pin 1))
(node (ref D5) (pin A))
(node (ref C10) (pin 2))
(node (ref C3) (pin 2))
(node (ref C2) (pin 2))
(node (ref IC2) (pin 6))
(node (ref R1) (pin 1))
(node (ref IC1) (pin 2))
(node (ref D1) (pin A))
(node (ref C4) (pin 2)))
(net (code 14) (name "Net-(D3-PadA)")
(node (ref R6) (pin 2))
(node (ref D3) (pin A)))
(net (code 15) (name "Net-(C6-Pad2)")
(node (ref R5) (pin 2))
(node (ref C6) (pin 2)))
(net (code 16) (name "Net-(D2-PadA)")
(node (ref D2) (pin A))
(node (ref R5) (pin 1)))
(net (code 17) (name /receive_v1_1_2/PWR_LED)
(node (ref U$1) (pin GPIO13)))
(net (code 18) (name "Net-(TP4-Pad1)")
(node (ref TP4) (pin 1))
(node (ref U$1) (pin GPIO0)))
(net (code 19) (name "Net-(D2-PadC)")
(node (ref U$1) (pin CH_PD))
(node (ref R4) (pin 2))
(node (ref TP1) (pin 1))
(node (ref D2) (pin C))
(node (ref D3) (pin C)))
(net (code 20) (name /receive_v1_1_2/TXD)
(node (ref U$1) (pin UTXD))
(node (ref TP6) (pin 1)))
(net (code 21) (name /receive_v1_1_2/RXD)
(node (ref TP5) (pin 1))
(node (ref U$1) (pin URXD)))
(net (code 22) (name "Net-(U$1-PadANT)")
(node (ref U$1) (pin ANT)))
(net (code 23) (name "Net-(U$1-PadNC)")
(node (ref U$1) (pin NC)))
(net (code 24) (name "Net-(U$1-PadGPIO18)")
(node (ref U$1) (pin GPIO18)))
(net (code 25) (name GPIO14)
(node (ref R6) (pin 1))
(node (ref U$1) (pin GPIO14)))
(net (code 26) (name "Net-(U$1-PadGPIO12)")
(node (ref U$1) (pin GPIO12)))))

View File

@ -0,0 +1,110 @@
(module 009176002 (layer F.Cu) (tedit 0)
(descr "<b>Wire to Board Strip IDC Connector</b> 2 WAY<p>\nSource: http://www.avx.com/docs/Catalogs/9176.pdf")
(fp_text reference X1 (at -3.75 -2.75) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_text value 009176002 (at -3.75 4) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_line (start 3.9169 2.4454) (end 3.0327 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 2.4454) (end 0.9694 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 2.4454) (end -0.9127 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 2.4454) (end -2.976 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 2.4454) (end -3.9171 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start -3.9171 2.4454) (end -3.9171 -2.4563) (layer F.SilkS) (width 0.1016))
(fp_line (start -3.9171 -2.4563) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 -2.4563) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -1.4476 -2.4563) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 -2.4563) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 -2.4563) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 -2.4563) (end 3.9169 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start 3.9169 -2.4563) (end 3.9169 2.4454) (layer F.SilkS) (width 0.1016))
(fp_line (start 3.0327 2.4454) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 2.0415) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 1.2664) (end 3.0327 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 0.7205) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 -0.7314) (end 3.0327 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 -1.2773) (end 3.0327 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 -2.0305) (end 3.0327 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 2.4454) (end 0.9694 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 2.0415) (end 0.9694 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 1.2664) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 0.7205) (end 0.9694 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 -0.7314) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 -1.2773) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 -2.0305) (end 0.9694 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 2.0415) (end 1.4716 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 1.4716 2.0415) (end 1.4825 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 1.4825 2.0415) (end 1.4825 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start 1.4716 2.0415) (end 2.4759 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 2.4759 2.0415) (end 2.4868 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 2.4868 2.0415) (end 2.4868 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start 2.4759 2.0415) (end 3.0327 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 0.7205) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 2.3558 0.7205) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 1.6353 0.7205) (end 0.9694 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 1.2664) (end 1.6353 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start 1.6353 1.2664) (end 2.3558 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start 2.3558 1.2664) (end 3.0327 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start 2.3558 1.2664) (end 2.3558 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 1.6353 1.2664) (end 1.6353 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start 0.9694 -0.7314) (end 1.6244 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start 1.6244 -0.7314) (end 2.3558 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start 2.3558 -0.7314) (end 3.0327 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 -1.2773) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 2.3558 -1.2773) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 1.6244 -1.2773) (end 0.9694 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 1.6244 -0.7314) (end 1.6244 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 2.3558 -0.7314) (end 2.3558 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start 3.0327 -2.0305) (end 2.4978 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start 2.4978 -2.0305) (end 1.4934 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start 1.4934 -2.0305) (end 0.9694 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start 1.4934 -2.0305) (end 1.4934 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start 2.4978 -2.0305) (end 2.4978 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 2.4454) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 2.0415) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 1.2664) (end -0.9127 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 0.7205) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 -0.7314) (end -0.9127 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 -1.2773) (end -0.9127 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 -2.0305) (end -0.9127 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 2.4454) (end -2.976 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 2.0415) (end -2.976 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 1.2664) (end -2.976 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 0.7205) (end -2.976 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 -0.7314) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 -1.2773) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 -2.0305) (end -2.976 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 2.0415) (end -2.4738 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -2.4738 2.0415) (end -2.4629 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -2.4629 2.0415) (end -2.4629 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start -2.4738 2.0415) (end -1.4695 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -1.4695 2.0415) (end -1.4586 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -1.4586 2.0415) (end -1.4586 2.4454) (layer F.Fab) (width 0.1016))
(fp_line (start -1.4695 2.0415) (end -0.9127 2.0415) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 0.7205) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -1.5896 0.7205) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -2.3101 0.7205) (end -2.976 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 1.2664) (end -2.3101 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start -2.3101 1.2664) (end -1.5896 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start -1.5896 1.2664) (end -0.9127 1.2664) (layer F.Fab) (width 0.1016))
(fp_line (start -1.5896 1.2664) (end -1.5896 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -2.3101 1.2664) (end -2.3101 0.7205) (layer F.Fab) (width 0.1016))
(fp_line (start -2.976 -0.7314) (end -2.321 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start -2.321 -0.7314) (end -1.5896 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start -1.5896 -0.7314) (end -0.9127 -0.7314) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 -1.2773) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -1.5896 -1.2773) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -2.321 -1.2773) (end -2.976 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -2.321 -0.7314) (end -2.321 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -1.5896 -0.7314) (end -1.5896 -1.2773) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9127 -2.0305) (end -1.4476 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start -1.4476 -2.0305) (end -2.452 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start -2.452 -2.0305) (end -2.976 -2.0305) (layer F.Fab) (width 0.1016))
(fp_line (start -2.452 -2.0305) (end -2.452 -2.4563) (layer F.Fab) (width 0.1016))
(fp_line (start -1.4476 -2.0305) (end -1.4476 -2.4563) (layer F.Fab) (width 0.1016))
(pad 1 smd rect (at -2 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at 2 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,22 @@
(module C0805 (layer F.Cu) (tedit 0)
(descr <b>CAPACITOR</b><p>)
(fp_text reference C7 (at -1.27 -1.27) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_text value 100nF (at -1.27 2.54) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start -0.381 -0.66) (end 0.381 -0.66) (layer F.Fab) (width 0.1016))
(fp_line (start -0.356 0.66) (end 0.381 0.66) (layer F.Fab) (width 0.1016))
(fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508))
(fp_poly (pts (xy -1.0922 0.7239) (xy -0.3421 0.7239) (xy -0.3421 -0.7262) (xy -1.0922 -0.7262)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.3556 0.7239) (xy 1.1057 0.7239) (xy 1.1057 -0.7262) (xy 0.3556 -0.7262)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.1001 0.4001) (xy 0.1001 0.4001) (xy 0.1001 -0.4001) (xy -0.1001 -0.4001)) (layer F.Adhes) (width 0))
(pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,22 @@
(module C1206 (layer F.Cu) (tedit 0)
(descr <b>CAPACITOR</b>)
(fp_text reference C10 (at -1.27 -1.27) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_text value 10uF (at -1.27 2.54) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start -0.965 -0.787) (end 0.965 -0.787) (layer F.Fab) (width 0.1016))
(fp_line (start -0.965 0.787) (end 0.965 0.787) (layer F.Fab) (width 0.1016))
(fp_poly (pts (xy -1.7018 0.8509) (xy -0.9517 0.8509) (xy -0.9517 -0.8491) (xy -1.7018 -0.8491)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.9517 0.8491) (xy 1.7018 0.8491) (xy 1.7018 -0.8509) (xy 0.9517 -0.8509)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0))
(pad 1 smd rect (at -1.4 0) (size 1.6 1.8) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at 1.4 0) (size 1.6 1.8) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,22 @@
(module C1210 (layer F.Cu) (tedit 0)
(descr <b>CAPACITOR</b>)
(fp_text reference C8 (at -1.905 -1.905) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_text value 4,7uF (at -1.905 3.175) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_line (start -2.473 -1.483) (end 2.473 -1.483) (layer Dwgs.User) (width 0.0508))
(fp_line (start 2.473 1.483) (end -2.473 1.483) (layer Dwgs.User) (width 0.0508))
(fp_line (start -2.473 1.483) (end -2.473 -1.483) (layer Dwgs.User) (width 0.0508))
(fp_line (start -0.9652 -1.2446) (end 0.9652 -1.2446) (layer F.Fab) (width 0.1016))
(fp_line (start -0.9652 1.2446) (end 0.9652 1.2446) (layer F.Fab) (width 0.1016))
(fp_line (start 2.473 -1.483) (end 2.473 1.483) (layer Dwgs.User) (width 0.0508))
(fp_poly (pts (xy -1.7018 1.2954) (xy -0.9517 1.2954) (xy -0.9517 -1.3045) (xy -1.7018 -1.3045)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.9517 1.3045) (xy 1.7018 1.3045) (xy 1.7018 -1.2954) (xy 0.9517 -1.2954)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.1999 0.4001) (xy 0.1999 0.4001) (xy 0.1999 -0.4001) (xy -0.1999 -0.4001)) (layer F.Adhes) (width 0))
(pad 1 smd rect (at -1.4 0) (size 1.6 2.7) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at 1.4 0) (size 1.6 2.7) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,20 @@
(module CHIP-LED0805 (layer F.Cu) (tedit 0)
(descr "<b>Hyper CHIPLED Hyper-Bright LED</b><p>\nLB R99A<br>\nSource: http://www.osram.convergy.de/ ... lb_r99a.pdf")
(fp_text reference LED1 (at -1.27 1.27 90) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_text value "" (at 2.54 1.27 90) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start -0.625 -0.45) (end -0.625 0.45) (layer F.Fab) (width 0.1016))
(fp_line (start 0.625 -0.45) (end 0.625 0.475) (layer F.Fab) (width 0.1016))
(fp_poly (pts (xy -0.675 0) (xy -0.525 0) (xy -0.525 -0.3) (xy -0.675 -0.3)) (layer F.SilkS) (width 0))
(fp_poly (pts (xy 0.525 0) (xy 0.675 0) (xy 0.675 -0.3) (xy 0.525 -0.3)) (layer F.SilkS) (width 0))
(fp_poly (pts (xy -0.15 0) (xy 0.15 0) (xy 0.15 -0.3) (xy -0.15 -0.3)) (layer F.SilkS) (width 0))
(fp_poly (pts (xy -0.675 -0.45) (xy 0.675 -0.45) (xy 0.675 -1.05) (xy -0.675 -1.05)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.675 1.05) (xy 0.675 1.05) (xy 0.675 0.45) (xy -0.675 0.45)) (layer F.Fab) (width 0))
(pad C smd rect (at 0 -1.05) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad A smd rect (at 0 1.05) (size 1.2 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,53 @@
(module ESP-03 (layer F.Cu) (tedit 0)
(fp_text reference U$1 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_text value ESP8266-03 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_line (start 17.4 0) (end 17.4 -12.2) (layer F.SilkS) (width 0.127))
(fp_line (start 0 0) (end 0 -12.2) (layer F.SilkS) (width 0.127))
(fp_line (start 0 -12.2) (end 17.4 -12.2) (layer F.SilkS) (width 0.127))
(fp_poly (pts (xy 0.6 -0.6) (xy 2.6 -0.6) (xy 2.6 -11.4) (xy 0.6 -11.4)) (layer F.SilkS) (width 0))
(fp_line (start 0 0) (end 17.4 0) (layer F.SilkS) (width 0.127))
(fp_line (start 5.8 -7.4) (end 5.8 -2.6) (layer F.SilkS) (width 0.127))
(fp_line (start 5.8 -2.6) (end 10.8 -2.6) (layer F.SilkS) (width 0.127))
(fp_line (start 10.8 -2.6) (end 10.8 -7.4) (layer F.SilkS) (width 0.127))
(fp_line (start 10.8 -7.4) (end 5.8 -7.4) (layer F.SilkS) (width 0.127))
(fp_line (start 11 -10.8) (end 11 -8.4) (layer F.SilkS) (width 0.127))
(fp_line (start 11 -8.4) (end 13.6 -8.4) (layer F.SilkS) (width 0.127))
(fp_line (start 13.6 -8.4) (end 13.6 -10.8) (layer F.SilkS) (width 0.127))
(fp_line (start 13.6 -10.8) (end 11 -10.8) (layer F.SilkS) (width 0.127))
(fp_line (start 12.2 -7.4) (end 12.2 -2.6) (layer F.SilkS) (width 0.127))
(fp_line (start 12.2 -2.6) (end 17.2 -2.6) (layer F.SilkS) (width 0.127))
(fp_line (start 17.2 -2.6) (end 17.2 -7.4) (layer F.SilkS) (width 0.127))
(fp_line (start 17.2 -7.4) (end 12.2 -7.4) (layer F.SilkS) (width 0.127))
(pad VCC smd rect (at 4 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO14 smd rect (at 6 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO12 smd rect (at 8 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO13 smd rect (at 10 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO15 smd rect (at 12 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO2 smd rect (at 14 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO0 smd rect (at 16 0.2 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad ANT smd rect (at 4 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad CH_PD smd rect (at 6 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GPIO18 smd rect (at 8 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad URXD smd rect (at 10 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad UTXD smd rect (at 12 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad NC smd rect (at 14 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad GND smd rect (at 16 -12.4 90) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,41 @@
(module MA03-1 (layer F.Cu) (tedit 0)
(descr "<b>PIN HEADER</b>")
(fp_text reference SV2 (at -3.81 -1.651) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify right top))
)
(fp_text value "" (at -3.81 2.921) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify right top))
)
(fp_line (start -3.175 -1.27) (end -1.905 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.905 -1.27) (end -1.27 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.27 0.635) (end -1.905 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 -1.27) (end 0.635 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.27 0.635) (end 0.635 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 1.27) (end -0.635 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 1.27) (end -1.27 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.81 -0.635) (end -3.81 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.175 -1.27) (end -3.81 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.81 0.635) (end -3.175 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.905 1.27) (end -3.175 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.27 -0.635) (end 1.905 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.905 -1.27) (end 3.175 -1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.175 -1.27) (end 3.81 -0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.81 0.635) (end 3.175 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.175 1.27) (end 1.905 1.27) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.905 1.27) (end 1.27 0.635) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.81 -0.635) (end 3.81 0.635) (layer F.SilkS) (width 0.1524))
(fp_text user 1 (at -5.08 0.635) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
)
(fp_poly (pts (xy -0.254 0.254) (xy 0.254 0.254) (xy 0.254 -0.254) (xy -0.254 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -2.794 0.254) (xy -2.286 0.254) (xy -2.286 -0.254) (xy -2.794 -0.254)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 2.286 0.254) (xy 2.794 0.254) (xy 2.794 -0.254) (xy 2.286 -0.254)) (layer F.Fab) (width 0))
(pad 1 thru_hole oval (at -2.54 0 90) (size 3.048 1.524) (drill 1.016) (layers *.Cu *.Mask)
(solder_mask_margin 0.1016))
(pad 2 thru_hole oval (at 0 0 90) (size 3.048 1.524) (drill 1.016) (layers *.Cu *.Mask)
(solder_mask_margin 0.1016))
(pad 3 thru_hole oval (at 2.54 0 90) (size 3.048 1.524) (drill 1.016) (layers *.Cu *.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,22 @@
(module R0805 (layer F.Cu) (tedit 0)
(descr <b>RESISTOR</b><p>)
(fp_text reference R7 (at -0.635 -1.27) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_text value 10k (at -0.635 2.54) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_line (start -0.41 -0.635) (end 0.41 -0.635) (layer F.Fab) (width 0.1524))
(fp_line (start -0.41 0.635) (end 0.41 0.635) (layer F.Fab) (width 0.1524))
(fp_line (start -1.973 -0.983) (end 1.973 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 1.973 -0.983) (end 1.973 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 1.973 0.983) (end -1.973 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start -1.973 0.983) (end -1.973 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_poly (pts (xy 0.4064 0.6985) (xy 1.0564 0.6985) (xy 1.0564 -0.7015) (xy 0.4064 -0.7015)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -1.0668 0.6985) (xy -0.4168 0.6985) (xy -0.4168 -0.7015) (xy -1.0668 -0.7015)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.1999 0.5001) (xy 0.1999 0.5001) (xy 0.1999 -0.5001) (xy -0.1999 -0.5001)) (layer F.Adhes) (width 0))
(pad 1 smd rect (at -0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at 0.95 0) (size 1.3 1.5) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,22 @@
(module R1206 (layer F.Cu) (tedit 0)
(descr <b>RESISTOR</b>)
(fp_text reference R9 (at -1.27 -1.27) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_text value Jumper (at -1.27 2.54) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start 0.9525 0.8128) (end -0.9652 0.8128) (layer F.Fab) (width 0.1524))
(fp_line (start 0.9525 -0.8128) (end -0.9652 -0.8128) (layer F.Fab) (width 0.1524))
(fp_line (start -2.473 -0.983) (end 2.473 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 2.473 -0.983) (end 2.473 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start 2.473 0.983) (end -2.473 0.983) (layer Dwgs.User) (width 0.0508))
(fp_line (start -2.473 0.983) (end -2.473 -0.983) (layer Dwgs.User) (width 0.0508))
(fp_poly (pts (xy -1.6891 0.8763) (xy -0.9525 0.8763) (xy -0.9525 -0.8763) (xy -1.6891 -0.8763)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.9525 0.8763) (xy 1.6891 0.8763) (xy 1.6891 -0.8763) (xy 0.9525 -0.8763)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.3 0.7) (xy 0.3 0.7) (xy 0.3 -0.7) (xy -0.3 -0.7)) (layer F.Adhes) (width 0))
(pad 2 smd rect (at 1.422 0) (size 1.6 1.803) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 1 smd rect (at -1.422 0) (size 1.6 1.803) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,23 @@
(module SMB (layer F.Cu) (tedit 0)
(descr <B>DIODE</B>)
(fp_text reference D5 (at -2.159 -2.159) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_text value "" (at -2.159 3.429) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start -2.2606 -1.905) (end 2.2606 -1.905) (layer F.SilkS) (width 0.1016))
(fp_line (start -2.2606 1.905) (end 2.2606 1.905) (layer F.SilkS) (width 0.1016))
(fp_line (start -2.2606 1.905) (end -2.2606 -1.905) (layer F.Fab) (width 0.1016))
(fp_line (start 2.2606 1.905) (end 2.2606 -1.905) (layer F.Fab) (width 0.1016))
(fp_line (start 0.193 -1) (end -0.83 0) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.83 0) (end 0.193 1) (layer F.SilkS) (width 0.2032))
(fp_line (start 0.193 1) (end 0.193 -1) (layer F.SilkS) (width 0.2032))
(fp_poly (pts (xy -2.794 1.0922) (xy -2.2606 1.0922) (xy -2.2606 -1.0922) (xy -2.794 -1.0922)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 2.2606 1.0922) (xy 2.794 1.0922) (xy 2.794 -1.0922) (xy 2.2606 -1.0922)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -1.35 1.9) (xy -0.8 1.9) (xy -0.8 -1.9) (xy -1.35 -1.9)) (layer F.Fab) (width 0))
(pad C smd rect (at -2.2 0) (size 2.4 2.4) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad A smd rect (at 2.2 0) (size 2.4 2.4) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,19 @@
(module SMBJ (layer F.Cu) (tedit 0)
(descr "<b>DO-214AA Modified J_BEND</b><p>\nSource: www.rsonline.de .. SMBJ12/C/15/C/24/C/30/C/5.0/C/7.5/C Voltage Suppressor. Data Sheet")
(fp_text reference D1 (at -1.905 -2.54) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_text value "TVS 6V8" (at -1.905 3.81) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start 2.24 -1.92) (end 2.24 1.92) (layer F.Fab) (width 0.1016))
(fp_line (start 2.24 1.92) (end -2.24 1.92) (layer F.SilkS) (width 0.1016))
(fp_line (start -2.24 1.92) (end -2.24 -1.92) (layer F.Fab) (width 0.1016))
(fp_line (start -2.24 -1.92) (end 2.24 -1.92) (layer F.SilkS) (width 0.1016))
(fp_poly (pts (xy -2.8 1.1) (xy -2.25 1.1) (xy -2.25 -1.1) (xy -2.8 -1.1)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 2.25 1.1) (xy 2.8 1.1) (xy 2.8 -1.1) (xy 2.25 -1.1)) (layer F.Fab) (width 0))
(pad C smd rect (at -2.03 0) (size 1.78 2.16) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad A smd rect (at 2.04 0 180) (size 1.78 2.16) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,21 @@
(module SOD323_ST (layer F.Cu) (tedit 0)
(descr "<b>SOD-323</b><p>\nSource: www.st.com, BAT60J.pdf")
(fp_text reference D3 (at -1.65 -0.75) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_text value BAT60J (at -1.65 2) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start -0.85 -0.55) (end 0.85 -0.55) (layer F.SilkS) (width 0.1016))
(fp_line (start 0.85 -0.55) (end 0.85 0.55) (layer F.Fab) (width 0.1016))
(fp_line (start 0.85 0.55) (end -0.85 0.55) (layer F.SilkS) (width 0.1016))
(fp_line (start -0.85 0.55) (end -0.85 -0.55) (layer F.Fab) (width 0.1016))
(fp_poly (pts (xy -0.65 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.65 -0.55)) (layer F.SilkS) (width 0))
(fp_poly (pts (xy -1.35 0.15) (xy -0.8 0.15) (xy -0.8 -0.15) (xy -1.35 -0.15)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.8 0.15) (xy 1.35 0.15) (xy 1.35 -0.15) (xy 0.8 -0.15)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.85 0.55) (xy -0.05 0.55) (xy -0.05 -0.55) (xy -0.85 -0.55)) (layer F.Fab) (width 0))
(pad C smd rect (at -1.25 0) (size 0.8 0.6) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad A smd rect (at 1.25 0) (size 0.8 0.6) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,35 @@
(module SOT23-5L (layer F.Cu) (tedit 0)
(descr "<b>Small Outline Transistor</b><p>\npackage type OT")
(fp_text reference IC1 (at -1.905 -1.905) (layer F.SilkS)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_text value MCP73831 (at -1.905 3.429) (layer F.Fab)
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify right top))
)
(fp_line (start 1.422 -0.81) (end 1.422 0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.422 0.81) (end -1.422 0.81) (layer F.Fab) (width 0.1524))
(fp_line (start -1.422 0.81) (end -1.422 -0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.422 -0.81) (end 1.422 -0.81) (layer F.Fab) (width 0.1524))
(fp_line (start -0.522 -0.81) (end 0.522 -0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.428 0.81) (end -0.522 0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.522 0.81) (end 0.428 0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.328 0.81) (end -1.422 0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.422 0.81) (end 1.328 0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.328 -0.81) (end 1.422 -0.81) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.422 -0.81) (end -1.328 -0.81) (layer F.SilkS) (width 0.1524))
(fp_poly (pts (xy -1.2 1.5) (xy -0.7 1.5) (xy -0.7 0.85) (xy -1.2 0.85)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -0.25 1.5) (xy 0.25 1.5) (xy 0.25 0.85) (xy -0.25 0.85)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.7 1.5) (xy 1.2 1.5) (xy 1.2 0.85) (xy 0.7 0.85)) (layer F.Fab) (width 0))
(fp_poly (pts (xy 0.7 -0.85) (xy 1.2 -0.85) (xy 1.2 -1.5) (xy 0.7 -1.5)) (layer F.Fab) (width 0))
(fp_poly (pts (xy -1.2 -0.85) (xy -0.7 -0.85) (xy -0.7 -1.5) (xy -1.2 -1.5)) (layer F.Fab) (width 0))
(pad 1 smd rect (at -0.95 1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at 0 1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 3 smd rect (at 0.95 1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 4 smd rect (at 0.95 -1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 5 smd rect (at -0.95 -1.3) (size 0.55 1.2) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

View File

@ -0,0 +1,31 @@
(module WS2812 (layer F.Cu) (tedit 0)
(fp_text reference IC3 (at -1.53 0.32) (layer F.SilkS)
(effects (font (size 0.57912 0.57912) (thickness 0.048768)) (justify right top))
)
(fp_text value WS2812WS2812 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify right top))
)
(fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.SilkS) (width 0.127))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.SilkS) (width 0.127))
(fp_line (start 2.5 -2.5) (end -2.2 -2.5) (layer F.SilkS) (width 0.127))
(fp_line (start -2.2 -2.5) (end -2.5 -2.5) (layer F.SilkS) (width 0.127))
(fp_line (start -2.5 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127))
(fp_poly (pts (xy -2.7 -1.1) (xy -1.7 -1.1) (xy -1.7 -2.1) (xy -2.7 -2.1)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 1.7 -1.1) (xy 2.7 -1.1) (xy 2.7 -2.1) (xy 1.7 -2.1)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -2.7 0.5) (xy -1.7 0.5) (xy -1.7 -0.5) (xy -2.7 -0.5)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -2.7 2.1) (xy -1.7 2.1) (xy -1.7 1.1) (xy -2.7 1.1)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 1.7 0.5) (xy 2.7 0.5) (xy 2.7 -0.5) (xy 1.7 -0.5)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 1.7 2.1) (xy 2.7 2.1) (xy 2.7 1.1) (xy 1.7 1.1)) (layer Dwgs.User) (width 0))
(fp_line (start -2.5 -2.2) (end -2.5 2.5) (layer F.SilkS) (width 0.127))
(fp_line (start -2.2 -2.5) (end -2.5 -2.2) (layer F.SilkS) (width 0.127))
(pad 3 smd rect (at -2.3 1.6) (size 1.2 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 2 smd rect (at -2.3 0) (size 1.2 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 1 smd rect (at -2.3 -1.6) (size 1.2 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 5 smd rect (at 2.3 0) (size 1.2 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
(pad 6 smd rect (at 2.3 -1.6) (size 1.2 1) (layers F.Cu F.Paste F.Mask)
(solder_mask_margin 0.1016))
)

43
Glas/receive_v1_1.pro Normal file
View File

@ -0,0 +1,43 @@
update=Mo 21 Jan 2019 20:16:43 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=receive_v1_1.net
PadDrill=0.762
PadDrillOvalY=0.762
PadSizeH=1.524
PadSizeV=1.524
PcbTextSizeV=1.5
PcbTextSizeH=1.5
PcbTextThickness=0.3
ModuleTextSizeV=1
ModuleTextSizeH=1
ModuleTextSizeThickness=0.15
SolderMaskClearance=0.2
SolderMaskMinWidth=0
DrawSegmentWidth=0.2
BoardOutlineThickness=0.15
ModuleOutlineThickness=0.15
[schematic_editor]
version=1
PageLayoutDescrFile=empty.kicad_wks
PlotDirectoryName=
SubpartIdSeparator=0
SubpartFirstId=65
NetFmtName=
SpiceAjustPassiveValues=0
LabSize=50
ERC_TestSimilarLabels=1

29
Glas/receive_v1_1.sch Normal file
View File

@ -0,0 +1,29 @@
EESchema Schematic File Version 4
LIBS:receive_v1_1-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 3
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Sheet
S 1000 1000 500 150
U 5B6DFACA
F0 "receive_v1_1_1" 50
F1 "receive_v1_1_1.sch" 50
$EndSheet
$Sheet
S 3000 1000 500 150
U 5B6DFC7E
F0 "receive_v1_1_2" 50
F1 "receive_v1_1_2.sch" 50
$EndSheet
$EndSCHEMATC

641
Glas/receive_v1_1_1.sch Normal file
View File

@ -0,0 +1,641 @@
EESchema Schematic File Version 4
LIBS:receive_v1_1-cache
EELAYER 26 0
EELAYER END
$Descr User 11774 8268
encoding utf-8
Sheet 2 3
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
Wire Wire Line
2700 2900 2700 2800
Wire Wire Line
2700 2800 1900 2800
Wire Wire Line
3600 2900 3600 2800
Wire Wire Line
3600 2800 3600 2500
Wire Wire Line
2700 2800 3600 2800
Connection ~ 2700 2800
Text Label 1900 2800 2 56 ~ 0
IND
Connection ~ 3600 2800
Wire Wire Line
2200 3300 1900 3300
Text Label 1900 3300 2 56 ~ 0
IND
Wire Wire Line
2700 3300 2500 3300
Wire Wire Line
2700 3200 2700 3300
Wire Wire Line
3200 3300 3000 3300
Wire Wire Line
3000 3300 2700 3300
Wire Wire Line
3200 2000 3000 2000
Wire Wire Line
3000 2000 3000 3300
Connection ~ 2700 3300
Connection ~ 3000 3300
Wire Wire Line
3400 3300 3600 3300
Wire Wire Line
3600 3300 4100 3300
Wire Wire Line
4100 3300 4800 3300
Wire Wire Line
4800 3300 5100 3300
Wire Wire Line
5100 3300 5400 3300
Wire Wire Line
5400 3300 5400 2800
Wire Wire Line
4100 2800 4100 3300
Wire Wire Line
5100 2800 5100 3300
Wire Wire Line
7200 2900 7400 2900
Wire Wire Line
7400 2900 7400 3300
Wire Wire Line
7400 3300 5400 3300
Wire Wire Line
7400 3300 7700 3300
Wire Wire Line
7700 3300 8200 3300
Wire Wire Line
8200 3300 8200 3000
Wire Wire Line
7700 3200 7700 3300
Wire Wire Line
8200 3300 8300 3300
Wire Wire Line
8700 3300 9000 3300
Wire Wire Line
9300 3000 8700 3000
Wire Wire Line
8700 3000 8700 3300
Wire Wire Line
4800 2900 4800 3300
Wire Wire Line
3600 3200 3600 3300
Connection ~ 4100 3300
Connection ~ 5100 3300
Connection ~ 5400 3300
Connection ~ 7400 3300
Connection ~ 7700 3300
Connection ~ 8200 3300
Connection ~ 8700 3300
Text GLabel 9000 3300 2 56 BiDi ~ 0
GND
Connection ~ 4800 3300
Connection ~ 3600 3300
Wire Wire Line
3300 6000 3300 6100
Text GLabel 3300 6000 0 10 BiDi ~ 0
GND
Wire Wire Line
4200 6100 4200 6000
Text GLabel 4200 6100 0 10 BiDi ~ 0
GND
Wire Wire Line
6500 4700 6400 4700
Wire Wire Line
6400 4700 6400 4800
Text GLabel 6500 4700 0 10 BiDi ~ 0
GND
Wire Wire Line
6900 4700 7000 4700
Wire Wire Line
7000 4700 7000 4800
Text GLabel 6900 4700 0 10 BiDi ~ 0
GND
Wire Wire Line
3600 2000 4100 2000
Wire Wire Line
4100 2000 4800 2000
Wire Wire Line
4800 2000 5100 2000
Wire Wire Line
5100 2000 5100 2500
Wire Wire Line
5100 2000 5400 2000
Wire Wire Line
5400 2000 5400 2500
Wire Wire Line
4100 2600 4100 2000
Wire Wire Line
6400 2600 6300 2600
Wire Wire Line
6300 2600 6300 2000
Wire Wire Line
6300 2000 5900 2000
Wire Wire Line
5900 2000 5400 2000
Wire Wire Line
5900 2100 5900 2000
Wire Wire Line
4800 2500 4800 2000
Wire Wire Line
6300 2000 6600 2000
Wire Wire Line
3600 2200 3600 2000
Wire Wire Line
3600 2000 3400 2000
Connection ~ 5100 2000
Connection ~ 4100 2000
Connection ~ 5400 2000
Connection ~ 5900 2000
Connection ~ 4800 2000
Connection ~ 6300 2000
Text GLabel 6600 2000 2 56 BiDi ~ 0
PWR_IN
Connection ~ 3600 2000
Wire Wire Line
7200 2500 8200 2500
Wire Wire Line
8200 2500 8200 2700
Wire Wire Line
8200 2500 8300 2500
Wire Wire Line
8700 2500 9000 2500
Wire Wire Line
9300 2900 8700 2900
Wire Wire Line
8700 2900 8700 2500
Connection ~ 8200 2500
Connection ~ 8700 2500
Text GLabel 9000 2500 2 56 BiDi ~ 0
VCC
Wire Wire Line
7200 2700 7700 2700
Wire Wire Line
7700 2700 7700 2800
Wire Wire Line
6400 2800 6300 2800
Wire Wire Line
6300 2800 6300 3000
Wire Wire Line
6300 3000 5900 3000
Wire Wire Line
5900 3000 5900 2900
Wire Wire Line
5900 2500 5900 2400
Wire Wire Line
3600 4100 3700 4100
Wire Wire Line
3700 4100 3700 4000
Wire Wire Line
3700 4000 4000 4000
Wire Wire Line
2800 4000 3000 4000
Text GLabel 2800 4000 0 56 BiDi ~ 0
DOUT
Wire Wire Line
4400 4000 4600 4000
$Comp
L receive_v1_1-eagle-import:A4L-LOC #FRAME1
U 1 0 AC7AE1DC73DA64CA
P 900 6600
AR Path="/AC7AE1DC73DA64CA" Ref="#FRAME1" Part="1"
AR Path="/5B6DFACA/AC7AE1DC73DA64CA" Ref="#FRAME1" Part="1"
F 0 "#FRAME1" H 900 6600 50 0001 C CNN
F 1 "A4L-LOC" H 900 6600 50 0001 C CNN
F 2 "" H 900 6600 50 0001 C CNN
F 3 "" H 900 6600 50 0001 C CNN
1 900 6600
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC1206 C1
U 1 0 33354583271174E6
P 2400 3300
AR Path="/33354583271174E6" Ref="C1" Part="1"
AR Path="/5B6DFACA/33354583271174E6" Ref="C1" Part="1"
F 0 "C1" H 2460 3315 59 0000 L BNN
F 1 "4,7u" H 2460 3115 59 0000 L BNN
F 2 "receive_v1_1:C1206" H 2400 3300 50 0001 C CNN
F 3 "" H 2400 3300 50 0001 C CNN
1 2400 3300
0 1 1 0
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC1206 C2
U 1 0 A437799099D41F3B
P 5100 2600
AR Path="/A437799099D41F3B" Ref="C2" Part="1"
AR Path="/5B6DFACA/A437799099D41F3B" Ref="C2" Part="1"
F 0 "C2" H 5160 2615 59 0000 L BNN
F 1 "10uF" H 5160 2415 59 0000 L BNN
F 2 "receive_v1_1:C1206" H 5100 2600 50 0001 C CNN
F 3 "" H 5100 2600 50 0001 C CNN
1 5100 2600
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC1206 C3
U 1 0 ACEB8AA80C7BD23D
P 8200 2800
AR Path="/ACEB8AA80C7BD23D" Ref="C3" Part="1"
AR Path="/5B6DFACA/ACEB8AA80C7BD23D" Ref="C3" Part="1"
F 0 "C3" H 8260 2815 59 0000 L BNN
F 1 "4.7uF" H 8260 2615 59 0000 L BNN
F 2 "receive_v1_1:C1206" H 8200 2800 50 0001 C CNN
F 3 "" H 8200 2800 50 0001 C CNN
1 8200 2800
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC0805 C4
U 1 0 18AF332D375CDECD
P 5400 2600
AR Path="/18AF332D375CDECD" Ref="C4" Part="1"
AR Path="/5B6DFACA/18AF332D375CDECD" Ref="C4" Part="1"
F 0 "C4" H 5460 2615 59 0000 L BNN
F 1 "100nF" H 5460 2415 59 0000 L BNN
F 2 "receive_v1_1:C0805" H 5400 2600 50 0001 C CNN
F 3 "" H 5400 2600 50 0001 C CNN
1 5400 2600
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC0805 C5
U 1 0 D9A42AEA629E9F7E
P 2700 3000
AR Path="/D9A42AEA629E9F7E" Ref="C5" Part="1"
AR Path="/5B6DFACA/D9A42AEA629E9F7E" Ref="C5" Part="1"
F 0 "C5" H 2760 3015 59 0000 L BNN
F 1 "330n" H 2760 2815 59 0000 L BNN
F 2 "receive_v1_1:C0805" H 2700 3000 50 0001 C CNN
F 3 "" H 2700 3000 50 0001 C CNN
1 2700 3000
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:SUPPRESSOR-SMBJ D1
U 1 0 D34E0B9D7F8C6C1C
P 4100 2700
AR Path="/D34E0B9D7F8C6C1C" Ref="D1" Part="1"
AR Path="/5B6DFACA/D34E0B9D7F8C6C1C" Ref="D1" Part="1"
F 0 "D1" H 4210 2775 59 0000 L BNN
F 1 "TVS 6V8" H 4210 2665 59 0000 L BNN
F 2 "receive_v1_1:SMBJ" H 4100 2700 50 0001 C CNN
F 3 "" H 4100 2700 50 0001 C CNN
1 4100 2700
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:MCP73831 IC1
U 1 0 7C8C299E06F92037
P 6800 2700
AR Path="/7C8C299E06F92037" Ref="IC1" Part="1"
AR Path="/5B6DFACA/7C8C299E06F92037" Ref="IC1" Part="1"
F 0 "IC1" H 6600 3000 59 0000 L BNN
F 1 "MCP73831" H 6600 2300 59 0000 L BNN
F 2 "receive_v1_1:SOT23-5L" H 6800 2700 50 0001 C CNN
F 3 "" H 6800 2700 50 0001 C CNN
1 6800 2700
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R0805 R1
U 1 0 27FD2D81B18B4CD
P 7700 3000
AR Path="/27FD2D81B18B4CD" Ref="R1" Part="1"
AR Path="/5B6DFACA/27FD2D81B18B4CD" Ref="R1" Part="1"
F 0 "R1" H 7550 3059 59 0000 L BNN
F 1 "2.7K" H 7550 2870 59 0000 L BNN
F 2 "receive_v1_1:R0805" H 7700 3000 50 0001 C CNN
F 3 "" H 7700 3000 50 0001 C CNN
1 7700 3000
0 -1 -1 0
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R0805 R2
U 1 0 2AF825E8B40906EE
P 5900 2700
AR Path="/2AF825E8B40906EE" Ref="R2" Part="1"
AR Path="/5B6DFACA/2AF825E8B40906EE" Ref="R2" Part="1"
F 0 "R2" H 5750 2759 59 0000 L BNN
F 1 "1K" H 5750 2570 59 0000 L BNN
F 2 "receive_v1_1:R0805" H 5900 2700 50 0001 C CNN
F 3 "" H 5900 2700 50 0001 C CNN
1 5900 2700
0 -1 -1 0
$EndComp
$Comp
L receive_v1_1-eagle-import:LEDCHIP-LED0805 LED1
U 1 0 56580ACBD5D4A691
P 5900 2200
AR Path="/56580ACBD5D4A691" Ref="LED1" Part="1"
AR Path="/5B6DFACA/56580ACBD5D4A691" Ref="LED1" Part="1"
F 0 "LED1" V 6040 2020 59 0000 L BNN
F 1 "LEDCHIP-LED0805" V 6125 2020 59 0000 L BNN
F 2 "receive_v1_1:CHIP-LED0805" H 5900 2200 50 0001 C CNN
F 3 "" H 5900 2200 50 0001 C CNN
1 5900 2200
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:WS2812 IC2
U 1 0 53D52AEB541775CA
P 3300 4000
AR Path="/53D52AEB541775CA" Ref="IC2" Part="1"
AR Path="/5B6DFACA/53D52AEB541775CA" Ref="IC2" Part="1"
F 0 "IC2" H 3200 3940 59 0000 L BNN
F 1 "WS2812" H 3300 4000 50 0001 C CNN
F 2 "receive_v1_1:WS2812" H 3300 4000 50 0001 C CNN
F 3 "" H 3300 4000 50 0001 C CNN
1 3300 4000
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:WS2812 IC2
U 2 0 53D52AEB541775C6
P 3300 5500
AR Path="/53D52AEB541775C6" Ref="IC2" Part="2"
AR Path="/5B6DFACA/53D52AEB541775C6" Ref="IC2" Part="2"
F 0 "IC2" H 3200 5440 59 0000 L BNN
F 1 "WS2812" H 3300 5500 50 0001 C CNN
F 2 "receive_v1_1:WS2812" H 3300 5500 50 0001 C CNN
F 3 "" H 3300 5500 50 0001 C CNN
2 3300 5500
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:WS2812 IC3
U 1 0 B33006915ED25CA7
P 4900 4000
AR Path="/B33006915ED25CA7" Ref="IC3" Part="1"
AR Path="/5B6DFACA/B33006915ED25CA7" Ref="IC3" Part="1"
F 0 "IC3" H 4800 3940 59 0000 L BNN
F 1 "WS2812" H 4900 4000 50 0001 C CNN
F 2 "receive_v1_1:WS2812" H 4900 4000 50 0001 C CNN
F 3 "" H 4900 4000 50 0001 C CNN
1 4900 4000
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:WS2812 IC3
U 2 0 B33006915ED25CAB
P 4200 5500
AR Path="/B33006915ED25CAB" Ref="IC3" Part="2"
AR Path="/5B6DFACA/B33006915ED25CAB" Ref="IC3" Part="2"
F 0 "IC3" H 4100 5440 59 0000 L BNN
F 1 "WS2812" H 4200 5500 50 0001 C CNN
F 2 "receive_v1_1:WS2812" H 4200 5500 50 0001 C CNN
F 3 "" H 4200 5500 50 0001 C CNN
2 4200 5500
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND5
U 1 0 D2D9FA1DEF27308A
P 3300 6200
AR Path="/D2D9FA1DEF27308A" Ref="#GND5" Part="1"
AR Path="/5B6DFACA/D2D9FA1DEF27308A" Ref="#GND05" Part="1"
F 0 "#GND05" H 3300 6200 50 0001 C CNN
F 1 "GND" H 3200 6100 59 0000 L BNN
F 2 "" H 3300 6200 50 0001 C CNN
F 3 "" H 3300 6200 50 0001 C CNN
1 3300 6200
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND6
U 1 0 714A278CA07C0193
P 4200 6200
AR Path="/714A278CA07C0193" Ref="#GND6" Part="1"
AR Path="/5B6DFACA/714A278CA07C0193" Ref="#GND06" Part="1"
F 0 "#GND06" H 4200 6200 50 0001 C CNN
F 1 "GND" H 4100 6100 59 0000 L BNN
F 2 "" H 4200 6200 50 0001 C CNN
F 3 "" H 4200 6200 50 0001 C CNN
1 4200 6200
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R0805 R7
U 1 0 BBCFCC776C012852
P 4800 2700
AR Path="/BBCFCC776C012852" Ref="R7" Part="1"
AR Path="/5B6DFACA/BBCFCC776C012852" Ref="R7" Part="1"
F 0 "R7" H 4650 2759 59 0000 L BNN
F 1 "10k" H 4650 2570 59 0000 L BNN
F 2 "receive_v1_1:R0805" H 4800 2700 50 0001 C CNN
F 3 "" H 4800 2700 50 0001 C CNN
1 4800 2700
0 -1 -1 0
$EndComp
$Comp
L receive_v1_1-eagle-import:00917?0026 X1
U 1 0 97C2823C753049C4
P 9400 2900
AR Path="/97C2823C753049C4" Ref="X1" Part="1"
AR Path="/5B6DFACA/97C2823C753049C4" Ref="X1" Part="1"
F 0 "X1" H 9400 3000 59 0000 L BNN
F 1 "00917?0026" H 9400 2650 59 0000 L BNN
F 2 "receive_v1_1:009176002" H 9400 2900 50 0001 C CNN
F 3 "" H 9400 2900 50 0001 C CNN
1 9400 2900
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R1206 R8
U 1 0 3776C06BD4B64AA6
P 4200 4000
AR Path="/3776C06BD4B64AA6" Ref="R8" Part="1"
AR Path="/5B6DFACA/3776C06BD4B64AA6" Ref="R8" Part="1"
F 0 "R8" H 4050 4059 59 0000 L BNN
F 1 "100R" H 4050 3870 59 0000 L BNN
F 2 "receive_v1_1:R1206" H 4200 4000 50 0001 C CNN
F 3 "" H 4200 4000 50 0001 C CNN
1 4200 4000
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND7
U 1 0 C51381239CDE76EF
P 6400 4900
AR Path="/C51381239CDE76EF" Ref="#GND7" Part="1"
AR Path="/5B6DFACA/C51381239CDE76EF" Ref="#GND07" Part="1"
F 0 "#GND07" H 6400 4900 50 0001 C CNN
F 1 "GND" H 6300 4800 59 0000 L BNN
F 2 "" H 6400 4900 50 0001 C CNN
F 3 "" H 6400 4900 50 0001 C CNN
1 6400 4900
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND8
U 1 0 167E2C6ADF24F9E8
P 7000 4900
AR Path="/167E2C6ADF24F9E8" Ref="#GND8" Part="1"
AR Path="/5B6DFACA/167E2C6ADF24F9E8" Ref="#GND08" Part="1"
F 0 "#GND08" H 7000 4900 50 0001 C CNN
F 1 "GND" H 6900 4800 59 0000 L BNN
F 2 "" H 7000 4900 50 0001 C CNN
F 3 "" H 7000 4900 50 0001 C CNN
1 7000 4900
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC1206 C9
U 1 0 6FF1E0DBD736F15A
P 3600 2300
AR Path="/6FF1E0DBD736F15A" Ref="C9" Part="1"
AR Path="/5B6DFACA/6FF1E0DBD736F15A" Ref="C9" Part="1"
F 0 "C9" H 3660 2315 59 0000 L BNN
F 1 "10uF" H 3660 2115 59 0000 L BNN
F 2 "receive_v1_1:C1206" H 3600 2300 50 0001 C CNN
F 3 "" H 3600 2300 50 0001 C CNN
1 3600 2300
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC1206 C10
U 1 0 21F9ED814F457455
P 3600 3000
AR Path="/21F9ED814F457455" Ref="C10" Part="1"
AR Path="/5B6DFACA/21F9ED814F457455" Ref="C10" Part="1"
F 0 "C10" H 3660 3015 59 0000 L BNN
F 1 "10uF" H 3660 2815 59 0000 L BNN
F 2 "receive_v1_1:C1206" H 3600 3000 50 0001 C CNN
F 3 "" H 3600 3000 50 0001 C CNN
1 3600 3000
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:SCHOTTKY-DIODESMD D4
U 1 0 378136B8DCE5EB0D
P 3300 2000
AR Path="/378136B8DCE5EB0D" Ref="D4" Part="1"
AR Path="/5B6DFACA/378136B8DCE5EB0D" Ref="D4" Part="1"
F 0 "D4" H 3210 2075 59 0000 L BNN
F 1 "SCHOTTKY-DIODESMD" H 3210 1865 59 0000 L BNN
F 2 "receive_v1_1:SMB" H 3300 2000 50 0001 C CNN
F 3 "" H 3300 2000 50 0001 C CNN
1 3300 2000
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:SCHOTTKY-DIODESMD D5
U 1 0 E8A02D8F73B70CE6
P 3300 3300
AR Path="/E8A02D8F73B70CE6" Ref="D5" Part="1"
AR Path="/5B6DFACA/E8A02D8F73B70CE6" Ref="D5" Part="1"
F 0 "D5" H 3210 3375 59 0000 L BNN
F 1 "SCHOTTKY-DIODESMD" H 3210 3165 59 0000 L BNN
F 2 "receive_v1_1:SMB" H 3300 3300 50 0001 C CNN
F 3 "" H 3300 3300 50 0001 C CNN
1 3300 3300
-1 0 0 1
$EndComp
Text Notes 1400 6100 0 59 ~ 0
LTC4120\nBQ24090\nMCP73831
Wire Wire Line
3300 4900 3300 4750
Wire Wire Line
4200 4750 4200 4900
Text Label 3300 4750 1 50 ~ 0
VCC
Text Label 4200 4750 1 50 ~ 0
VCC
Wire Wire Line
4300 5000 4300 4750
Wire Wire Line
3400 5000 3400 4750
$Comp
L Connector:TestPoint TP2
U 1 1 5B6E1710
P 8300 2400
F 0 "TP2" H 8358 2520 50 0000 L CNN
F 1 "TestPoint" H 8358 2429 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 8500 2400 50 0001 C CNN
F 3 "~" H 8500 2400 50 0001 C CNN
1 8300 2400
1 0 0 -1
$EndComp
$Comp
L Connector:TestPoint TP3
U 1 1 5B6E67FF
P 8300 3200
F 0 "TP3" H 8358 3320 50 0000 L CNN
F 1 "TestPoint" H 8358 3229 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 8500 3200 50 0001 C CNN
F 3 "~" H 8500 3200 50 0001 C CNN
1 8300 3200
1 0 0 -1
$EndComp
Wire Wire Line
8300 2400 8300 2500
Connection ~ 8300 2500
Wire Wire Line
8300 2500 8700 2500
Wire Wire Line
8300 3200 8300 3300
Connection ~ 8300 3300
Wire Wire Line
8300 3300 8700 3300
Text GLabel 4300 4750 1 50 Input ~ 0
PWR_LED
Text GLabel 3400 4750 1 50 Input ~ 0
PWR_LED
$Comp
L receive_v1_1-eagle-import:R-EU_R1206 R?
U 1 1 5B6EC5DC
P 6700 4700
AR Path="/5B6DFC7E/5B6EC5DC" Ref="R?" Part="1"
AR Path="/5B6DFACA/5B6EC5DC" Ref="R9" Part="1"
F 0 "R9" H 6700 4921 59 0000 C CNN
F 1 "0R" H 6700 4816 59 0000 C CNN
F 2 "receive_v1_1:R1206" H 6700 4700 50 0001 C CNN
F 3 "" H 6700 4700 50 0001 C CNN
1 6700 4700
1 0 0 -1
$EndComp
$Comp
L Connector:TestPoint TP7
U 1 1 5B6EF211
P 6400 4000
F 0 "TP7" H 6458 4120 50 0000 L CNN
F 1 "VCC" H 6458 4029 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_1.0x1.0mm" H 6600 4000 50 0001 C CNN
F 3 "~" H 6600 4000 50 0001 C CNN
1 6400 4000
1 0 0 -1
$EndComp
$Comp
L Connector:TestPoint TP8
U 1 1 5B6EF29E
P 7000 4000
F 0 "TP8" H 7058 4120 50 0000 L CNN
F 1 "VCC" H 7058 4029 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_1.0x1.0mm" H 7200 4000 50 0001 C CNN
F 3 "~" H 7200 4000 50 0001 C CNN
1 7000 4000
1 0 0 -1
$EndComp
Wire Wire Line
7000 4150 7300 4150
Text GLabel 7300 4150 2 56 BiDi ~ 0
VCC
Wire Wire Line
7000 4000 7000 4150
Wire Wire Line
7000 4150 6400 4150
Wire Wire Line
6400 4150 6400 4000
Connection ~ 7000 4150
Text Notes 6400 4250 0 50 ~ 0
Verbindung von VCC
$EndSCHEMATC

409
Glas/receive_v1_1_2.sch Normal file
View File

@ -0,0 +1,409 @@
EESchema Schematic File Version 4
LIBS:receive_v1_1-cache
EELAYER 26 0
EELAYER END
$Descr User 11774 8268
encoding utf-8
Sheet 3 3
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
Wire Wire Line
6700 3800 6700 2600
Wire Wire Line
6700 2600 6150 2600
Wire Wire Line
6700 2400 6700 2600
Connection ~ 6700 2600
Text Label 5950 3000 0 56 ~ 0
RXD
Text Label 5950 3200 0 56 ~ 0
TXD
Wire Wire Line
4500 3200 3700 3200
Wire Wire Line
3700 3200 3700 4300
Wire Wire Line
3700 3200 3700 2950
Wire Wire Line
3700 3200 3300 3200
Wire Wire Line
3300 3200 3300 2950
Connection ~ 3700 3200
Text GLabel 4500 3200 0 10 BiDi ~ 0
GND
Wire Wire Line
5800 3600 6200 3600
Wire Wire Line
6200 3600 6200 4300
Text GLabel 5800 3600 0 10 BiDi ~ 0
GND
Wire Wire Line
6700 4200 6700 4300
Text GLabel 6700 4200 0 10 BiDi ~ 0
GND
Wire Wire Line
4500 2400 3700 2400
Wire Wire Line
3700 2400 3700 1900
Wire Wire Line
3700 2650 3700 2400
Wire Wire Line
3700 2400 3300 2400
Connection ~ 3700 2400
Text GLabel 4500 2400 0 10 BiDi ~ 0
VCC
Wire Wire Line
4300 3400 4500 3400
Text GLabel 4300 3400 0 56 BiDi ~ 0
DOUT
Wire Wire Line
4300 2600 4500 2600
Text Label 7900 2600 0 56 ~ 0
GPIO14
Wire Wire Line
6700 2000 6700 2200
Wire Wire Line
6700 900 6700 1100
Text GLabel 6700 900 1 56 BiDi ~ 0
PWR_IN
Wire Wire Line
6700 1400 6700 1600
$Comp
L receive_v1_1-eagle-import:A4L-LOC #FRAME2
U 1 0 D06FCA34DFE0E5A0
P 900 7200
AR Path="/D06FCA34DFE0E5A0" Ref="#FRAME2" Part="1"
AR Path="/5B6DFC7E/D06FCA34DFE0E5A0" Ref="#FRAME2" Part="1"
F 0 "#FRAME2" H 900 7200 50 0001 C CNN
F 1 "A4L-LOC" H 900 7200 50 0001 C CNN
F 2 "" H 900 7200 50 0001 C CNN
F 3 "" H 900 7200 50 0001 C CNN
1 900 7200
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:ESP8266-03 U$1
U 1 0 850A8AB0BABD3B23
P 4500 3600
AR Path="/850A8AB0BABD3B23" Ref="U$1" Part="1"
AR Path="/5B6DFC7E/850A8AB0BABD3B23" Ref="U$1" Part="1"
F 0 "U$1" H 4500 3600 50 0001 C CNN
F 1 "ESP8266-03" H 4500 3600 50 0001 C CNN
F 2 "receive_v1_1:ESP-03" H 4500 3600 50 0001 C CNN
F 3 "" H 4500 3600 50 0001 C CNN
1 4500 3600
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND1
U 1 0 6F68935FDB8695AC
P 3700 4400
AR Path="/6F68935FDB8695AC" Ref="#GND1" Part="1"
AR Path="/5B6DFC7E/6F68935FDB8695AC" Ref="#GND01" Part="1"
F 0 "#GND01" H 3700 4400 50 0001 C CNN
F 1 "GND" H 3600 4300 59 0000 L BNN
F 2 "" H 3700 4400 50 0001 C CNN
F 3 "" H 3700 4400 50 0001 C CNN
1 3700 4400
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND3
U 1 0 21A7002F7679BDCC
P 6200 4400
AR Path="/21A7002F7679BDCC" Ref="#GND3" Part="1"
AR Path="/5B6DFC7E/21A7002F7679BDCC" Ref="#GND03" Part="1"
F 0 "#GND03" H 6200 4400 50 0001 C CNN
F 1 "GND" H 6100 4300 59 0000 L BNN
F 2 "" H 6200 4400 50 0001 C CNN
F 3 "" H 6200 4400 50 0001 C CNN
1 6200 4400
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:GND #GND4
U 1 0 4B4BE4C0D896219B
P 6700 4400
AR Path="/4B4BE4C0D896219B" Ref="#GND4" Part="1"
AR Path="/5B6DFC7E/4B4BE4C0D896219B" Ref="#GND04" Part="1"
F 0 "#GND04" H 6700 4400 50 0001 C CNN
F 1 "GND" H 6600 4300 59 0000 L BNN
F 2 "" H 6700 4400 50 0001 C CNN
F 3 "" H 6700 4400 50 0001 C CNN
1 6700 4400
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:VCC #P+1
U 1 0 93600057BCDF72C5
P 3700 1800
AR Path="/93600057BCDF72C5" Ref="#P+1" Part="1"
AR Path="/5B6DFC7E/93600057BCDF72C5" Ref="#P+01" Part="1"
F 0 "#P+01" H 3700 1800 50 0001 C CNN
F 1 "VCC" V 3600 1700 59 0000 L BNN
F 2 "" H 3700 1800 50 0001 C CNN
F 3 "" H 3700 1800 50 0001 C CNN
1 3700 1800
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:BAT60J D2
U 1 0 4C475A1A20478EC3
P 6700 2300
AR Path="/4C475A1A20478EC3" Ref="D2" Part="1"
AR Path="/5B6DFC7E/4C475A1A20478EC3" Ref="D2" Part="1"
F 0 "D2" H 6610 2375 59 0000 L BNN
F 1 "BAT60J" H 6610 2165 59 0000 L BNN
F 2 "receive_v1_1:SOD323_ST" H 6700 2300 50 0001 C CNN
F 3 "" H 6700 2300 50 0001 C CNN
1 6700 2300
0 1 1 0
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R0805 R5
U 1 0 CCADE161F5E59E3A
P 6700 1800
AR Path="/CCADE161F5E59E3A" Ref="R5" Part="1"
AR Path="/5B6DFC7E/CCADE161F5E59E3A" Ref="R5" Part="1"
F 0 "R5" H 6550 1859 59 0000 L BNN
F 1 "1k" H 6550 1670 59 0000 L BNN
F 2 "receive_v1_1:R0805" H 6700 1800 50 0001 C CNN
F 3 "" H 6700 1800 50 0001 C CNN
1 6700 1800
0 -1 -1 0
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R0805 R6
U 1 0 EF632DAE64669C67
P 7550 2600
AR Path="/EF632DAE64669C67" Ref="R6" Part="1"
AR Path="/5B6DFC7E/EF632DAE64669C67" Ref="R6" Part="1"
F 0 "R6" H 7400 2659 59 0000 L BNN
F 1 "1k" H 7400 2470 59 0000 L BNN
F 2 "receive_v1_1:R0805" H 7550 2600 50 0001 C CNN
F 3 "" H 7550 2600 50 0001 C CNN
1 7550 2600
-1 0 0 1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC0805 C6
U 1 0 A3ABC6EF65EADBD0
P 6700 1200
AR Path="/A3ABC6EF65EADBD0" Ref="C6" Part="1"
AR Path="/5B6DFC7E/A3ABC6EF65EADBD0" Ref="C6" Part="1"
F 0 "C6" H 6760 1215 59 0000 L BNN
F 1 "1uF" H 6760 1015 59 0000 L BNN
F 2 "receive_v1_1:C0805" H 6700 1200 50 0001 C CNN
F 3 "" H 6700 1200 50 0001 C CNN
1 6700 1200
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:BAT60J D3
U 1 0 40D44ED439967F7A
P 7050 2600
AR Path="/40D44ED439967F7A" Ref="D3" Part="1"
AR Path="/5B6DFC7E/40D44ED439967F7A" Ref="D3" Part="1"
F 0 "D3" H 6960 2675 59 0000 L BNN
F 1 "BAT60J" H 6960 2465 59 0000 L BNN
F 2 "receive_v1_1:SOD323_ST" H 7050 2600 50 0001 C CNN
F 3 "" H 7050 2600 50 0001 C CNN
1 7050 2600
-1 0 0 1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC0805 C7
U 1 0 EBEB2313A6F2A611
P 3700 2750
AR Path="/EBEB2313A6F2A611" Ref="C7" Part="1"
AR Path="/5B6DFC7E/EBEB2313A6F2A611" Ref="C7" Part="1"
F 0 "C7" H 3760 2765 59 0000 L BNN
F 1 "100nF" H 3760 2565 59 0000 L BNN
F 2 "receive_v1_1:C0805" H 3700 2750 50 0001 C CNN
F 3 "" H 3700 2750 50 0001 C CNN
1 3700 2750
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:C-EUC1210 C8
U 1 0 A7C735F03607F4DE
P 3300 2750
AR Path="/A7C735F03607F4DE" Ref="C8" Part="1"
AR Path="/5B6DFC7E/A7C735F03607F4DE" Ref="C8" Part="1"
F 0 "C8" H 3360 2765 59 0000 L BNN
F 1 "4,7uF" H 3360 2565 59 0000 L BNN
F 2 "receive_v1_1:C1210" H 3300 2750 50 0001 C CNN
F 3 "" H 3300 2750 50 0001 C CNN
1 3300 2750
1 0 0 -1
$EndComp
Wire Wire Line
3300 2400 3300 2650
Text GLabel 4300 2600 0 50 Input ~ 0
GPIO14
$Comp
L Connector:TestPoint TP1
U 1 1 5B70A1B5
P 6150 2500
F 0 "TP1" H 6208 2620 50 0000 L CNN
F 1 "TestPoint" H 6208 2529 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 6350 2500 50 0001 C CNN
F 3 "~" H 6350 2500 50 0001 C CNN
1 6150 2500
1 0 0 -1
$EndComp
Wire Wire Line
6150 2500 6150 2600
Connection ~ 6150 2600
Wire Wire Line
6150 2600 5800 2600
$Comp
L Connector:TestPoint TP5
U 1 1 5B6E0753
P 6150 3000
F 0 "TP5" H 6208 3120 50 0000 L CNN
F 1 "TestPoint" H 6208 3029 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 6350 3000 50 0001 C CNN
F 3 "~" H 6350 3000 50 0001 C CNN
1 6150 3000
1 0 0 -1
$EndComp
$Comp
L Connector:TestPoint TP6
U 1 1 5B6E0D07
P 6150 3200
F 0 "TP6" H 6208 3320 50 0000 L CNN
F 1 "TestPoint" H 6208 3229 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 6350 3200 50 0001 C CNN
F 3 "~" H 6350 3200 50 0001 C CNN
1 6150 3200
1 0 0 -1
$EndComp
Wire Wire Line
5800 3000 6150 3000
Wire Wire Line
5800 3200 6150 3200
$Comp
L Connector:TestPoint TP4
U 1 1 5B6E346D
P 3950 3600
F 0 "TP4" H 4008 3720 50 0000 L CNN
F 1 "TestPoint" H 4008 3629 50 0000 L CNN
F 2 "TestPoint:TestPoint_Pad_2.0x2.0mm" H 4150 3600 50 0001 C CNN
F 3 "~" H 4150 3600 50 0001 C CNN
1 3950 3600
0 -1 -1 0
$EndComp
Wire Wire Line
6700 2600 6950 2600
Wire Wire Line
7150 2600 7350 2600
Wire Wire Line
7750 2600 7900 2600
Wire Wire Line
3950 3600 4500 3600
Wire Wire Line
4500 3000 4350 3000
Text GLabel 4350 3000 0 50 Input ~ 0
PWR_LED
Wire Wire Line
5800 3400 6150 3400
Text Label 6150 3400 0 50 ~ 0
VCC
$Comp
L receive_v1_1-eagle-import:R-EU_R1206 R3
U 1 1 5B6EB162
P 4550 4500
F 0 "R3" H 4550 4721 59 0000 C CNN
F 1 "0R" H 4550 4616 59 0000 C CNN
F 2 "receive_v1_1:R1206" H 4550 4500 50 0001 C CNN
F 3 "" H 4550 4500 50 0001 C CNN
1 4550 4500
1 0 0 -1
$EndComp
$Comp
L receive_v1_1-eagle-import:R-EU_R1206 R10
U 1 1 5B6EB2AE
P 4550 4950
F 0 "R10" H 4550 5171 59 0000 C CNN
F 1 "0R" H 4550 5066 59 0000 C CNN
F 2 "receive_v1_1:R1206" H 4550 4950 50 0001 C CNN
F 3 "" H 4550 4950 50 0001 C CNN
1 4550 4950
1 0 0 -1
$EndComp
Wire Wire Line
5100 4500 4850 4500
Wire Wire Line
5100 4950 4850 4950
Text Label 5100 4500 0 50 ~ 0
PWR_LED
Text Label 5100 4950 0 50 ~ 0
DOUT
Wire Wire Line
4850 4500 4850 4600
Wire Wire Line
4850 4600 4250 4600
Wire Wire Line
4250 4600 4250 4500
Wire Wire Line
4250 4500 4350 4500
Wire Wire Line
4850 4500 4750 4500
Wire Wire Line
4850 4950 4850 5050
Wire Wire Line
4850 5050 4250 5050
Wire Wire Line
4250 5050 4250 4950
Wire Wire Line
4250 4950 4350 4950
Connection ~ 4850 4950
Wire Wire Line
4850 4950 4750 4950
$Comp
L receive_v1_1-eagle-import:R-EU_R1206 R11
U 1 1 5B6F4871
P 1950 4550
F 0 "R11" H 1950 4771 59 0000 C CNN
F 1 "0R" H 1950 4666 59 0000 C CNN
F 2 "receive_v1_1:R1206" H 1950 4550 50 0001 C CNN
F 3 "" H 1950 4550 50 0001 C CNN
1 1950 4550
1 0 0 -1
$EndComp
Wire Wire Line
2500 4550 2250 4550
Text Label 2500 4550 0 50 ~ 0
PWR_LED
Wire Wire Line
2250 4550 2250 4650
Wire Wire Line
2250 4650 1650 4650
Wire Wire Line
1650 4650 1650 4550
Wire Wire Line
1650 4550 1750 4550
Connection ~ 2250 4550
Wire Wire Line
2250 4550 2150 4550
Connection ~ 4850 4500
$Comp
L receive_v1_1-eagle-import:R-EU_R1206 R4
U 1 1 5B70118C
P 6700 4000
F 0 "R4" H 6700 4221 59 0000 C CNN
F 1 "n.b. 10K" H 6700 4116 59 0000 C CNN
F 2 "receive_v1_1:R1206" H 6700 4000 50 0001 C CNN
F 3 "" H 6700 4000 50 0001 C CNN
1 6700 4000
0 1 1 0
$EndComp
$EndSCHEMATC

454
Glas/receive_v1_2.net Normal file
View File

@ -0,0 +1,454 @@
(export (version D)
(design
(source /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1.sch)
(date "Fr 10 Aug 2018 21:59:31 CEST")
(tool "Eeschema 5.0.0+dfsg1-1~bpo9+1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source receive_v1_1.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /receive_v1_1_1/) (tstamps /5B6DFACA/)
(title_block
(title)
(company)
(rev)
(date)
(source receive_v1_1_1.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /receive_v1_1_2/) (tstamps /5B6DFC7E/)
(title_block
(title)
(company)
(rev)
(date)
(source receive_v1_1_2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C1)
(value 4.7uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 33354583271174E6))
(comp (ref C2)
(value 10uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp A437799099D41F3B))
(comp (ref C3)
(value 4.7uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp ACEB8AA80C7BD23D))
(comp (ref C4)
(value 100nF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 18AF332D375CDECD))
(comp (ref C5)
(value 1uF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp D9A42AEA629E9F7E))
(comp (ref D1)
(value "TVS 6V8")
(footprint receive_v1_1:SMBJ)
(libsource (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp D34E0B9D7F8C6C1C))
(comp (ref IC1)
(value MCP73831)
(footprint receive_v1_1:SOT23-5L)
(libsource (lib receive_v1_1-eagle-import) (part MCP73831) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 7C8C299E06F92037))
(comp (ref R1)
(value 2.7K)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 27FD2D81B18B4CD))
(comp (ref R2)
(value 470R)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 2AF825E8B40906EE))
(comp (ref LED1)
(value LEDCHIP-LED0805)
(footprint receive_v1_1:CHIP-LED0805)
(libsource (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 56580ACBD5D4A691))
(comp (ref IC2)
(value WS2812)
(footprint receive_v1_1:WS2812)
(libsource (lib receive_v1_1-eagle-import) (part WS2812) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 53D52AEB541775CA))
(comp (ref IC3)
(value WS2812)
(footprint receive_v1_1:WS2812)
(libsource (lib receive_v1_1-eagle-import) (part WS2812) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp B33006915ED25CA7))
(comp (ref R7)
(value 10k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp BBCFCC776C012852))
(comp (ref X1)
(value 00917?0026)
(footprint receive_v1_1:009176002)
(libsource (lib receive_v1_1-eagle-import) (part 00917?0026) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 97C2823C753049C4))
(comp (ref R8)
(value 100R)
(footprint receive_v1_1:R1206)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 3776C06BD4B64AA6))
(comp (ref R9)
(value Jumper)
(footprint receive_v1_1:R1206)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 8234BE3B466A3745))
(comp (ref C9)
(value 10uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 6FF1E0DBD736F15A))
(comp (ref C10)
(value 10uF)
(footprint receive_v1_1:C1206)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1206) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 21F9ED814F457455))
(comp (ref D4)
(value SCHOTTKY-DIODESMD)
(footprint receive_v1_1:SMB)
(libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp 378136B8DCE5EB0D))
(comp (ref D5)
(value SCHOTTKY-DIODESMD)
(footprint receive_v1_1:SMB)
(libsource (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD) (description ""))
(sheetpath (names /receive_v1_1_1/) (tstamps /5B6DFACA/))
(tstamp E8A02D8F73B70CE6))
(comp (ref U$1)
(value ESP8266-03)
(footprint receive_v1_1:ESP-03)
(libsource (lib receive_v1_1-eagle-import) (part ESP8266-03) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 850A8AB0BABD3B23))
(comp (ref R3)
(value R-EU_R0805)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 23CAB85C9D3B2993))
(comp (ref R4)
(value 10k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 23E57F8398DC0D12))
(comp (ref SV2)
(value MA03-1)
(footprint receive_v1_1:MA03-1)
(libsource (lib receive_v1_1-eagle-import) (part MA03-1) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp DCE5AB867D1713BF))
(comp (ref D2)
(value BAT60J)
(footprint receive_v1_1:SOD323_ST)
(libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 4C475A1A20478EC3))
(comp (ref R5)
(value 1k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp CCADE161F5E59E3A))
(comp (ref R6)
(value 1k)
(footprint receive_v1_1:R0805)
(libsource (lib receive_v1_1-eagle-import) (part R-EU_R0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp EF632DAE64669C67))
(comp (ref C6)
(value 1uF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp A3ABC6EF65EADBD0))
(comp (ref D3)
(value BAT60J)
(footprint receive_v1_1:SOD323_ST)
(libsource (lib receive_v1_1-eagle-import) (part BAT60J) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp 40D44ED439967F7A))
(comp (ref C7)
(value 100nF)
(footprint receive_v1_1:C0805)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC0805) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp EBEB2313A6F2A611))
(comp (ref C8)
(value 4,7uF)
(footprint receive_v1_1:C1210)
(libsource (lib receive_v1_1-eagle-import) (part C-EUC1210) (description ""))
(sheetpath (names /receive_v1_1_2/) (tstamps /5B6DFC7E/))
(tstamp A7C735F03607F4DE)))
(libparts
(libpart (lib receive_v1_1-eagle-import) (part 00917?0026)
(fields
(field (name Reference) X)
(field (name Value) 00917?0026))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part BAT60J)
(fields
(field (name Reference) D)
(field (name Value) BAT60J))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part C-EUC0805)
(fields
(field (name Reference) C)
(field (name Value) C-EUC0805))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part C-EUC1206)
(fields
(field (name Reference) C)
(field (name Value) C-EUC1206))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part C-EUC1210)
(fields
(field (name Reference) C)
(field (name Value) C-EUC1210))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part ESP8266-03)
(fields
(field (name Value) ESP8266-03))
(pins
(pin (num ANT) (name ANT) (type unspc))
(pin (num CH_PD) (name CH_PD) (type unspc))
(pin (num GND) (name GND) (type unspc))
(pin (num GPIO0) (name GPIO0) (type unspc))
(pin (num GPIO2) (name GPIO2) (type unspc))
(pin (num GPIO12) (name GPIO12) (type unspc))
(pin (num GPIO13) (name GPIO13) (type unspc))
(pin (num GPIO14) (name GPIO14) (type unspc))
(pin (num GPIO15) (name GPIO15) (type unspc))
(pin (num GPIO18) (name GPIO18) (type unspc))
(pin (num NC) (name NC) (type unspc))
(pin (num URXD) (name URXD) (type unspc))
(pin (num UTXD) (name UTXD) (type unspc))
(pin (num VCC) (name VCC) (type unspc))))
(libpart (lib receive_v1_1-eagle-import) (part LEDCHIP-LED0805)
(fields
(field (name Reference) LED)
(field (name Value) LEDCHIP-LED0805))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part MA03-1)
(fields
(field (name Reference) SV)
(field (name Value) MA03-1))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part MCP73831)
(fields
(field (name Reference) IC)
(field (name Value) MCP73831))
(pins
(pin (num 1) (name STAT) (type unspc))
(pin (num 2) (name VSS) (type unspc))
(pin (num 3) (name VBAT) (type unspc))
(pin (num 4) (name VDD) (type unspc))
(pin (num 5) (name PROG) (type unspc))))
(libpart (lib receive_v1_1-eagle-import) (part R-EU_R0805)
(fields
(field (name Reference) R)
(field (name Value) R-EU_R0805))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part R-EU_R1206)
(fields
(field (name Reference) R)
(field (name Value) R-EU_R1206))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part SCHOTTKY-DIODESMD)
(fields
(field (name Reference) D)
(field (name Value) SCHOTTKY-DIODESMD))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part SUPPRESSOR-SMBJ)
(fields
(field (name Reference) D)
(field (name Value) SUPPRESSOR-SMBJ))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib receive_v1_1-eagle-import) (part WS2812)
(fields
(field (name Reference) IC)
(field (name Value) WS2812))
(pins
(pin (num 1) (name DOUT) (type output))
(pin (num 2) (name DIN) (type input))
(pin (num 3) (name VCNTL) (type power_in))
(pin (num 5) (name VLED) (type power_in))
(pin (num 6) (name GND) (type power_in)))))
(libraries
(library (logical receive_v1_1-eagle-import)
(uri /home/s/Dokumente/09_KiCad/glas/V1_1/receive_v1_1-eagle-import.lib)))
(nets
(net (code 1) (name "Net-(IC1-Pad5)")
(node (ref R1) (pin 2))
(node (ref IC1) (pin 5)))
(net (code 2) (name "Net-(LED1-PadC)")
(node (ref R2) (pin 2))
(node (ref LED1) (pin C)))
(net (code 3) (name "Net-(IC1-Pad1)")
(node (ref R2) (pin 1))
(node (ref IC1) (pin 1)))
(net (code 4) (name PWR_LED)
(node (ref IC2) (pin 5))
(node (ref IC2) (pin 3))
(node (ref C7) (pin 1))
(node (ref C8) (pin 1))
(node (ref IC3) (pin 3))
(node (ref X1) (pin 1))
(node (ref U$1) (pin GPIO13))
(node (ref IC3) (pin 5))
(node (ref U$1) (pin VCC))
(node (ref IC1) (pin 3))
(node (ref C3) (pin 1)))
(net (code 5) (name "Net-(IC2-Pad1)")
(node (ref R8) (pin 1))
(node (ref IC2) (pin 1)))
(net (code 6) (name DOUT)
(node (ref IC2) (pin 2))
(node (ref U$1) (pin GPIO2)))
(net (code 7) (name "Net-(IC3-Pad2)")
(node (ref R8) (pin 2))
(node (ref IC3) (pin 2)))
(net (code 8) (name "Net-(C1-Pad1)")
(node (ref C5) (pin 2))
(node (ref C1) (pin 1))
(node (ref D4) (pin A))
(node (ref D5) (pin C)))
(net (code 9) (name GND)
(node (ref R3) (pin 1))
(node (ref R4) (pin 1))
(node (ref SV2) (pin 3))
(node (ref U$1) (pin GND))
(node (ref U$1) (pin GPIO15))
(node (ref C8) (pin 2))
(node (ref C7) (pin 2))
(node (ref X1) (pin 2))
(node (ref R7) (pin 1))
(node (ref IC3) (pin 6))
(node (ref IC2) (pin 6))
(node (ref D5) (pin A))
(node (ref C10) (pin 2))
(node (ref R9) (pin 2))
(node (ref R9) (pin 1))
(node (ref R1) (pin 1))
(node (ref IC1) (pin 2))
(node (ref D1) (pin A))
(node (ref C4) (pin 2))
(node (ref C3) (pin 2))
(node (ref C2) (pin 2)))
(net (code 10) (name PWR_IN)
(node (ref C6) (pin 1))
(node (ref R7) (pin 2))
(node (ref D4) (pin C))
(node (ref C9) (pin 1))
(node (ref LED1) (pin A))
(node (ref IC1) (pin 4))
(node (ref D1) (pin C))
(node (ref C4) (pin 1))
(node (ref C2) (pin 1)))
(net (code 11) (name /receive_v1_1_1/IND)
(node (ref C10) (pin 1))
(node (ref C9) (pin 2))
(node (ref C1) (pin 2))
(node (ref C5) (pin 1)))
(net (code 12) (name "Net-(IC3-Pad1)")
(node (ref IC3) (pin 1)))
(net (code 13) (name "Net-(R3-Pad2)")
(node (ref U$1) (pin GPIO0))
(node (ref R3) (pin 2)))
(net (code 14) (name /receive_v1_1_2/TXD)
(node (ref U$1) (pin UTXD))
(node (ref SV2) (pin 2)))
(net (code 15) (name "Net-(U$1-PadNC)")
(node (ref U$1) (pin NC)))
(net (code 16) (name "Net-(U$1-PadGPIO18)")
(node (ref U$1) (pin GPIO18)))
(net (code 17) (name "Net-(U$1-PadGPIO12)")
(node (ref U$1) (pin GPIO12)))
(net (code 18) (name GPIO14)
(node (ref U$1) (pin GPIO14))
(node (ref D3) (pin A)))
(net (code 19) (name "Net-(D3-PadC)")
(node (ref R6) (pin 1))
(node (ref D3) (pin C)))
(net (code 20) (name "Net-(C6-Pad2)")
(node (ref R5) (pin 2))
(node (ref C6) (pin 2)))
(net (code 21) (name "Net-(D2-PadA)")
(node (ref R5) (pin 1))
(node (ref D2) (pin A)))
(net (code 22) (name /receive_v1_1_2/RXD)
(node (ref U$1) (pin URXD))
(node (ref SV2) (pin 1)))
(net (code 23) (name "Net-(D2-PadC)")
(node (ref D2) (pin C))
(node (ref R6) (pin 2))
(node (ref U$1) (pin CH_PD))
(node (ref R4) (pin 2)))
(net (code 24) (name "Net-(U$1-PadANT)")
(node (ref U$1) (pin ANT)))))

4
Glas/sym-lib-table Normal file
View File

@ -0,0 +1,4 @@
(sym_lib_table
(lib (name receive_v1_1-eagle-import)(type Legacy)(uri ${KIPRJMOD}/receive_v1_1-eagle-import.lib)(options "")(descr ""))
(lib (name lm5085)(type Legacy)(uri /home/s/Dokumente/09_KiCad/Library/lm5085.lib)(options "")(descr ""))
)

139
Lua/glas-V2_2.lua Normal file
View File

@ -0,0 +1,139 @@
function wait_for_wifi_conn ( )
tmr.alarm (1, 1000, 1, function ( )
if wifi.sta.getip ( ) == nil then
print ("Waiting for Wifi connection")
--led rot
ws2812.writergb(4, string.char(50, 0, 0))
else
tmr.stop (1)
print ("ESP8266 mode is: " .. wifi.getmode ( ))
print ("The module MAC address is: " .. wifi.ap.getmac ( ))
print ("Config done, IP is " .. wifi.sta.getip ( ))
-- print ("join Multicast 192.168.1.90")
-- net.multicastJoin(wifi.sta.getip(), "192.168.1.90")
-- led gruen
ws2812.writergb(4, string.char(0, 50, 0, 0,0,0))
tmr.delay(1000000)
end
end)
end
--empfangene daten zerlegen,led ansteuern
function parse (payload)
r = string.sub(payload,1,3)
g = string.sub(payload,4,6)
b = string.sub(payload,7,9)
r1 = string.sub(payload,10,12)
g1 = string.sub(payload,13,15)
b1 = string.sub(payload,16,18)
rgb = string.char(r,g,b,r1,g1,b1)
print(rgb)
ws2812.writergb(4,rgb)
end
--ausschalten
function switchoff ()
--node off
print("off")
ws2812.writergb(4, string.char(50, 0, 0, 0,0,0))
tmr.delay(200000)
ws2812.writergb(4, string.char(0, 0, 0, 0,0,0))
tmr.delay(200000)
ws2812.writergb(4, string.char(50, 0, 0, 0,0,0))
tmr.delay(200000)
ws2812.writergb(4, string.char(0, 0, 0, 0,0,0))
--Led-Controller OFF
gpio.write(7, gpio.LOW)
tmr.delay(10000)
--Power off
wifi.sta.disconnect()
gpio.write(5, gpio.LOW)
end
akku = 0
wifi.sta.disconnect()
--blau fuer on
ws2812.writergb(4, string.char(0, 0, 50, 0,0,0))
tmr.delay(1000000)
if (adc.readvdd33() > 3650) then
--LED-Controller Ein
gpio.mode(7, gpio.OUTPUT)
gpio.write(7, gpio.HIGH)
--blau fuer on
ws2812.writergb(4, string.char(0, 0, 50, 0,0,0))
tmr.delay(1000000)
--rot fuer batt low, gruen fuer batt ok
akku = 1
ws2812.writergb(4, string.char(0, 50, 0, 0,0,0))
print("voltage "..adc.readvdd33())
tmr.delay(1000000)
--led off
ws2812.writergb(4, string.char(0, 0, 0, 0,0,0))
wifi.setmode(wifi.STATION)
wifi.sta.config("cocktail","cocktailglas")
wifi.sta.connect()
wait_for_wifi_conn()
--get new ip after lost
tmr.alarm(0, 30000, 1, function()
print("reconnect")
if (akku == 1) then
if wifi.sta.getip ( ) == nil then
wifi.sta.connect()
wait_for_wifi_conn()
end
end
end )
else
akku = 0
print("battery low. sleep")
print("voltage "..adc.readvdd33())
--node off
switchoff()
end
tmr.delay(1000000)
--send udp from linux:
--echo -n "170000070150000050" >/dev/udp/172.23.92.16/31302
srv = net.createServer(net.UDP)
srv:on("receive",function(srv,payload)
-- print("payload=",payload)
-- print("len",string.len(payload))
if (string.len(payload)==18) then parse(payload)
else
if (string.len(payload)==6) then
if (string.sub(payload,1,6) == "offoff") then
switchoff()
end
end
end
end)
srv:listen(31302)
--akkustand: abschalten nach 15 min
tmr.alarm(2, 900000, 1, function()
print("akku")
wifi.sta.disconnect()
if (adc.readvdd33() > 3700) then
print("ok")
akku = 1
wifi.sta.connect()
else
akku = 0
print("battery low. sleep")
print("voltage "..adc.readvdd33())
switchoff()
end
end )

44
Lua/info.txt Normal file
View File

@ -0,0 +1,44 @@
V2_1 mit Induktionslader:
ESP-Einschalten und beide Pins setzen. (CH_PD auf 5v und gpio0 auf 0V)
Image schreiben. (Enthält Nodemcu + Luascript):
python esptool.py --port /dev/ttyACM0 write_flash 0x00000 backup-V2_1.img
python esptool.py --port /dev/ttyACM0 write_flash --flash_size 512KB 0x00000 backup-V2_1.img
./nodemcu-tool upload glas-V2_1.lua
EPROM:
minipro -p GD25Q40 -r dump.hex
minipro -p GD25Q40 -w dump.hex
Farbe senden:
echo -n "255000100255000100" >/dev/udp/172.23.92.103/31302
Ausschalten:
echo -n "offoff" >/dev/udp/172.23.92.103/31302
Einschalten:
Auf den Induktionslader legen schaltet das glas ein
Bei zu niedrigem Akkustand schaltet das glas aus
To Do:
Lötjumper für einschalten und flashen
Akku raussuchen
Mac-Addressen prüfen und notieren (Da IP für ansteuern notwendig)
evtl 100pF an gpio2
Programmieren:
Power-Up:
./nodemcu-tool upload --port=/dev/ttyUSB1 init.lua
Nun hält die Spannung das Chip-PD auf high
#lua: uart.setup(0, 115200, 8, 0, 1, 1)
./nodemcu-tool upload --baud=115200 --port=/dev/ttyUSB1 glas-V2_1.lua

6
Lua/init.lua Normal file
View File

@ -0,0 +1,6 @@
gpio.mode(5, gpio.OUTPUT)
gpio.write(5, gpio.HIGH)
tmr.delay(2000000)
tmr.delay(2000000)
dofile("glas-V2_2.lua")

Binary file not shown.

BIN
pic1.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 KiB

BIN
pic2.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 518 KiB

BIN
pic3.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 KiB

27
readme.md Normal file
View File

@ -0,0 +1,27 @@
# LED-Glasuntersetzer
![Glas]
Dies ist ein Untersetzer für Gläser mit zwei WS2812 LEDs und einem ESP8266 zur Steuerung.
Die Untersetzer werden induktiv geladen, sodass diese komplett eingegossen werden können und keine Feuchtigkeit die Platinen beschädigt.
Bitte flexible Vergussmasse verwenden.
Über Wlan lassen sich alle Gläser einzeln oder gemeinsamm ansteuern.
Das Laden erfolgt mit ca 250kHz ähnlich dem QI Standart. Die Gläser haben jedoch keine Intelligenz eingebaut.
Es muss sichergestellt werden, dass die Gläser beim Laden nicht überhitzen.
Eingeschaltet werden die Gläser mit einem Ladeimpuls und ausgeschaltet werden sie über ein UDP-Packet.
![Platine]
Als Gläser bieten sich IKEA-Gläser Typ Godis an.
Das Gehäuse kann mit dem 3D-Drucker ausgedruckt werden und mit Silikonschlauch abgedichtet werden.
Dieser hat 1mm Innendurchmesser und 3mm Außendurchmesser.
![Untersetzer]
Die Gläser lassen sich über Ola ansprechen. Dazu QLC+ installieren und die Python Skripte ausführen.
[Glas]: pic1.JPG "Glas"
[Platine]: pic3.JPG "Platine"
[Untersetzer]: pic2.JPG "Untersetzer"