95% of late night mistakes corrected......
ive got the circuit layout down to 3 jumpers.
much work left to do, including trim pots for gauss cut-offs (and...well....all the soldering...)
rough sketch:
iCode: [Select]
incase anyone can actually read anything here (ill make a better drawing once it hits final stages):
Q1+Q3 2N2222
Q2+Q4 IRFD9024
C1 25v220uf
C2+C3 not sure
R2+R4 not sure
all pots are 10K
D1+D2 1N4007
U1+U2 CD4046
Arduino Nano
a couple early crappy vids
https://www.youtube.com/watch?v=KtrFF_jdWbw
https://www.youtube.com/watch?v=Mg_uGF-3Vhc
most annoying sound ever
https://www.youtube.com/watch?v=ElbtTYFYWMA
ive got the circuit layout down to 3 jumpers.
much work left to do, including trim pots for gauss cut-offs (and...well....all the soldering...)
rough sketch:
i
nt hallpin1 = A3;
int hallpin2 = A4;
int coil1 = 9;
int coil2 = 10;
void setup() {
pinMode(coil1,OUTPUT);
pinMode(coil2,OUTPUT);
}
void loop() {
float gauss1 = analogRead(hallpin1);
float gauss2 = analogRead(hallpin2);
if (gauss1 >= 629) {
digitalWrite(coil1,LOW);
digitalWrite(coil2,HIGH);
}
else {
digitalWrite(coil1,HIGH);
}
if (gauss2 <= 387) {
digitalWrite(coil2,LOW);
digitalWrite(coil1,HIGH);
}
else {
digitalWrite(coil2,HIGH);
}
;
}
incase anyone can actually read anything here (ill make a better drawing once it hits final stages):
Q1+Q3 2N2222
Q2+Q4 IRFD9024
C1 25v220uf
C2+C3 not sure
R2+R4 not sure
all pots are 10K
D1+D2 1N4007
U1+U2 CD4046
Arduino Nano
a couple early crappy vids
https://www.youtube.com/watch?v=KtrFF_jdWbw
https://www.youtube.com/watch?v=Mg_uGF-3Vhc
most annoying sound ever
https://www.youtube.com/watch?v=ElbtTYFYWMA