Autor Zpráva
Hill
PříspěvekZaslal: po září 25 2023, 22:12    Předmět:

Tak to zatím neřeš.
samec
PříspěvekZaslal: po září 25 2023, 22:08    Předmět: pokus

ešte neviem čo

EDIT:
rozmýšľam, či si sem môžem dať a priebežne editovať zoznam zbytočných veci, ktoré raz nebudem potrebovať... Rolling Eyes

EDIT:
niečo si tu poznačím...
ARN6614,4Ω,čierny 1ks
ARO666,8Ω,5W,sivomodrý 1ks
ARZ689,4Ω,2W,sivý 2ks
ARV161,4Ω,5W,čierny,rozobratý,pokrčený
2 AN 633 50,5Ω,svetlomodrý,rozobraty,papier šalát
ARN???,4Ω,čierny,magnet z ARO6604,vyblednutý 2ks

TR629 33R 50W použité 4ks

TO66:
BD254C 1ks
TXC01A60 1ks
tesla
KD333 1ks
KT110 1ks
KU611 2ks
KU612 20ks

TO3:
2N3055 Toshiba 8627 1ks
BDY47 TFK ME 1ks
BU207 Motorola 7911 1ks
BU208 1ks
MJ2955 SGS 48607 1ks
MJ3001 SGS 8305 1ks
tesla
4NU74 1ks
KD606 1ks
KD607 1ks
KUY12 5ks
azbukove
КТ808АМ 9ks
КТ818АМ 1ks
КТ818БМ 2ks
КТ819АМ 4ks
КТ819БМ 4ks

--------------KE
KD337 19ks
KD338 26ks
KD366 1ks
KD503 15ks
KD607 21ks
KD617 5ks
KDY73 1ks
KU606 1ks
KU612 2ks


100nF Nn (tesla, vraj TK782 828, N=typ 3E, n=12,5V) asi 500x
100nF Nq (tesla, asi TK783 828, N=typ 3E, q=32V) viac ako 100x
150nF Nn (tesla, vraj TK782 838, N=typ 3E, n=12,5V) asi 500x


schémy:
ZEISS CMM C-90 Servo Drive Module Amplifier 608481-4905
http://www.ebastlirna.cz/modules/Forums/files/koncak_153.png

odkazy:
lacna nahrada E-Z hook
https://vi.aliexpress.com/item/1005003562332235.html

#sklad

kód:
box_w = 97.5; //outside box width
box_l = 97.5; //outside box lenght
box_h = 55; //outside box height
wall = 2; //wall thickness
rr = 5; //rounding radius
screw_dia = 3; //screw diameter
screw_pad = 6.25; //screw distance from walls

module outside_box(){
translate([box_w/2-rr,box_l/2-rr,rr]){
    sphere(rr);
    cylinder(h=box_h-rr, r=rr);
}
translate([-box_w/2+rr,box_l/2-rr,rr]){
    sphere(rr);
    cylinder(h=box_h-rr, r=rr);
}
translate([box_w/2-rr,-box_l/2+rr,rr]){
    sphere(rr);
    cylinder(h=box_h-rr, r=rr);
}
translate([-box_w/2+rr,-box_l/2+rr,rr]){
    sphere(rr);
    cylinder(h=box_h-rr, r=rr);
}
translate([0,box_l/2-rr,rr])
rotate([0,90,0])
cylinder(h=box_w-2*rr, r=rr, center=true);
translate([0,-box_l/2+rr,rr])
rotate([0,90,0])
cylinder(h=box_w-2*rr, r=rr, center=true);
translate([box_w/2-rr,0,rr])
rotate([90,0,0])
cylinder(h=box_l-2*rr, r=rr, center=true);
translate([-box_w/2+rr,0,rr])
rotate([90,0,0])
cylinder(h=box_l-2*rr, r=rr, center=true);
translate([0,0,box_h/2])
cube([box_w-2*rr,box_l-2*rr,box_h],center=true);
translate([0,0,box_h/2+rr/2])
cube([box_w-2*rr,box_l,box_h-rr],center=true);
translate([0,0,box_h/2+rr/2])
cube([box_w,box_l-2*rr,box_h-rr],center=true);
}
module inside_box(){
    translate([0,0,wall])
        outside_box(box_w=box_w-2*wall,box_l=box_l-2*wall,rr=(rr>wall)?rr-wall:0);
}
difference(){
    union(){
        outside_box();
        cylinder(h=box_h, d=97.5, $fn=100);
    }
    difference(){
        inside_box();
        screw_pads();
    }
    //holes
    cylinder(d=24, h=20, center=true);
}

module screw_pads(){
translate([box_w/2-screw_pad-wall,box_l/2-screw_pad-wall,])
    difference(){
        union(){
            cylinder(d=3*screw_dia, h=box_h-wall-1);
            difference(){
                translate([-wall/2,-wall/2,0])
            cube([box_w,box_l,box_h-wall-1]);
                translate([wall/2,wall/2,wall])
            cube([box_w,box_l,box_h-wall-1]);
            }
        }
        cube([0.7*screw_dia,0.7*screw_dia,box_h*2], center=true);
    }
translate([-box_w/2+screw_pad+wall,box_l/2-screw_pad-wall,])
    difference(){
        union(){
            cylinder(d=3*screw_dia, h=box_h-wall-1);
            rotate([0,0,90])
            difference(){
                translate([-wall/2,-wall/2,0])
            cube([box_w,box_l,box_h-wall-1]);
                translate([wall/2,wall/2,wall])
            cube([box_w,box_l,box_h-wall-1]);
            }
        }
        cube([0.7*screw_dia,0.7*screw_dia,box_h*2], center=true);
    }
translate([box_w/2-screw_pad-wall,-box_l/2+screw_pad+wall,])
    difference(){
        union(){
            cylinder(d=3*screw_dia, h=box_h-wall-1);
            rotate([0,0,-90])
            difference(){
                translate([-wall/2,-wall/2,0])
            cube([box_w,box_l,box_h-wall-1]);
                translate([wall/2,wall/2,wall])
            cube([box_w,box_l,box_h-wall-1]);
            }
        }
        cube([0.7*screw_dia,0.7*screw_dia,box_h*2], center=true);
    }
translate([-box_w/2+screw_pad+wall,-box_l/2+screw_pad+wall,])
    difference(){
        union(){
            cylinder(d=3*screw_dia, h=box_h-wall-1);
            rotate([0,0,180])
            difference(){
                translate([-wall/2,-wall/2,0])
            cube([box_w,box_l,box_h-wall-1]);
                translate([wall/2,wall/2,wall])
            cube([box_w,box_l,box_h-wall-1]);
            }
        }
        cube([0.7*screw_dia,0.7*screw_dia,box_h*2], center=true);
    }
}


https://www.minitool.com/backup-tips/how-to-stop-win10-update.html

https://www.reddit.com/user/ikashanrat/comments/stsuwr/solved_how_to_disable_shitty_windows_updates/

todo:
https://daftaryharshit.medium.com/crypto-trading-made-easy-my-adventure-with-a-trading-bot-on-small-wonder-rpi-d826cdf68042
MEXC
asi toto> localcoinswap

kyc, ale zaujimave https://simpleswap.io/

smajliky:


link na google images
https:// www . google . com / search ? q=daco+hocico & udm=2