/Modules/Mechanical/WINDGAUGE01A/CAD/lopatky.scad |
---|
--- Mechanical/WINDGAUGE01A/CAD/rotor1.scad (nonexistent) |
+++ Mechanical/WINDGAUGE01A/CAD/rotor1.scad (revision 4272) |
@@ -0,0 +1,105 @@ |
+$fn=40; // model faces resolution. |
+ |
+prumer_rotoru1=50; |
+vyska_rotoru1=5; |
+prumer_sroubu=3.2; |
+vyska_matky=3; |
+prumer_orechu=10; |
+sila_materialu=3; |
+sila_materialu_vule=0.2; |
+hloubka_prekryti=2; |
+ |
+ |
+//lopatka |
+hloubka_uchytu=20; |
+sila_uchytu=12; |
+vyska_uchytu=10; |
+tolerance_uchytu=0.1; |
+ |
+difference() |
+{ |
+union () |
+{ |
+ |
+ cylinder (h = vyska_rotoru1-hloubka_prekryti, r=prumer_rotoru1/2, center = true, $fn=100); |
+ |
+ |
+ translate([0,0,vyska_rotoru1/2]) |
+ |
+ cylinder (h = hloubka_prekryti, r=(prumer_rotoru1/2) -sila_materialu-sila_materialu_vule, center = true, $fn=100); |
+ |
+//otvory pro lopatky |
+ translate([0,0,-(vyska_rotoru1-hloubka_prekryti)/2-(vyska_uchytu+tolerance_uchytu)/2]) |
+ komponent(); |
+ |
+ } |
+ |
+//otvory pro uchyceni krytky rotoru |
+ translate([0,0,hloubka_prekryti/2]) |
+cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
+ |
+translate([0,0,-(vyska_rotoru1-hloubka_prekryti)/2+vyska_matky/2]) |
+cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
+ |
+ |
+//otvor pro uchyceni prvni lopatky |
+ translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,hloubka_prekryti/2]) |
+cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
+ |
+translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru1-hloubka_prekryti)/2+vyska_matky/2]) |
+cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
+ |
+//otvor pro uchyceni druhe lopatky |
+ rotate(a=[0,0,120]) |
+ translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,hloubka_prekryti/2]) |
+cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
+ |
+rotate(a=[0,0,120]) |
+translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru1-hloubka_prekryti)/2+vyska_matky/2]) |
+cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
+ |
+//otvor pro uchyceni treti lopatky |
+ rotate(a=[0,0,240]) |
+ translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,hloubka_prekryti/2]) |
+cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
+ |
+rotate(a=[0,0,240]) |
+translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru1-hloubka_prekryti)/2+vyska_matky/2]) |
+cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
+ |
+} |
+ |
+ |
+ |
+ |
+ |
+ |
+module komponent() |
+ { |
+ difference () |
+ { |
+ cylinder (h = vyska_uchytu+tolerance_uchytu, r=(prumer_rotoru1/2), center = true, $fn=100); |
+ |
+ cylinder (h = vyska_uchytu+2*tolerance_uchytu, r=(prumer_rotoru1/2-hloubka_uchytu+5), center = true, $fn=100); |
+ |
+ //dira pro prvni uchyt lopatky |
+ translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
+ cube([hloubka_uchytu,sila_uchytu+tolerance_uchytu,vyska_uchytu+2*tolerance_uchytu],true); |
+ |
+ //dira pro druhy uchyt lopatky |
+ |
+ rotate(a=[0,0,120]) |
+ |
+ translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
+ cube([hloubka_uchytu,sila_uchytu+tolerance_uchytu,vyska_uchytu+2*tolerance_uchytu],true); |
+ |
+ //dira pro treti uchyt lopatky |
+ |
+ rotate(a=[0,0,240]) |
+ |
+ translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
+ cube([hloubka_uchytu,sila_uchytu+tolerance_uchytu,vyska_uchytu+2*tolerance_uchytu],true); |
+ |
+ } |
+ |
+ } |
\ No newline at end of file |
/Modules/Mechanical/WINDGAUGE01A/CAD/rotor2.scad |
---|
0,0 → 1,95 |
$fn=40; // model faces resolution. |
prumer_rotoru1=50; |
vyska_rotoru1=5; |
vyska_rotoru2=5; |
prumer_sroubu=3.2; |
vyska_matky=3; |
prumer_orechu=10; |
sila_materialu=3; |
sila_materialu_vule=0.2; |
hloubka_prekryti=2; |
//lozisko |
lozisko_prumer_vnitrni=5; |
lozisko_prumer_vnejsi=16; |
lozisko_prekryv=1.5; |
//nastevní rotoru2 |
vyska_kryti=5; |
//lopatka |
hloubka_uchytu=20; |
sila_uchytu=12; |
vyska_uchytu=10; |
tolerance_uchytu=0.1; |
difference() |
{ |
union () |
{ |
cylinder (h = vyska_rotoru2, r=prumer_rotoru1/2, center = true, $fn=100); |
//kryci kroužek |
translate([0,0,-(vyska_rotoru2)/2-(vyska_kryti)/2]) |
komponent2(); |
} |
//otvory pro uchyceni krytky rotoru |
translate([0,0,hloubka_prekryti/2]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
translate([0,0,-(vyska_rotoru1-hloubka_prekryti)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
//otvor pro uchyceni prvni lopatky |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru2)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
//otvor pro uchyceni druhe lopatky |
rotate(a=[0,0,120]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
rotate(a=[0,0,120]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru2)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
//otvor pro uchyceni treti lopatky |
rotate(a=[0,0,240]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
rotate(a=[0,0,240]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru2)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
} |
module komponent2() |
{ |
difference () |
{ |
cylinder (h = vyska_kryti, r=(prumer_rotoru1/2), center = true, $fn=100); |
cylinder (h = vyska_kryti+0.1, r=(prumer_rotoru1/2-sila_materialu), center = true, $fn=100); |
} |
} |
/Modules/Mechanical/WINDGAUGE01A/CAD/stator1.scad |
---|
0,0 → 1,96 |
$fn=40; // model faces resolution. |
prumer_rotoru1=50; |
vyska_rotoru1=5; |
vyska_rotoru2=5; |
prumer_sroubu=3.2; |
vyska_matky=3; |
prumer_orechu=10; |
sila_materialu=3; |
sila_materialu_vule=0.2; |
hloubka_prekryti=2; |
//lozisko |
lozisko_prumer_vnitrni=5; |
lozisko_prumer_vnejsi=16; |
lozisko_vyska=5; |
lozisko_prekryv=1.5; |
//nastevní rotoru2 |
vyska_kryti=5; |
//lopatka |
hloubka_uchytu=20; |
sila_uchytu=12; |
vyska_uchytu=10; |
tolerance_uchytu=0.1; |
difference() |
{ |
union () |
{ |
cylinder (h = vyska_rotoru2, r=prumer_rotoru1/2, center = true, $fn=100); |
//kryci kroužek |
translate([0,0,-(vyska_rotoru2)/2-(vyska_kryti)/2]) |
komponent2(); |
} |
//otvory pro uchyceni krytky rotoru |
translate([0,0,hloubka_prekryti/2]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
translate([0,0,-(vyska_rotoru1-hloubka_prekryti)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
//otvor pro uchyceni prvni lopatky |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru2)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
//otvor pro uchyceni druhe lopatky |
rotate(a=[0,0,120]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
rotate(a=[0,0,120]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru2)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
//otvor pro uchyceni treti lopatky |
rotate(a=[0,0,240]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,0]) |
cylinder (h = vyska_rotoru1+0.1, r=prumer_sroubu/2, center = true, $fn=100); |
rotate(a=[0,0,240]) |
translate([hloubka_uchytu/2+(prumer_rotoru1/2-hloubka_uchytu),0,-(vyska_rotoru2)/2+vyska_matky/2]) |
cylinder (h = vyska_matky+0.1, r=prumer_orechu/2, center = true, $fn=100); |
} |
module komponent2() |
{ |
difference () |
{ |
cylinder (h = vyska_kryti, r=(prumer_rotoru1/2), center = true, $fn=100); |
cylinder (h = vyska_kryti+0.1, r=(prumer_rotoru1/2-sila_materialu), center = true, $fn=100); |
} |
} |
/Modules/Mechanical/WINDGAUGE01A/PrjInfo.txt |
---|
0,0 → 1,13 |
[InfoShortDescription.en] |
Wind-gauge |
[InfoShortDescription.cs] |
Anemometr |
[InfoLongDescription.en] |
[InfoLongDescription.cs] |
[End] |
/Modules/Mechanical/WINDGAUGE01A/TODO.txt |
---|
0,0 → 1,0 |
|
/Modules/PowerSupply/LION2CELL01C/SCH_PCB/LION2CELL01C-cache.lib |
---|
1,24 → 1,24 |
EESchema-LIBRARY Version 2.3 |
#encoding utf-8 |
# |
# 2x18650_LION |
# 2x18650_LION-RESCUE-LION2CELL01C |
# |
DEF 2x18650_LION BT 0 0 Y Y 1 F N |
F0 "BT" 0 200 50 H V C CNN |
F1 "2x18650_LION" 50 300 50 H V C CNN |
F2 "" 0 0 60 H V C CNN |
F3 "" 0 0 60 H V C CNN |
DEF ~2x18650_LION-RESCUE-LION2CELL01C BT 0 0 Y Y 1 F N |
F0 "BT" -150 0 50 V V C CNN |
F1 "2x18650_LION-RESCUE-LION2CELL01C" -250 0 50 V I C CNN |
F2 "" 1600 350 60 H V C CNN |
F3 "" 1600 350 60 H V C CNN |
DRAW |
P 2 0 1 0 -100 0 -150 0 N |
P 2 0 1 6 -100 90 -100 -89 N |
P 2 0 1 6 -31 50 -31 -50 N |
P 2 0 1 6 39 90 39 -89 N |
P 2 0 1 0 100 0 150 0 N |
P 2 0 1 6 100 50 100 -50 N |
X + 1 -300 0 150 R 50 50 1 1 P |
X ~ 2 0 -250 200 U 50 50 1 1 U N |
X ~ 3 0 -250 150 U 50 50 1 1 P |
X - 4 300 0 150 L 50 50 1 1 P |
S 0 -100 0 -50 0 1 0 N |
S 0 100 0 -50 0 1 0 N |
S 50 -150 -50 -150 0 1 0 N |
S 50 100 -50 100 0 1 0 N |
S 100 -100 -100 -100 0 1 0 N |
S 100 150 -100 150 0 1 0 N |
X + 1 0 300 150 D 50 50 1 1 P |
X ~ 3 200 0 200 L 50 50 1 1 U |
X - 4 0 -300 150 U 50 50 1 1 P |
X 2 ~ 200 0 200 L 50 50 1 1 U N |
ENDDRAW |
ENDDEF |
# |
93,8 → 93,8 |
X REGIN 6 650 -1700 200 L 50 50 1 1 U |
X REG25 7 650 -650 200 L 50 50 1 1 U |
X VSS 8 0 -1950 200 U 50 50 1 1 U |
X SRP 9 650 200 200 L 50 50 1 1 U |
X SRN 10 650 600 200 L 50 50 1 1 U |
X SRP 9 650 600 200 L 50 50 1 1 U |
X SRN 10 650 200 200 L 50 50 1 1 U |
X P6/TS 11 650 -150 200 L 50 50 1 1 U |
X P5/HDQ 12 -550 -550 200 R 50 50 1 1 U |
X P4/SCL 13 -550 -450 200 R 50 50 1 1 U |
102,25 → 102,23 |
ENDDRAW |
ENDDEF |
# |
# C |
# C-RESCUE-LION2CELL01C |
# |
DEF C C 0 10 N Y 1 F N |
F0 "C" 25 100 50 H V L CNN |
F1 "C" 25 -100 50 H V L CNN |
DEF C-RESCUE-LION2CELL01C C 0 10 N Y 1 F N |
F0 "C" 0 100 40 H V L CNN |
F1 "C-RESCUE-LION2CELL01C" 6 -85 40 H V L CNN |
F2 "" 38 -150 30 H V C CNN |
F3 "" 0 0 60 H V C CNN |
$FPLIST |
SM* |
C? |
C_????_* |
C_???? |
SMD*_c |
Capacitor* |
C1-1 |
$ENDFPLIST |
DRAW |
P 2 0 1 20 -80 -30 80 -30 N |
P 2 0 1 20 -80 30 80 30 N |
X ~ 1 0 150 110 D 40 40 1 1 P |
X ~ 2 0 -150 110 U 40 40 1 1 P |
X ~ 1 0 200 170 D 40 40 1 1 P |
X ~ 2 0 -200 170 U 40 40 1 1 P |
ENDDRAW |
ENDDEF |
# |
257,11 → 255,11 |
ENDDRAW |
ENDDEF |
# |
# LED |
# LED-RESCUE-LION2CELL01C |
# |
DEF LED D 0 40 Y N 1 F N |
DEF LED-RESCUE-LION2CELL01C D 0 40 Y N 1 F N |
F0 "D" 0 100 50 H V C CNN |
F1 "LED" 0 -100 50 H V C CNN |
F1 "LED-RESCUE-LION2CELL01C" 0 -100 50 H V C CNN |
F2 "" 0 0 60 H V C CNN |
F3 "" 0 0 60 H V C CNN |
$FPLIST |
274,12 → 272,12 |
LEDV |
$ENDFPLIST |
DRAW |
P 2 0 1 0 -50 50 -50 -50 N |
P 3 0 1 0 -80 -25 -125 -65 -120 -40 N |
P 3 0 1 0 -65 -40 -110 -80 -105 -55 N |
P 3 0 1 0 50 50 -50 0 50 -50 F |
X K 1 -200 0 150 R 40 40 1 1 P |
X A 2 200 0 150 L 40 40 1 1 P |
P 2 0 1 0 50 50 50 -50 N |
P 3 0 1 0 -50 50 50 0 -50 -50 F |
P 3 0 1 0 65 -40 110 -80 105 -55 N |
P 3 0 1 0 80 -25 125 -65 120 -40 N |
X A 1 -200 0 150 R 40 40 1 1 P |
X K 2 200 0 150 L 40 40 1 1 P |
ENDDRAW |
ENDDEF |
# |
358,21 → 356,24 |
ENDDRAW |
ENDDEF |
# |
# R |
# R-RESCUE-LION2CELL01C |
# |
DEF R R 0 0 N Y 1 F N |
F0 "R" 80 0 50 V V C CNN |
F1 "R" 0 0 50 V V C CNN |
DEF R-RESCUE-LION2CELL01C R 0 0 N Y 1 F N |
F0 "R" 80 0 40 V V C CNN |
F1 "R-RESCUE-LION2CELL01C" 7 1 40 V V C CNN |
F2 "" -70 0 30 V V C CNN |
F3 "" 0 0 30 H V C CNN |
$FPLIST |
R_* |
Resistor_* |
R? |
SM0603 |
SM0805 |
R?-* |
SM1206 |
$ENDFPLIST |
DRAW |
S -40 -100 40 100 0 1 10 N |
X ~ 1 0 150 50 D 60 60 1 1 P |
X ~ 2 0 -150 50 U 60 60 1 1 P |
S -40 150 40 -150 0 1 12 N |
X ~ 1 0 250 100 D 60 60 1 1 P |
X ~ 2 0 -250 100 U 60 60 1 1 P |
ENDDRAW |
ENDDEF |
# |
417,11 → 418,11 |
ENDDRAW |
ENDDEF |
# |
# ZENER |
# ZENER-RESCUE-LION2CELL01C |
# |
DEF ZENER D 0 40 N N 1 F N |
DEF ZENER-RESCUE-LION2CELL01C D 0 40 N N 1 F N |
F0 "D" 0 100 50 H V C CNN |
F1 "ZENER" 0 -100 50 H V C CNN |
F1 "ZENER-RESCUE-LION2CELL01C" 0 -100 40 H V C CNN |
F2 "" 0 0 60 H V C CNN |
F3 "" 0 0 60 H V C CNN |
$FPLIST |
430,10 → 431,10 |
SM* |
$ENDFPLIST |
DRAW |
P 5 0 1 8 -70 50 -50 30 -50 -30 -30 -50 -30 -50 N |
P 5 0 1 0 -50 0 50 50 50 -50 -50 0 -50 0 F |
X K 1 -200 0 150 R 50 50 1 1 P |
X A 2 200 0 150 L 50 50 1 1 P |
P 5 0 1 0 50 0 -50 50 -50 -50 50 0 50 0 F |
P 5 0 1 8 70 50 50 30 50 -30 30 -50 30 -50 N |
X A 1 -200 0 150 R 40 40 1 1 P |
X K 2 200 0 150 L 40 40 1 1 P |
ENDDRAW |
ENDDEF |
# |
/Modules/PowerSupply/LION2CELL01C/SCH_PCB/LION2CELL01C-rescue.lib |
---|
0,0 → 1,112 |
EESchema-LIBRARY Version 2.3 |
#encoding utf-8 |
# |
# 2x18650_LION-RESCUE-LION2CELL01C |
# |
DEF ~2x18650_LION-RESCUE-LION2CELL01C BT 0 0 Y Y 1 F N |
F0 "BT" -150 0 50 V V C CNN |
F1 "2x18650_LION-RESCUE-LION2CELL01C" -250 0 50 V I C CNN |
F2 "" 1600 350 60 H V C CNN |
F3 "" 1600 350 60 H V C CNN |
DRAW |
S 0 -100 0 -50 0 1 0 N |
S 0 100 0 -50 0 1 0 N |
S 50 -150 -50 -150 0 1 0 N |
S 50 100 -50 100 0 1 0 N |
S 100 -100 -100 -100 0 1 0 N |
S 100 150 -100 150 0 1 0 N |
X + 1 0 300 150 D 50 50 1 1 P |
X ~ 3 200 0 200 L 50 50 1 1 U |
X - 4 0 -300 150 U 50 50 1 1 P |
X 2 ~ 200 0 200 L 50 50 1 1 U N |
ENDDRAW |
ENDDEF |
# |
# C-RESCUE-LION2CELL01C |
# |
DEF C-RESCUE-LION2CELL01C C 0 10 N Y 1 F N |
F0 "C" 0 100 40 H V L CNN |
F1 "C-RESCUE-LION2CELL01C" 6 -85 40 H V L CNN |
F2 "" 38 -150 30 H V C CNN |
F3 "" 0 0 60 H V C CNN |
$FPLIST |
SM* |
C? |
C1-1 |
$ENDFPLIST |
DRAW |
P 2 0 1 20 -80 -30 80 -30 N |
P 2 0 1 20 -80 30 80 30 N |
X ~ 1 0 200 170 D 40 40 1 1 P |
X ~ 2 0 -200 170 U 40 40 1 1 P |
ENDDRAW |
ENDDEF |
# |
# LED-RESCUE-LION2CELL01C |
# |
DEF LED-RESCUE-LION2CELL01C D 0 40 Y N 1 F N |
F0 "D" 0 100 50 H V C CNN |
F1 "LED-RESCUE-LION2CELL01C" 0 -100 50 H V C CNN |
F2 "" 0 0 60 H V C CNN |
F3 "" 0 0 60 H V C CNN |
$FPLIST |
LED-3MM |
LED-5MM |
LED-10MM |
LED-0603 |
LED-0805 |
LED-1206 |
LEDV |
$ENDFPLIST |
DRAW |
P 2 0 1 0 50 50 50 -50 N |
P 3 0 1 0 -50 50 50 0 -50 -50 F |
P 3 0 1 0 65 -40 110 -80 105 -55 N |
P 3 0 1 0 80 -25 125 -65 120 -40 N |
X A 1 -200 0 150 R 40 40 1 1 P |
X K 2 200 0 150 L 40 40 1 1 P |
ENDDRAW |
ENDDEF |
# |
# R-RESCUE-LION2CELL01C |
# |
DEF R-RESCUE-LION2CELL01C R 0 0 N Y 1 F N |
F0 "R" 80 0 40 V V C CNN |
F1 "R-RESCUE-LION2CELL01C" 7 1 40 V V C CNN |
F2 "" -70 0 30 V V C CNN |
F3 "" 0 0 30 H V C CNN |
$FPLIST |
R? |
SM0603 |
SM0805 |
R?-* |
SM1206 |
$ENDFPLIST |
DRAW |
S -40 150 40 -150 0 1 12 N |
X ~ 1 0 250 100 D 60 60 1 1 P |
X ~ 2 0 -250 100 U 60 60 1 1 P |
ENDDRAW |
ENDDEF |
# |
# ZENER-RESCUE-LION2CELL01C |
# |
DEF ZENER-RESCUE-LION2CELL01C D 0 40 N N 1 F N |
F0 "D" 0 100 50 H V C CNN |
F1 "ZENER-RESCUE-LION2CELL01C" 0 -100 40 H V C CNN |
F2 "" 0 0 60 H V C CNN |
F3 "" 0 0 60 H V C CNN |
$FPLIST |
D? |
SO* |
SM* |
$ENDFPLIST |
DRAW |
P 5 0 1 0 50 0 -50 50 -50 -50 50 0 50 0 F |
P 5 0 1 8 70 50 50 30 50 -30 30 -50 30 -50 N |
X A 1 -200 0 150 R 40 40 1 1 P |
X K 2 200 0 150 L 40 40 1 1 P |
ENDDRAW |
ENDDEF |
# |
#End Library |
/Modules/PowerSupply/LION2CELL01C/SCH_PCB/LION2CELL01C.bak |
---|
10,6 → 10,7 |
LIBS:adc-dac |
LIBS:memory |
LIBS:xilinx |
LIBS:special |
LIBS:microcontrollers |
LIBS:dsp |
LIBS:microchip |
116,8 → 117,8 |
L LED D3 |
U 1 1 55327099 |
P 2250 1550 |
F 0 "D3" H 2250 1650 50 0000 C CNN |
F 1 "LED" H 2250 1450 50 0000 C CNN |
F 0 "D3" H 2150 1600 50 0000 C CNN |
F 1 "LED" H 2400 1450 50 0000 C CNN |
F 2 "Mlab_D:LED_1206" H 2250 1550 60 0001 C CNN |
F 3 "" H 2250 1550 60 0000 C CNN |
1 2250 1550 |
127,8 → 128,8 |
L LED D4 |
U 1 1 55327102 |
P 2450 1550 |
F 0 "D4" H 2450 1650 50 0000 C CNN |
F 1 "LED" H 2450 1450 50 0000 C CNN |
F 0 "D4" H 2350 1600 50 0000 C CNN |
F 1 "LED" H 2600 1450 50 0000 C CNN |
F 2 "Mlab_D:LED_1206" H 2450 1550 60 0001 C CNN |
F 3 "" H 2450 1550 60 0000 C CNN |
1 2450 1550 |
138,8 → 139,8 |
L LED D5 |
U 1 1 55327171 |
P 2650 1550 |
F 0 "D5" H 2650 1650 50 0000 C CNN |
F 1 "LED" H 2650 1450 50 0000 C CNN |
F 0 "D5" H 2550 1600 50 0000 C CNN |
F 1 "LED" H 2800 1450 50 0000 C CNN |
F 2 "Mlab_D:LED_1206" H 2650 1550 60 0001 C CNN |
F 3 "" H 2650 1550 60 0000 C CNN |
1 2650 1550 |
205,7 → 206,7 |
U 1 1 5532745E |
P 1350 4500 |
F 0 "R1" V 1430 4500 40 0000 C CNN |
F 1 "1K" V 1357 4501 40 0000 C CNN |
F 1 "160R" V 1357 4501 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 1280 4500 30 0001 C CNN |
F 3 "" H 1350 4500 30 0000 C CNN |
1 1350 4500 |
585,7 → 586,7 |
1 5650 1150 |
1 0 0 -1 |
$EndComp |
Text Label 6800 1400 0 60 ~ 0 |
Text Label 7350 1400 0 60 ~ 0 |
BATTERY+ |
$Comp |
L 2x18650_LION BT1 |
596,7 → 597,7 |
F 2 "Mlab_Batery:2LION" H 2300 7600 60 0001 C CNN |
F 3 "" H 2300 7600 60 0000 C CNN |
1 700 7250 |
0 -1 1 0 |
1 0 0 -1 |
$EndComp |
$Comp |
L FUSE F1 |
633,7 → 634,7 |
$EndComp |
Text Label 2100 6950 0 60 ~ 0 |
BATTERY+ |
Text Label 990 7250 0 60 ~ 0 |
Text Label 950 7250 0 60 ~ 0 |
BAT-MIDPOINT |
Text Notes 850 6750 0 118 ~ 0 |
BATTERY PACK |
719,7 → 720,7 |
U 1 1 55332E36 |
P 1950 5700 |
F 0 "C5" H 1950 5800 40 0000 L CNN |
F 1 "100nF" H 1956 5615 40 0000 L CNN |
F 1 "330nF" H 1956 5615 40 0000 L CNN |
F 2 "Mlab_R:SMD-0805" H 1988 5550 30 0001 C CNN |
F 3 "" H 1950 5700 60 0000 C CNN |
1 1950 5700 |
741,7 → 742,7 |
U 1 1 5533362D |
P 1350 4900 |
F 0 "R2" V 1430 4900 40 0000 C CNN |
F 1 "1K" V 1357 4901 40 0000 C CNN |
F 1 "260R" V 1357 4901 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 1280 4900 30 0001 C CNN |
F 3 "" H 1350 4900 30 0000 C CNN |
1 1350 4900 |
752,7 → 753,7 |
U 1 1 5533367D |
P 1350 5200 |
F 0 "R3" V 1430 5200 40 0000 C CNN |
F 1 "240R" V 1357 5201 40 0000 C CNN |
F 1 "100R" V 1357 5201 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 1280 5200 30 0001 C CNN |
F 3 "" H 1350 5200 30 0000 C CNN |
1 1350 5200 |
829,7 → 830,7 |
Text Label 950 4500 0 60 ~ 0 |
BAT+ |
Text Label 3300 3900 1 60 ~ 0 |
BATTERY+ |
BAT+ |
Text Label 4150 3900 1 60 ~ 0 |
BATTERY+ |
$Comp |
849,8 → 850,8 |
L BQ34Z100 U3 |
U 1 1 553390BE |
P 5500 4300 |
F 0 "U3" H 5550 4600 60 0000 C CNN |
F 1 "BQ34Z100" H 5600 4450 60 0000 C CNN |
F 0 "U3" H 5150 2450 60 0000 C CNN |
F 1 "BQ34Z100" H 5550 4700 60 0000 C CNN |
F 2 "Mlab_IO:TSSOP-14_4.4x5mm_Pitch0.65mm" H 5700 4250 60 0001 C CNN |
F 3 "" H 5700 4250 60 0000 C CNN |
1 5500 4300 |
1499,8 → 1500,8 |
1 3450 7600 |
1 0 0 -1 |
$EndComp |
Text Label 3550 7250 0 60 ~ 0 |
BATTERY+ |
Text Label 4050 7250 0 60 ~ 0 |
BAT+ |
$Comp |
L GND #PWR035 |
U 1 1 55367581 |
1889,11 → 1890,7 |
8050 2650 8050 2900 |
Wire Wire Line |
6750 3700 7650 3700 |
Wire Wire Line |
6150 3700 6450 3700 |
Connection ~ 6250 3700 |
Wire Wire Line |
6150 4100 6450 4100 |
Connection ~ 6250 4100 |
Wire Wire Line |
6750 4100 7400 4100 |
1908,9 → 1905,9 |
7250 3700 7250 4200 |
Connection ~ 7250 3700 |
Wire Wire Line |
7250 4600 7250 4550 |
7250 4500 7250 4600 |
Wire Wire Line |
7000 4600 7000 4550 |
7000 4500 7000 4600 |
Wire Wire Line |
8200 1650 8150 1650 |
Wire Wire Line |
2068,8 → 2065,6 |
Wire Wire Line |
3300 4900 3300 4850 |
Connection ~ 3300 4500 |
Wire Wire Line |
950 7250 990 7250 |
Connection ~ 6800 5900 |
Connection ~ 7300 5900 |
Wire Wire Line |
2082,4 → 2077,30 |
6400 5550 6400 5500 |
Wire Wire Line |
7600 3800 7600 3700 |
Wire Wire Line |
950 7250 900 7250 |
$Comp |
L FUSE 2A |
U 1 1 563F594A |
P 7050 1400 |
F 0 "2A" H 7150 1450 40 0000 C CNN |
F 1 "FUSE" H 6950 1350 40 0000 C CNN |
F 2 "Mlab_F:2410" H 7050 1400 60 0001 C CNN |
F 3 "" H 7050 1400 60 0000 C CNN |
1 7050 1400 |
1 0 0 -1 |
$EndComp |
Wire Wire Line |
7350 1400 7300 1400 |
$Comp |
L FUSE 1,1 |
U 1 1 563F69AE |
P 3800 7250 |
F 0 "1,1 A" H 3900 7300 40 0000 C CNN |
F 1 "FUSE" H 3700 7200 40 0000 C CNN |
F 2 "Mlab_F:2410" H 3800 7250 60 0001 C CNN |
F 3 "" H 3800 7250 60 0000 C CNN |
1 3800 7250 |
1 0 0 -1 |
$EndComp |
$EndSCHEMATC |
/Modules/PowerSupply/LION2CELL01C/SCH_PCB/LION2CELL01C.pro |
---|
1,4 → 1,4 |
update=14. 5. 2015 7:35:49 |
update=8.11.2015 10:05:48 |
version=1 |
last_client=kicad |
[cvpcb] |
27,55 → 27,6 |
ModuleOutlineThickness=0.150000000000 |
[general] |
version=1 |
[eeschema] |
version=1 |
LibDir=../../../../../kicad-mlab/symbols |
[eeschema/libraries] |
LibName1=LION2CELL01B-rescue |
LibName2=power |
LibName3=device |
LibName4=transistors |
LibName5=conn |
LibName6=linear |
LibName7=regul |
LibName8=74xx |
LibName9=cmos4000 |
LibName10=adc-dac |
LibName11=memory |
LibName12=xilinx |
LibName13=special |
LibName14=microcontrollers |
LibName15=dsp |
LibName16=microchip |
LibName17=analog_switches |
LibName18=motorola |
LibName19=texas |
LibName20=intel |
LibName21=audio |
LibName22=interface |
LibName23=digital-audio |
LibName24=philips |
LibName25=display |
LibName26=cypress |
LibName27=siliconi |
LibName28=opto |
LibName29=atmel |
LibName30=contrib |
LibName31=valves |
LibName32=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/ADC-DAC |
LibName33=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/asp-134604-01_(fmc) |
LibName34=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/clock |
LibName35=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/header |
LibName36=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/Jumpers |
LibName37=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/konektory |
LibName38=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/mechanical |
LibName39=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/MLAB_D |
LibName40=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/MLAB_IO |
LibName41=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/MLAB_Jumpers |
LibName42=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/OpAmp |
LibName43=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/sata7-67491-1030 |
LibName44=MLAB_BATERY |
LibName45=MLAB_T |
[schematic_editor] |
version=1 |
PageLayoutDescrFile= |
89,3 → 40,53 |
RptD_Y=100 |
RptLab=1 |
LabSize=60 |
[eeschema] |
version=1 |
LibDir=../../../../../kicad-mlab/symbols |
[eeschema/libraries] |
LibName1=LION2CELL01C-rescue |
LibName2=LION2CELL01B-rescue |
LibName3=power |
LibName4=device |
LibName5=transistors |
LibName6=conn |
LibName7=linear |
LibName8=regul |
LibName9=74xx |
LibName10=cmos4000 |
LibName11=adc-dac |
LibName12=memory |
LibName13=xilinx |
LibName14=special |
LibName15=microcontrollers |
LibName16=dsp |
LibName17=microchip |
LibName18=analog_switches |
LibName19=motorola |
LibName20=texas |
LibName21=intel |
LibName22=audio |
LibName23=interface |
LibName24=digital-audio |
LibName25=philips |
LibName26=display |
LibName27=cypress |
LibName28=siliconi |
LibName29=opto |
LibName30=atmel |
LibName31=contrib |
LibName32=valves |
LibName33=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/ADC-DAC |
LibName34=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/asp-134604-01_(fmc) |
LibName35=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/clock |
LibName36=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/header |
LibName37=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/Jumpers |
LibName38=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/konektory |
LibName39=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/mechanical |
LibName40=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/MLAB_D |
LibName41=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/MLAB_IO |
LibName42=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/MLAB_Jumpers |
LibName43=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/OpAmp |
LibName44=C:/Chroust/Zaloha/stare/kicad-mlab/symbols/sata7-67491-1030 |
LibName45=MLAB_BATERY |
LibName46=MLAB_T |
/Modules/PowerSupply/LION2CELL01C/SCH_PCB/LION2CELL01C.sch |
---|
1,4 → 1,5 |
EESchema Schematic File Version 2 |
LIBS:LION2CELL01C-rescue |
LIBS:power |
LIBS:device |
LIBS:transistors |
28,6 → 29,20 |
LIBS:atmel |
LIBS:contrib |
LIBS:valves |
LIBS:ADC-DAC |
LIBS:asp-134604-01_(fmc) |
LIBS:clock |
LIBS:header |
LIBS:Jumpers |
LIBS:konektory |
LIBS:mechanical |
LIBS:MLAB_D |
LIBS:MLAB_IO |
LIBS:MLAB_Jumpers |
LIBS:OpAmp |
LIBS:sata7-67491-1030 |
LIBS:MLAB_BATERY |
LIBS:MLAB_T |
LIBS:LION2CELL01C-cache |
EELAYER 25 0 |
EELAYER END |
77,7 → 92,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C3 |
L C-RESCUE-LION2CELL01C C3 |
U 1 1 55327031 |
P 1750 1000 |
F 0 "C3" H 1750 1100 40 0000 L CNN |
88,7 → 103,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R5 |
L R-RESCUE-LION2CELL01C R5 |
U 1 1 55327060 |
P 2050 1050 |
F 0 "R5" V 2130 1050 40 0000 C CNN |
99,7 → 114,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L LED D3 |
L LED-RESCUE-LION2CELL01C D3 |
U 1 1 55327099 |
P 2250 1550 |
F 0 "D3" H 2150 1600 50 0000 C CNN |
110,7 → 125,7 |
0 1 1 0 |
$EndComp |
$Comp |
L LED D4 |
L LED-RESCUE-LION2CELL01C D4 |
U 1 1 55327102 |
P 2450 1550 |
F 0 "D4" H 2350 1600 50 0000 C CNN |
121,7 → 136,7 |
0 1 1 0 |
$EndComp |
$Comp |
L LED D5 |
L LED-RESCUE-LION2CELL01C D5 |
U 1 1 55327171 |
P 2650 1550 |
F 0 "D5" H 2550 1600 50 0000 C CNN |
154,7 → 169,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L R R6 |
L R-RESCUE-LION2CELL01C R6 |
U 1 1 553273D1 |
P 2250 1050 |
F 0 "R6" V 2330 1050 40 0000 C CNN |
165,7 → 180,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R7 |
L R-RESCUE-LION2CELL01C R7 |
U 1 1 55327407 |
P 2450 1050 |
F 0 "R7" V 2530 1050 40 0000 C CNN |
176,7 → 191,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R8 |
L R-RESCUE-LION2CELL01C R8 |
U 1 1 55327431 |
P 2650 1050 |
F 0 "R8" V 2730 1050 40 0000 C CNN |
187,11 → 202,11 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R1 |
L R-RESCUE-LION2CELL01C R1 |
U 1 1 5532745E |
P 1350 4500 |
F 0 "R1" V 1430 4500 40 0000 C CNN |
F 1 "1K" V 1357 4501 40 0000 C CNN |
F 1 "160R" V 1357 4501 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 1280 4500 30 0001 C CNN |
F 3 "" H 1350 4500 30 0000 C CNN |
1 1350 4500 |
231,7 → 246,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C6 |
L C-RESCUE-LION2CELL01C C6 |
U 1 1 553278A0 |
P 2250 2600 |
F 0 "C6" H 2250 2700 40 0000 L CNN |
242,7 → 257,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C7 |
L C-RESCUE-LION2CELL01C C7 |
U 1 1 553278E9 |
P 2850 2600 |
F 0 "C7" H 2850 2700 40 0000 L CNN |
319,7 → 334,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L R R4 |
L R-RESCUE-LION2CELL01C R4 |
U 1 1 553286A8 |
P 2000 2600 |
F 0 "R4" V 2080 2600 40 0000 C CNN |
374,7 → 389,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R13 |
L R-RESCUE-LION2CELL01C R13 |
U 1 1 553294AE |
P 5050 2100 |
F 0 "R13" V 5130 2100 40 0000 C CNN |
396,7 → 411,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C9 |
L C-RESCUE-LION2CELL01C C9 |
U 1 1 55329649 |
P 4800 2600 |
F 0 "C9" H 4800 2700 40 0000 L CNN |
407,7 → 422,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R11 |
L R-RESCUE-LION2CELL01C R11 |
U 1 1 55329993 |
P 4250 2800 |
F 0 "R11" V 4330 2800 40 0000 C CNN |
418,7 → 433,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R12 |
L R-RESCUE-LION2CELL01C R12 |
U 1 1 553299F8 |
P 4450 2800 |
F 0 "R12" V 4530 2800 40 0000 C CNN |
451,7 → 466,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R14 |
L R-RESCUE-LION2CELL01C R14 |
U 1 1 55329D9B |
P 5350 2600 |
F 0 "R14" V 5430 2600 40 0000 C CNN |
484,7 → 499,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R15 |
L R-RESCUE-LION2CELL01C R15 |
U 1 1 5532A4FE |
P 5550 2600 |
F 0 "R15" V 5630 2600 40 0000 C CNN |
506,7 → 521,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R16 |
L R-RESCUE-LION2CELL01C R16 |
U 1 1 5532AC71 |
P 6300 1400 |
F 0 "R16" V 6380 1400 40 0000 C CNN |
517,7 → 532,7 |
0 1 1 0 |
$EndComp |
$Comp |
L C C11 |
L C-RESCUE-LION2CELL01C C11 |
U 1 1 5532AF06 |
P 6050 2600 |
F 0 "C11" H 6050 2700 40 0000 L CNN |
571,10 → 586,10 |
1 5650 1150 |
1 0 0 -1 |
$EndComp |
Text Label 6800 1400 0 60 ~ 0 |
Text Label 7350 1400 0 60 ~ 0 |
BATTERY+ |
$Comp |
L 2x18650_LION BT1 |
L 2x18650_LION-RESCUE-LION2CELL01C BT1 |
U 1 1 5532C7C3 |
P 700 7250 |
F 0 "BT1" V 550 7250 50 0000 C CNN |
582,7 → 597,7 |
F 2 "Mlab_Batery:2LION" H 2300 7600 60 0001 C CNN |
F 3 "" H 2300 7600 60 0000 C CNN |
1 700 7250 |
0 -1 1 0 |
1 0 0 -1 |
$EndComp |
$Comp |
L FUSE F1 |
619,7 → 634,7 |
$EndComp |
Text Label 2100 6950 0 60 ~ 0 |
BATTERY+ |
Text Label 990 7250 0 60 ~ 0 |
Text Label 950 7250 0 60 ~ 0 |
BAT-MIDPOINT |
Text Notes 850 6750 0 118 ~ 0 |
BATTERY PACK |
653,7 → 668,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R22 |
L R-RESCUE-LION2CELL01C R22 |
U 1 1 553309C6 |
P 7600 3950 |
F 0 "R22" V 7680 3950 40 0000 C CNN |
690,7 → 705,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C4 |
L C-RESCUE-LION2CELL01C C4 |
U 1 1 55332719 |
P 1950 4700 |
F 0 "C4" H 1950 4800 40 0000 L CNN |
701,11 → 716,11 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C5 |
L C-RESCUE-LION2CELL01C C5 |
U 1 1 55332E36 |
P 1950 5700 |
F 0 "C5" H 1950 5800 40 0000 L CNN |
F 1 "100nF" H 1956 5615 40 0000 L CNN |
F 1 "330nF" H 1956 5615 40 0000 L CNN |
F 2 "Mlab_R:SMD-0805" H 1988 5550 30 0001 C CNN |
F 3 "" H 1950 5700 60 0000 C CNN |
1 1950 5700 |
712,7 → 727,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C1 |
L C-RESCUE-LION2CELL01C C1 |
U 1 1 55332E89 |
P 1650 5700 |
F 0 "C1" H 1650 5800 40 0000 L CNN |
723,11 → 738,11 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R2 |
L R-RESCUE-LION2CELL01C R2 |
U 1 1 5533362D |
P 1350 4900 |
F 0 "R2" V 1430 4900 40 0000 C CNN |
F 1 "1K" V 1357 4901 40 0000 C CNN |
F 1 "260R" V 1357 4901 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 1280 4900 30 0001 C CNN |
F 3 "" H 1350 4900 30 0000 C CNN |
1 1350 4900 |
734,11 → 749,11 |
0 1 1 0 |
$EndComp |
$Comp |
L R R3 |
L R-RESCUE-LION2CELL01C R3 |
U 1 1 5533367D |
P 1350 5200 |
F 0 "R3" V 1430 5200 40 0000 C CNN |
F 1 "240R" V 1357 5201 40 0000 C CNN |
F 1 "100R" V 1357 5201 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 1280 5200 30 0001 C CNN |
F 3 "" H 1350 5200 30 0000 C CNN |
1 1350 5200 |
745,7 → 760,7 |
0 1 1 0 |
$EndComp |
$Comp |
L C C8 |
L C-RESCUE-LION2CELL01C C8 |
U 1 1 55333807 |
P 3300 4700 |
F 0 "C8" H 3300 4800 40 0000 L CNN |
767,7 → 782,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R9 |
L R-RESCUE-LION2CELL01C R9 |
U 1 1 55333AC0 |
P 3300 4200 |
F 0 "R9" V 3380 4200 40 0000 C CNN |
815,7 → 830,7 |
Text Label 950 4500 0 60 ~ 0 |
BAT+ |
Text Label 3300 3900 1 60 ~ 0 |
BATTERY+ |
BAT+ |
Text Label 4150 3900 1 60 ~ 0 |
BATTERY+ |
$Comp |
867,7 → 882,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R27 |
L R-RESCUE-LION2CELL01C R27 |
U 1 1 5533AE30 |
P 9750 1350 |
F 0 "R27" V 9830 1350 40 0000 C CNN |
878,7 → 893,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R28 |
L R-RESCUE-LION2CELL01C R28 |
U 1 1 5533B2B7 |
P 9750 1500 |
F 0 "R28" V 9830 1500 40 0000 C CNN |
889,7 → 904,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R29 |
L R-RESCUE-LION2CELL01C R29 |
U 1 1 5533B2FF |
P 9750 1650 |
F 0 "R29" V 9830 1650 40 0000 C CNN |
900,7 → 915,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R30 |
L R-RESCUE-LION2CELL01C R30 |
U 1 1 5533B34C |
P 9750 1800 |
F 0 "R30" V 9830 1800 40 0000 C CNN |
911,7 → 926,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R31 |
L R-RESCUE-LION2CELL01C R31 |
U 1 1 5533B398 |
P 9750 1950 |
F 0 "R31" V 9830 1950 40 0000 C CNN |
922,7 → 937,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R32 |
L R-RESCUE-LION2CELL01C R32 |
U 1 1 5533B3E7 |
P 9750 2100 |
F 0 "R32" V 9830 2100 40 0000 C CNN |
933,7 → 948,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R33 |
L R-RESCUE-LION2CELL01C R33 |
U 1 1 5533B433 |
P 9750 2250 |
F 0 "R33" V 9830 2250 40 0000 C CNN |
944,7 → 959,7 |
0 1 1 0 |
$EndComp |
$Comp |
L LED D7 |
L LED-RESCUE-LION2CELL01C D7 |
U 1 1 5533B6A6 |
P 10300 1350 |
F 0 "D7" H 10150 1400 50 0000 C CNN |
955,7 → 970,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L LED D8 |
L LED-RESCUE-LION2CELL01C D8 |
U 1 1 5533D3C7 |
P 10300 1500 |
F 0 "D8" H 10150 1550 50 0000 C CNN |
966,7 → 981,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L LED D9 |
L LED-RESCUE-LION2CELL01C D9 |
U 1 1 5533D416 |
P 10300 1650 |
F 0 "D9" H 10150 1700 50 0000 C CNN |
977,7 → 992,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L LED D10 |
L LED-RESCUE-LION2CELL01C D10 |
U 1 1 5533D5C2 |
P 10300 1800 |
F 0 "D10" H 10150 1850 50 0000 C CNN |
988,7 → 1003,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L LED D11 |
L LED-RESCUE-LION2CELL01C D11 |
U 1 1 5533D613 |
P 10300 1950 |
F 0 "D11" H 10150 2000 50 0000 C CNN |
999,7 → 1014,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L LED D12 |
L LED-RESCUE-LION2CELL01C D12 |
U 1 1 5533D669 |
P 10300 2100 |
F 0 "D12" H 10150 2150 50 0000 C CNN |
1010,7 → 1025,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L LED D13 |
L LED-RESCUE-LION2CELL01C D13 |
U 1 1 5533D6BC |
P 10300 2250 |
F 0 "D13" H 10150 2300 50 0000 C CNN |
1032,7 → 1047,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C18 |
L C-RESCUE-LION2CELL01C C18 |
U 1 1 55340845 |
P 8050 2500 |
F 0 "C18" H 8050 2600 40 0000 L CNN |
1054,7 → 1069,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C13 |
L C-RESCUE-LION2CELL01C C13 |
U 1 1 55342094 |
P 6250 3900 |
F 0 "C13" H 6250 4000 40 0000 L CNN |
1065,69 → 1080,69 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R18 |
L R-RESCUE-LION2CELL01C R18 |
U 1 1 553424F0 |
P 6600 3700 |
F 0 "R18" V 6680 3700 40 0000 C CNN |
F 1 "100R" V 6607 3701 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 6530 3700 30 0001 C CNN |
F 3 "" H 6600 3700 30 0000 C CNN |
1 6600 3700 |
P 7250 3700 |
F 0 "R18" V 7330 3700 40 0000 C CNN |
F 1 "100R" V 7257 3701 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 7180 3700 30 0001 C CNN |
F 3 "" H 7250 3700 30 0000 C CNN |
1 7250 3700 |
0 1 1 0 |
$EndComp |
$Comp |
L R R19 |
L R-RESCUE-LION2CELL01C R19 |
U 1 1 553426F2 |
P 6600 4100 |
F 0 "R19" V 6680 4100 40 0000 C CNN |
F 1 "100R" V 6607 4101 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 6530 4100 30 0001 C CNN |
F 3 "" H 6600 4100 30 0000 C CNN |
1 6600 4100 |
P 7250 4200 |
F 0 "R19" V 7330 4200 40 0000 C CNN |
F 1 "100R" V 7257 4201 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 7180 4200 30 0001 C CNN |
F 3 "" H 7250 4200 30 0000 C CNN |
1 7250 4200 |
0 1 1 0 |
$EndComp |
$Comp |
L C C16 |
L C-RESCUE-LION2CELL01C C16 |
U 1 1 5534275C |
P 7250 4350 |
F 0 "C16" H 7250 4450 40 0000 L CNN |
F 1 "100nF" H 7256 4265 40 0000 L CNN |
F 2 "Mlab_R:SMD-0805" H 7288 4200 30 0001 C CNN |
F 3 "" H 7250 4350 60 0000 C CNN |
1 7250 4350 |
P 6850 4350 |
F 0 "C16" H 6850 4450 40 0000 L CNN |
F 1 "100nF" H 6856 4265 40 0000 L CNN |
F 2 "Mlab_R:SMD-0805" H 6888 4200 30 0001 C CNN |
F 3 "" H 6850 4350 60 0000 C CNN |
1 6850 4350 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C15 |
L C-RESCUE-LION2CELL01C C15 |
U 1 1 553427F9 |
P 7000 4350 |
F 0 "C15" H 7000 4450 40 0000 L CNN |
F 1 "100nF" H 7006 4265 40 0000 L CNN |
F 2 "Mlab_R:SMD-0805" H 7038 4200 30 0001 C CNN |
F 3 "" H 7000 4350 60 0000 C CNN |
1 7000 4350 |
P 6600 4350 |
F 0 "C15" H 6600 4450 40 0000 L CNN |
F 1 "100nF" H 6606 4265 40 0000 L CNN |
F 2 "Mlab_R:SMD-0805" H 6638 4200 30 0001 C CNN |
F 3 "" H 6600 4350 60 0000 C CNN |
1 6600 4350 |
1 0 0 -1 |
$EndComp |
$Comp |
L GND #PWR026 |
U 1 1 553453C7 |
P 7000 4600 |
F 0 "#PWR026" H 7000 4350 60 0001 C CNN |
F 1 "GND" H 7000 4450 60 0000 C CNN |
F 2 "" H 7000 4600 60 0000 C CNN |
F 3 "" H 7000 4600 60 0000 C CNN |
1 7000 4600 |
P 6600 4600 |
F 0 "#PWR026" H 6600 4350 60 0001 C CNN |
F 1 "GND" H 6600 4450 60 0000 C CNN |
F 2 "" H 6600 4600 60 0000 C CNN |
F 3 "" H 6600 4600 60 0000 C CNN |
1 6600 4600 |
1 0 0 -1 |
$EndComp |
$Comp |
L GND #PWR027 |
U 1 1 55345464 |
P 7250 4600 |
F 0 "#PWR027" H 7250 4350 60 0001 C CNN |
F 1 "GND" H 7250 4450 60 0000 C CNN |
F 2 "" H 7250 4600 60 0000 C CNN |
F 3 "" H 7250 4600 60 0000 C CNN |
1 7250 4600 |
P 6850 4600 |
F 0 "#PWR027" H 6850 4350 60 0001 C CNN |
F 1 "GND" H 6850 4450 60 0000 C CNN |
F 2 "" H 6850 4600 60 0000 C CNN |
F 3 "" H 6850 4600 60 0000 C CNN |
1 6850 4600 |
1 0 0 -1 |
$EndComp |
Text Label 7850 1600 0 60 ~ 0 |
1139,7 → 1154,7 |
Text Label 6200 4350 0 60 ~ 0 |
P1 |
$Comp |
L R R17 |
L R-RESCUE-LION2CELL01C R17 |
U 1 1 55349F86 |
P 6400 4700 |
F 0 "R17" V 6480 4700 40 0000 C CNN |
1150,7 → 1165,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L C C14 |
L C-RESCUE-LION2CELL01C C14 |
U 1 1 5534AE9C |
P 6400 5350 |
F 0 "C14" H 6400 5450 40 0000 L CNN |
1172,7 → 1187,7 |
0 -1 -1 0 |
$EndComp |
$Comp |
L R R20 |
L R-RESCUE-LION2CELL01C R20 |
U 1 1 5534B924 |
P 6750 4950 |
F 0 "R20" V 6830 4950 40 0000 C CNN |
1227,7 → 1242,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L R R25 |
L R-RESCUE-LION2CELL01C R25 |
U 1 1 5534E8B4 |
P 8800 5250 |
F 0 "R25" V 8880 5250 40 0000 C CNN |
1238,7 → 1253,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R26 |
L R-RESCUE-LION2CELL01C R26 |
U 1 1 5534E9D1 |
P 9400 5250 |
F 0 "R26" V 9480 5250 40 0000 C CNN |
1249,11 → 1264,11 |
0 1 1 0 |
$EndComp |
$Comp |
L R R24 |
L R-RESCUE-LION2CELL01C R24 |
U 1 1 55351177 |
P 8550 5700 |
F 0 "R24" V 8630 5700 40 0000 C CNN |
F 1 "divider.1% 25ppm" V 8450 5700 40 0000 C CNN |
F 1 "140k .1% 25ppm" V 8450 5700 40 0000 C CNN |
F 2 "Mlab_R:SMD-0805" V 8480 5700 30 0001 C CNN |
F 3 "" H 8550 5700 30 0000 C CNN |
1 8550 5700 |
1260,7 → 1275,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R23 |
L R-RESCUE-LION2CELL01C R23 |
U 1 1 553511E2 |
P 8200 6000 |
F 0 "R23" V 8280 6000 40 0000 C CNN |
1271,7 → 1286,7 |
-1 0 0 1 |
$EndComp |
$Comp |
L C C17 |
L C-RESCUE-LION2CELL01C C17 |
U 1 1 5535149C |
P 7900 5950 |
F 0 "C17" H 7900 6050 40 0000 L CNN |
1282,7 → 1297,7 |
1 0 0 -1 |
$EndComp |
Text Label 9850 5250 0 60 ~ 0 |
BATTERY+ |
BAT+ |
$Comp |
L GND #PWR030 |
U 1 1 55353728 |
1306,7 → 1321,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L C C12 |
L C-RESCUE-LION2CELL01C C12 |
U 1 1 55356934 |
P 6200 6400 |
F 0 "C12" H 6200 6500 40 0000 L CNN |
1317,7 → 1332,7 |
1 0 0 -1 |
$EndComp |
$Comp |
L ZENER D6 |
L ZENER-RESCUE-LION2CELL01C D6 |
U 1 1 55356BEC |
P 6800 6450 |
F 0 "D6" H 6800 6550 50 0000 C CNN |
1339,7 → 1354,7 |
0 1 1 0 |
$EndComp |
$Comp |
L R R21 |
L R-RESCUE-LION2CELL01C R21 |
U 1 1 553576E2 |
P 7050 5900 |
F 0 "R21" V 7130 5900 40 0000 C CNN |
1350,7 → 1365,7 |
0 -1 -1 0 |
$EndComp |
Text Label 7400 5900 0 60 ~ 0 |
BATTERY+ |
BAT+ |
$Comp |
L GND #PWR032 |
U 1 1 5535A312 |
1485,8 → 1500,8 |
1 3450 7600 |
1 0 0 -1 |
$EndComp |
Text Label 3550 7250 0 60 ~ 0 |
BATTERY+ |
Text Label 4050 7250 0 60 ~ 0 |
BAT+ |
$Comp |
L GND #PWR035 |
U 1 1 55367581 |
1515,7 → 1530,7 |
Text Notes 1200 600 0 60 ~ 0 |
12V |
$Comp |
L R R10 |
L R-RESCUE-LION2CELL01C R10 |
U 1 1 5533B935 |
P 3550 5350 |
F 0 "R10" V 3630 5350 40 0000 C CNN |
1589,7 → 1604,7 |
Text Label 4750 4850 0 60 ~ 0 |
HDQ |
$Comp |
L R R34 |
L R-RESCUE-LION2CELL01C R34 |
U 1 1 5547B85D |
P 9750 2400 |
F 0 "R34" V 9830 2400 40 0000 C CNN |
1600,7 → 1615,7 |
0 1 1 0 |
$EndComp |
$Comp |
L LED D14 |
L LED-RESCUE-LION2CELL01C D14 |
U 1 1 5547B9F6 |
P 10300 2400 |
F 0 "D14" H 10150 2450 50 0000 C CNN |
1771,7 → 1786,6 |
1350 6950 2200 6950 |
Wire Wire Line |
850 6950 700 6950 |
Connection ~ 1500 6950 |
Wire Wire Line |
700 7550 950 7550 |
Wire Wire Line |
1818,8 → 1832,6 |
Wire Wire Line |
4150 5950 4150 5500 |
Wire Wire Line |
7600 4100 7600 4250 |
Wire Wire Line |
10500 2250 10550 2250 |
Wire Wire Line |
10550 1250 10550 2400 |
1873,31 → 1885,13 |
8950 2900 8950 2850 |
Wire Wire Line |
8050 2650 8050 2900 |
Wire Wire Line |
6750 3700 7650 3700 |
Wire Wire Line |
6150 3700 6450 3700 |
Connection ~ 6250 3700 |
Wire Wire Line |
6150 4100 6450 4100 |
Connection ~ 6250 4100 |
Wire Wire Line |
6750 4100 7400 4100 |
6850 4500 6850 4600 |
Wire Wire Line |
7400 4100 7400 4200 |
6600 4500 6600 4600 |
Wire Wire Line |
7400 4200 7600 4200 |
Wire Wire Line |
7000 4100 7000 4200 |
Connection ~ 7000 4100 |
Wire Wire Line |
7250 3700 7250 4200 |
Connection ~ 7250 3700 |
Wire Wire Line |
7250 4500 7250 4600 |
Wire Wire Line |
7000 4500 7000 4600 |
Wire Wire Line |
8200 1650 8150 1650 |
Wire Wire Line |
8150 1650 8150 1550 |
2054,8 → 2048,6 |
Wire Wire Line |
3300 4900 3300 4850 |
Connection ~ 3300 4500 |
Wire Wire Line |
950 7250 990 7250 |
Connection ~ 6800 5900 |
Connection ~ 7300 5900 |
Wire Wire Line |
2068,4 → 2060,50 |
6400 5550 6400 5500 |
Wire Wire Line |
7600 3800 7600 3700 |
Wire Wire Line |
950 7250 900 7250 |
$Comp |
L FUSE 2A |
U 1 1 563F594A |
P 7050 1400 |
F 0 "2A" H 7150 1450 40 0000 C CNN |
F 1 "FUSE" H 6950 1350 40 0000 C CNN |
F 2 "Mlab_F:2410" H 7050 1400 60 0001 C CNN |
F 3 "" H 7050 1400 60 0000 C CNN |
1 7050 1400 |
1 0 0 -1 |
$EndComp |
Wire Wire Line |
7350 1400 7300 1400 |
$Comp |
L FUSE 1,1~A |
U 1 1 563F69AE |
P 3800 7250 |
F 0 "1,1 A" H 3900 7300 40 0000 C CNN |
F 1 "FUSE" H 3700 7200 40 0000 C CNN |
F 2 "Mlab_F:2410" H 3800 7250 60 0001 C CNN |
F 3 "" H 3800 7250 60 0000 C CNN |
1 3800 7250 |
1 0 0 -1 |
$EndComp |
Connection ~ 700 6950 |
Connection ~ 7650 4950 |
Wire Wire Line |
6150 4100 7000 4100 |
Wire Wire Line |
7000 4100 7000 4200 |
Wire Wire Line |
7500 4200 7600 4200 |
Wire Wire Line |
7600 4200 7600 4250 |
Wire Wire Line |
6150 3700 7000 3700 |
Wire Wire Line |
7500 3700 7650 3700 |
Wire Wire Line |
6600 4150 6600 4100 |
Connection ~ 6600 4100 |
Wire Wire Line |
6850 4150 6850 3700 |
Connection ~ 6850 3700 |
$EndSCHEMATC |