Тёмный
Damian Butterworth
Damian Butterworth
Damian Butterworth
Подписаться
ZX Spectrum Finally done.
19:07
2 месяца назад
Arduino Mini Robot Programming.
31:26
3 месяца назад
I wrote a 2D Gravity Simulator in BBC BASIC.
24:25
3 месяца назад
Raymarine Smartpilot X10 Repair Fail.
12:06
3 месяца назад
Short Boat Trip.
0:57
4 месяца назад
BBC ACORN A3000 CMOS battery change.
18:55
4 месяца назад
SCUM Air Tours.
1:00:13
4 месяца назад
Simple Arduino Game.
19:02
4 месяца назад
SCUM Stuntman.
1:24
4 месяца назад
£22 USB Microscope Test.
0:15
5 месяцев назад
Arduino Laser Burglar Alarm
11:30
5 месяцев назад
Arduino Buzzer.
5:28
6 месяцев назад
Arduino Bugler Alarm.
15:31
6 месяцев назад
Комментарии
@ironwolf3699
@ironwolf3699 2 дня назад
how thick do you suggest the plate should be?
@damianbutterworth2434
@damianbutterworth2434 День назад
I`ll have to measure the ones I`ve got in the morning. I know the Diesel contacts were a lot thicker. I would go for 4mm min. There is enough room in the movement.
@ironwolf3699
@ironwolf3699 День назад
@@damianbutterworth2434 yea because I tried using a brake drum since it already had a big hole and one hole to the side, I just had to drill the other hole. I was able to open one up, but I tried a second one and the drum failed. I was using a 12 ton shop press as well it felt pretty sketchy
@damianbutterworth2434
@damianbutterworth2434 День назад
oh sorry I thought you meant the copper contact plates for the solenoid. Still 4 mm is OK I guess. I just used some old angle iron that was hanging about.
@ironwolf3699
@ironwolf3699 День назад
@@damianbutterworth2434 Yea I went over board and used 13mm steel that my dad brought, and I use a semi truck starter field coil housing to put it on.
@damianbutterworth2434
@damianbutterworth2434 День назад
@@ironwolf3699 did you get on alright?
@damianbutterworth2434
@damianbutterworth2434 4 дня назад
int t=0; // CREATE T VARIABLE TO REPRESENT THE THERMISTOR VALUE int tr=0; int s=0; // CREATE S VARIABLE TO BE THE VARIABLE KNOB VALUE int st=0; // ANOTHER VARIABLE FOR CALCULATING THE RESULT OF THE "SET TEMPERATURE" void setup() { // SET UO YOUR PINS ETC pinMode(2, OUTPUT); // SET DIGITAL PIN 2 TO OUTPUT FOR HEATER RELAY pinMode(5, OUTPUT); // SET DIGITAL PIN 5 TO OUTPUT FOR HEATER LED pinMode(6, OUTPUT); // SET DIGITAL PIN 6 TO OUTPUT FOR POWER ON LED digitalWrite(2, LOW); // HEATER RELAY OFF digitalWrite(5, LOW); // LED FOR HEATER OFF digitalWrite(6, HIGH); // POWER LED ON } void loop() { //PROGRAM LOOPS BACK TOO HERE AFTER THE BOTTOM BRACKET s = analogRead(0); // READS THE VARIABLE KNOB delay(10); s = 1023-s; // INVERT THE VARIABLE KNOB VALUE AS I WIRED IT THE WRONG WAY ROUND st=40+(s/15); // CALCULATE TO CONVERT KNOB VALUE(0-1023) TO VALUE 50 TO 100 FOR DEGREES C tr= analogRead(1); // GETS THE TEMPERATURE OF THE THERMISTOR delay(10); t=(tr/6); // GETTING A ROUGH TEMPERATURE. NOT PERFECT BUT WORKS. t=t-35; if(t >= st) { // TURN HEATER OFF IF TEMP PROBE IS HIGHER THAN THE SET TEMP digitalWrite(2, LOW); digitalWrite(5, LOW); delay(1000); } if(t == st-1) { // TURN HEATER ON FOR .2 SECONDS AND OFF FOR .8 SECONDS digitalWrite(2, HIGH); digitalWrite(5, HIGH); delay(200); digitalWrite(2, LOW); digitalWrite(5, LOW); delay(800); } if(t == st-2) { // TURN HEATER ON FOR .4 SECONDS AND OFF FOR .6 SECONDS digitalWrite(2, HIGH); digitalWrite(5, HIGH); delay(400); digitalWrite(2, LOW); digitalWrite(5, LOW); delay(600); } if(t == st-3) { // TURN HEATER ON FOR .6 SECONDS AND OFF FOR .4 SECONDS digitalWrite(2, HIGH); digitalWrite(5, HIGH); delay(600); digitalWrite(2, LOW); digitalWrite(5, LOW); delay(400); } if(t == st-4) { // TURN HEATER ON FOR .8 SECONDS AND OFF FOR .2 SECONDS digitalWrite(2, HIGH); digitalWrite(5, HIGH); delay(800); digitalWrite(2, LOW); digitalWrite(5, LOW); delay(200); } if(t <= st-5) { // TURN HEATER ON FULL OFF TEMP DROPS BELOW SET TEMP-5 digitalWrite(2, HIGH); digitalWrite(5, HIGH); delay(1000); } }
@popadrian9000
@popadrian9000 7 дней назад
Hey, did you post the code on github? If you did, can you provide a link?
@greentroll9326
@greentroll9326 25 дней назад
still got your lathe then des you got the sandblaster still aswell
@damianbutterworth2434
@damianbutterworth2434 24 дня назад
I`ve got a brand new one. About £200. Just got it working ok.
@greentroll9326
@greentroll9326 24 дня назад
@@damianbutterworth2434upgraded :)
@greentroll9326
@greentroll9326 25 дней назад
each bullet shrink the boat and an illegal t falls out and sharks come
@jkeezy93
@jkeezy93 27 дней назад
I think it's crazy that here in the USA you can legally grow cannabis in some areas if you're over 21, but there is no legal age for growing tobacco. It is totally unregulated and legal. A 6 year old could hypothetically grow their own tobacco, but can't grow weed. They shouldn't do either, but its an odd legal loophole. Anyways, I plan on growing some tobacco soon. About how long do they take from seed to harvest?
@damianbutterworth2434
@damianbutterworth2434 27 дней назад
Hi. Sure I planted them around March and about ready now. I think there is a limit on how many baccy plants you can grow here. Weed is still illegal but everyone smokes it and some even grow it. :)
@greentroll9326
@greentroll9326 28 дней назад
have border force and the rnli getting in the way of your shots
@greentroll9326
@greentroll9326 28 дней назад
nice you finaly working on it dez i have some good imput mate ol need some white cliffes on english or english flag lo spikey mines lol border force and the rnli getting in the way of your shots ...survivors swimming tot he shore higher points cos smaller
@greentroll9326
@greentroll9326 28 дней назад
its doing well mate i have seeds that i have grown owver tha last few yr so climatised well, hiw did yours outside go cure it and smoke it btw nicoteen isnt disolvd in water mate its really hard to extract :) dez moisten it a bit w cabage leef in the bag with it and use grinder to grind it not too fine thats what i did
@michaelturner4457
@michaelturner4457 29 дней назад
Have too many migrants in the boat, the boat sinks. Maybe the RNLI will rescue them, random chance.
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
Looking back I wish I had cleaned the comm grooves out.
@CitroenGS
@CitroenGS Месяц назад
When will we see something similar for +2a/b and +3?
@damianbutterworth2434
@damianbutterworth2434 24 дня назад
Just seen this on UTube. I think it can reproduce a Z80 chip and more. Don`t know if it can do the ULA yet. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-re-hd9aGzz4.html
@Pobsta-de7hb
@Pobsta-de7hb Месяц назад
lol for the last few days when I leave for work at around 2am there have been hedgehogs, sometimes babies with adults, sometimes just adults but always 2 or 3 minimum outside by my front door steps but sometimes 6 or more and I wondered why, I have just worked it out as I just did not think of it until now. The weather has been so hot that the wheelie bin is full of maggots, they must have been climbing out and going all over the floor, bless the hedgehogs as they must be loving it lol
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
wow. 6. That`s cool. I`ve spotted 2 this year. A large and smaller one. Now I leave the cats old food out instead of putting it in the bin and making maggots.
@Pobsta-de7hb
@Pobsta-de7hb Месяц назад
@@damianbutterworth2434 Oh i expect there is more than 6 as when I drive down the road I see others walking on gardens and heading around. I think it must have been some meat of some kind caused the maggots though, well obviously but not sure what. The issue here is the weather and the fact in Germany they collect once a month, ours anyway. Good idea though, I might even buy a little cat food and leave it out for the hedgehogs if I keep seeing them there lol
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
here is the video of the tester working on a Subaru Impreza Alternator I repaired. Fast Forward to 1 hour 12 minutes. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-DakbQyfLEko.html
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
Only use a 12 volt supply to the test kit. Don`t use the car battery since it can go over 12 when testing.
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
It works. I`ve tested it on an alternator and it even worked on a low frequency. Went from 12.4 volts to 15.5 volts when I adjusted to duty cycle knob.
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
This is how to make a Smart Alternator Tester Square Wave Generator for about £20. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-y0A5s5m1_AY.html
@ChrisPopham
@ChrisPopham Месяц назад
A few words here in the comments to help the RU-vid algorithms 😜
@nickd2084
@nickd2084 Месяц назад
Have a look at map() function to get 1023 to 100
@MrWoodykeys
@MrWoodykeys Месяц назад
Lovely job Sir.
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
I`m fixing a Subaru Impreza alternator at the minute. Should be uploaded at the weekend. Thanks for the comment. It cheers me up.
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
int f = 0; int d = 0; float dd = 0; float ff = 0; int l = 0; void setup() { } void loop() { int f = analogRead(A0); int d = analogRead(A1); dd=d; ff=f; dd=(ff/1023)*dd; // WAVE GENERATOR for (int i = 0; i <= f; i++) { if(i >= dd){l=0;} if(i <= dd){l=1;} if(i >= dd){digitalWrite(9, HIGH);} if(i <= dd){digitalWrite(9, LOW);} delayMicroseconds(25); } }
@damianbutterworth2434
@damianbutterworth2434 Месяц назад
Got a video of a bearing change on this alternator coming up in a few days.
@ColinMill1
@ColinMill1 2 месяца назад
I just repaired the one on my 1963 Massey Ferguson 35x (the original I'm fairly sure) and having opened it up I was amazed it had been working up to that point. However, after giving it a good clean up it now works fine. The contacts have eroded to about half their original thickness so may not last another 60 years.
@greentroll9326
@greentroll9326 2 месяца назад
all working now then mate where you getting the speccies from i know one you had years ago but have you got more than one now double sided sticky tape blue peter special mate :)
@damianbutterworth2434
@damianbutterworth2434 2 месяца назад
My first computer was this Speccy model. So I wanted one again. I get them off EBay. About £50 each. I might try Torksey Car Boot soon.
@greentroll9326
@greentroll9326 2 месяца назад
@@damianbutterworth2434 next need to find a way to network them lol
@StuHo1mez
@StuHo1mez 2 месяца назад
Just watching your video, if your ULA is too hot to touch, may I suggest that it's nearing death. You don't need an extra heatsink. The tracopower negates the need for the native one. Good luck.
@damianbutterworth2434
@damianbutterworth2434 2 месяца назад
@@StuHo1mez I should get a modern ULA for it. I`ll keep an eye on it. Perhaps I killed it with the over voltage. To be honest it was real hard to get the picture set up with this ULA. I fitted another and the screen was perfect. Thanks for the advice.
@AlanSmith-jx8bd
@AlanSmith-jx8bd 2 месяца назад
Did you get the service manual i gave John
@damianbutterworth2434
@damianbutterworth2434 2 месяца назад
yes mate. I will have another go soon. Just got a mates car alternator to sort out.
@AlanSmith-jx8bd
@AlanSmith-jx8bd 2 месяца назад
No problem, didn't know if John had passed it on, he's in love again anything could happen
@AlanSmith-jx8bd
@AlanSmith-jx8bd 2 месяца назад
Hi, it's Alan the owner of steering computer,for it to work power has to go from computer to control which you sent back to me,also at other end the power out motor goes to small hydraulic pump only has power when control is used,I did send service manual to John,did you get it?that tells you all the volts across board,the manual is not for that machine but they are the same,but the 10 has more power, please get in touch if I can help,I am in the process of buying another one,but it's second hand and you always get problems
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
I was pointing at the wrong chips in the video. IC15 is 1, IC16 is 2, IC17 is 4, IC18 is 8, IC19 is 16, IC 20 is 32, IC 21 is 64, IC22 is 128.
@kevinmahardika447
@kevinmahardika447 3 месяца назад
that's so cool dude! If I may know what components must be purchased to make the machine ?
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
Hi mate, here is the frame and you need to get the 4 MG995 servo`s separately. I might be using the wrong one on the jaws. This sellers says they are all the same. Perhaps this is why I struggled to get it to grip. www.ebay.co.uk/itm/296339248801?itmmeta=01HZBXVZRZA91TWZEB8SM7R5PS&hash=item44ff3216a1:g:biwAAOSwDJRmS~x0&itmprp=enc%3AAQAJAAAA4Ek0fQ0KtRA3kiijkjtUXpgo1O2kNXxTcGfypU59cjDmlxmUTYF114GAk5yR8FqZFXFTKVtJvxvIGuHsMf3zr%2B0XBbu4OiPVRyfGlFnGRMDDHQ5SDLPo2PutoZg00C1XI%2FUhF%2BNRNcjgPJshiZ9YCYPLFLkoyv3nh7EKyy5wq6S3jM3nwmGDHi7LvmxmysY%2BkjPt1K811VI4SUdmw%2BfetcdHFjX5JGbU%2Bnx8vGa5UWubSUtplmTdkcjiG61fO1LAouwH4azz2uyF3neZaLnrnEIGuiKMxXr2wPd%2BsK0Htqjt%7Ctkp%3ABFBM3Pzv_fpj
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
the servo`s I used are HJS3315D. The must be 180 degree servo`s. I`m struggling to find one on Ebay on it`s own without brackets. But if the EBay adverts says MG99J they should be the same.
@nxbid
@nxbid 3 месяца назад
thats so cool!! i loved this video and sat through the entire thing, thanks for this and keep doing awesome stuff!
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
#include <Servo.h> int step=0; int a=90; int b=70; int c=75; int jaw=1; int de=15; // ROBOT SPEED. LOWER IS FASTER. int ang=0; Servo sa; Servo sb; Servo sc; Servo sd; void setup() { sa.attach(9); sb.attach(10); sc.attach(11); sd.attach(12); } void loop() { start: if(step == 0){ step=step+1; goto home; } if(step == 1){ step=step+1; ang=20; goto pick1; } if(step == 2){ step=step+1; goto lift; } if(step == 3){ step=step+1; ang=120; goto drop; } if(step == 4){ step=step+1; goto home; } if(step == 5){ step=step+1; ang=40; goto pick1; } if(step == 6){ step=step+1; goto lift; } if(step == 7){ step=step+1; ang=140; goto drop; } if(step == 8){ step=step+1; goto home; } if(step == 9){ step=step+1; ang=60; goto pick1; } if(step == 10){ step=step+1; goto lift; } if(step == 11){ step=step+1; ang=160; goto drop; } if(step == 12){ step=step+1; goto home; } delay(10000); step=0; goto start; pick1: if(jaw == 1){ sd.write(120); // OPEN JAWS delay(1000); sd.write(95); // TURN JAWS OFF jaw=0; } if(a <= ang-1){a=a+1;} if(a >= ang+1){a=a-1;} if(a != ang){ sa.write(a); delay(de); } if(a == ang){ if(b <= 44){b=b+1;} if(b >= 46){b=b-1;} if(c <= 74){c=c+1;} if(c >= 76){c=c-1;} sb.write(b); sc.write(c); delay(de); if(b == 45 && c == 75){ sd.write(80); delay(1000); jaw=1; goto start; } } goto pick1; drop: if(a <= ang-1){a=a+1;} if(a >= ang+1){a=a-1;} if(a != ang){ sa.write(a); delay(de); } if(a == ang){ if(b <= 44){b=b+1;} if(b >= 46){b=b-1;} if(c <= 74){c=c+1;} if(c >= 76){c=c-1;} sb.write(b); sc.write(c); delay(de); if(b == 45 && c == 75){ sd.write(120); delay(1000); jaw=0; goto start; } } goto drop; home: if(jaw == 1){ sd.write(120); // OPEN JAWS delay(1000); sd.write(95); // TURN JAWS OFF jaw=0; } if(b <= 89){b=b+1;} if(b >= 91){b=b-1;} if(c <= 89){c=c+1;} if(c >= 91){c=c-1;} sb.write(b); sc.write(c); delay(de); if(b == 90 && c == 90){ goto start; } goto home; lift: sd.write(70); if(b <= 89){b=b+1;} if(b >= 91){b=b-1;} if(c <= 89){c=c+1;} if(c >= 91){c=c-1;} sb.write(b); sc.write(c); delay(de); if(b == 90 && c == 90){ goto start; } goto lift; }
@ironwolf3699
@ironwolf3699 3 месяца назад
I don't know specifically what they are called but I like solenoids that are in like boot shaped housings. They look far easier to repair than these types.
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
Are they Lucas ones with 2 screws in the cap. Much easier to repair.
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
Oh I`ve seen some like that on Rovers. Quite big and have 3 screws holding the cap on. When you take the cover off the contacts are easy to clean. Perhaps it`s that type you mean.
@ironwolf3699
@ironwolf3699 3 месяца назад
@@damianbutterworth2434 yea I like those ones because I can remove the coil with just a small ish arbor press. When they are pretty hard, I just use a pipe/tube for more leverage. And that is when the coil is burnt out or the wire at the bottom needs to be re soldered.
@greentroll9326
@greentroll9326 3 месяца назад
des rem little phill i see him last night he said to say hi
@Matt.Walker
@Matt.Walker 3 месяца назад
hahaha il just do this before i stop and this then that hahaha im the same you think i will stop now but your brain keeps working on the problem great video m8
@greentroll9326
@greentroll9326 3 месяца назад
i rem denny and you doing that about 40 yrs ago on my amiga at my place that takes me back lol
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
It works better now I`ve got the gravity equation right. I forgot to times the distance by itself. LET F=GC*((MA(N)*MA(M))/(C*C))
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
9 ON ERROR GOTO 165 10 DIM X(50) 20 DIM Y(50) 30 DIM XX(50) 40 DIM YY(50) 41 DIM XD(50) 42 DIM YD(50) 43 DIM XXD(50) 44 DIM YYD(50) 45 DIM MAD(50) 50 LET F=1 60 LET GC=1 70 DIM MA(50) 80 LET P=2 REM AMMOUNT OF PLANETS 90 LET A=0 100 LET B=0 110 COLOUR 1,15 120 COLOUR 2,0 130 GCOL 1 140 COLOUR 130 150 GCOL 130 160 COLOUR 1 165 CLS 170 *REFRESHON 171 CLS: INPUT TAB(10,10);"NUMBER OF PLANETS/STARS";P 172 CLS 173 PRINT TAB(5,2);"PLANET NUMBER X Y X SPEED Y SPEED MASS GRAVITY CONSTANT" 174 PRINT TAB(5,3);"============= ===== ===== ======= ======= ==== ================" 175 PRINT TAB(53,4);GC 176 FOR N=0 TO P-1 177 PRINT TAB(5,4+N);N+1 178 PRINT TAB(20,4+N);XD(N) 179 PRINT TAB(26,4+N);YD(N) 180 PRINT TAB(32,4+N);XXD(N) 182 PRINT TAB(40,4+N);YYD(N) 183 PRINT TAB(48,4+N);MAD(N) 184 NEXT N 185 PRINT TAB(5,5+P);"ENTER 0 TO RUN OR 99 TO CHANGE GAVITY CONSTANT" 186 INPUT TAB(5,6+P);"ADJUST PLANET NUMBER";PL: IF PL=0 THEN CLS: GOTO 300 187 IF PL=99 THEN INPUT TAB(5,7+P);"INPUT GRAVITY CONSTANT = ";GC:GOTO 172 194 INPUT TAB(5,7+P);"X = ";XD(PL-1) 195 INPUT TAB(5,8+P);"Y = ";YD(PL-1) 196 INPUT TAB(5,9+P);"X SPEED = ";XXD(PL-1) 197 INPUT TAB(5,10+P);"Y SPEED = ";YYD(PL-1) 198 INPUT TAB(5,11+P);"MASS = ";MAD(PL-1) 199 CLS: GOTO 173 300 FOR N=0 TO P-1 310 LET X(N)=XD(N) 311 LET Y(N)=YD(N) 312 LET XX(N)=XXD(N) 313 LET YY(N)=YYD(N) 314 LET MA(N)=MAD(N) 315 NEXT N 320 FOR N=0 TO P-1 321 FOR M=0 TO P-1 322 IF N=M THEN GOTO 330 325 IF X(N)=X(M) THEN LET X(N)=X(N)+0.0001: LET X(M)=X(M)-0.0001 326 IF Y(N)=Y(M) THEN LET Y(N)=Y(N)+0.0001:LET Y(M)=Y(M)-0.0001 330 NEXT M 331 NEXT N 380 REM *REFRESHON# 390 FOR N=0 TO P-1 REM DRAW THE PLANETS 395 LET SIZE=8+(MA(N)) 400 CIRCLEFILL X(N),Y(N),SIZE 410 NEXT N 420 FOR N=0 TO P-1 REM MOVE THE PLANETS 430 LET X(N)=X(N)+XX(N) 440 LET Y(N)=Y(N)+YY(N) 450 NEXT N 460 FOR N=0 TO P-1 REM CALCULATE DISTANCE BETWEEN PLANETS AND CALCULATE GRAVITY FORCE 470 FOR M=0 TO P-1 480 IF N=M THEN GOTO 690 490 IF X(N)>X(M) THEN LET A=X(N)-X(M) REM WORK OUT TRIANGLE "A" SIDE 500 IF X(N)<X(M) THEN LET A=X(M)-X(N) 510 IF Y(N)>Y(M) THEN LET B=Y(N)-Y(M) REM WORK OUT TRIANGLE "B" SIDE 520 IF Y(N)<Y(M) THEN LET B=Y(M)-Y(N) 530 LET C=(A*A)+(B*B) REM WORK OUT TRIANGLE "C" SIDE 540 LET C=SQR(C) 550 LET AN=DEG(ATN(B/A)) REM WORK OUT THE ANGLE 560 LET CO=(ACS(A/C)) REM WORK OUT THE COSINE 570 LET SI=(ASN(B/C)) REM WORK OUT THE SINE 580 IF X(N)>X(M) AND Y(N)>Y(M) THEN LET CO=CO+PI: LET SI=SI+PI REM ADJUST THE ANGLE 180 DEGREES 590 IF X(N)<X(M) AND Y(N)>Y(M) THEN LET SI=SI+PI 600 IF X(N)>X(M) AND Y(N)<Y(M) THEN LET CO=CO+PI 630 LET F=GC*((MA(N)*MA(M))/(C*C)) REM GRAVITY FORCE EQAUTION 640 LET F=F*(MA(M)/MA(N)) REM ADJUST FORCE FOR WIEGHT 660 LET XX(N)=XX(N)+(F*(COS(CO))) REM APPLY FORCE TO X AXIS 670 LET YY(N)=YY(N)+(F*(SIN(SI))) REM APPLY FORCE TO Y AXIS 690 NEXT M 700 NEXT N 710 IF INKEY(-99) THEN GOTO 170 730 *REFRESH 750 *REFRESHOFF 780 CLS 790 GOTO 390
@greentroll9326
@greentroll9326 3 месяца назад
was that ezzy hes not got a boat now has he lmao des
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
It`s his mate boat. :)
@greentroll9326
@greentroll9326 3 месяца назад
@@damianbutterworth2434 lol nice ill have come over some time wen it gets warmer not seen ezzy in ages is he living on a boat now ? it looked a pretty big boat. tel him hes looking well when you see him mate
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
@@greentroll9326 first time I`ve seem him since last year.
@greentroll9326
@greentroll9326 3 месяца назад
@@damianbutterworth2434 i bet you see him more now he has a boat captian pugwash lol
@Matt.Walker
@Matt.Walker 3 месяца назад
that machine brings back some memories
@Matt.Walker
@Matt.Walker 3 месяца назад
Oi oi found it spelled ya name wrong first time lol
@greentroll9326
@greentroll9326 3 месяца назад
should ask ronnie mate if stuck mate he has thall the machines etc to test shit lol
@damianbutterworth2434
@damianbutterworth2434 3 месяца назад
Can you show him mate see if he has any ideas.
@Luthais
@Luthais 4 месяца назад
Nice bud. But how do you get the bike their without spawning in it ; ]
@g.j.dutoit4447
@g.j.dutoit4447 4 месяца назад
Why if bench test ford ranger starter, it not stay ingage if i keep small wire on pin. It uningage with start small wire on start point. It must only uningage only when i take of start thin wire, am i right or wrong? Rrrrrealy hope someone can help me. Thanks guys.
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
Could be the holding coil is open circuit.
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
Does it keep trying to engage. Because if the holding coil is broken. The pull in coil will engage it and then cut out and let the holding coil take over but if the holding coil is broken it will disengage and try again.
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
If you take off the main lead from the solenoid to the motor and measure the resistance from the small power in spade connector you should get a reading down to earth and to the large motor post . If you get an open circuit when you measure to earth then it`s your holding coil which would cause it to click in and out.
@g.j.dutoit4447
@g.j.dutoit4447 4 месяца назад
@@damianbutterworth2434 you mean that the solinoid coil not getting power after a while (seconds) It ingage then even with start wire still connect bendix gear ungage.
@g.j.dutoit4447
@g.j.dutoit4447 4 месяца назад
@@damianbutterworth2434 aaaa okay got you. That i dont no. I take of starter small wire just after it disengage. I will try totay to still keep the starter wire on after it disengage to see if it engage again. Thanks for the advise. Will tell you later on if it engage again if hold starter wire on even if it disengage. 😉
@greentroll9326
@greentroll9326 4 месяца назад
add wallls up and down and gravity and you have a basic version of flappy birds lol
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
int x[20]; int y[20]; int a[20]; int score=0; int highscore=0; int rockcount=0; #define key1 2 //connect wire 1 to pin 2 #define key2 3 //connect wire 2 to pin 3 #define key3 4 //connect wire 3 to pin 4 #define key4 5 //connect wire 4 to pin 5 int key=0; int shipx=3; #include <Wire.h> #include <LCD-I2C.h> LCD_I2C lcd(0x27, 20, 4); // Default address of most PCF8574 modules, change according byte shipChar[] = { B11000, B11100, B11110, B11111, B11111, B11110, B11100, B11000 }; byte rockChar[] = { B01110, B10111, B11101, B11111, B11111, B10111, B11101, B01110 }; void setup() { for (int i = 0; i <= 19; i++) { x[i]=19; y[i]=random(4); a[i]=0; } pinMode(key1, INPUT_PULLUP);// set pin as input pinMode(key2, INPUT_PULLUP);// set pin as input pinMode(key3, INPUT_PULLUP);// set pin as input pinMode(key4, INPUT_PULLUP);// set pin as input lcd.begin(); lcd.createChar(0, shipChar); lcd.createChar(1, rockChar); lcd.display(); lcd.backlight(); delay(2000); } void loop() { begin: score=0; for (int i = 0; i <= 19; i++) { x[i]=19; y[i]=random(4); a[i]=0; } rockcount=0; start: int ran=random(20); if(ran <= 1){ a[rockcount]=1; rockcount=rockcount+1; } key=0; int key1S = digitalRead(key1);// read if key1 is pressed int key2S = digitalRead(key2);// read if key1 is pressed int key3S = digitalRead(key3);// read if key1 is pressed int key4S = digitalRead(key4);// read if key1 is pressed if(!key1S){ key=1; } if(!key2S){ key=2; } if(!key3S){ key=3; } if(!key4S){ key=4; } if(shipx <=2 && key == 3){ lcd.setCursor(0,shipx); lcd.print(" "); shipx=shipx+1; } if(shipx >=1 && key == 4){ lcd.setCursor(0,shipx); lcd.print(" "); shipx=shipx-1; } for (int n = 0; n <= 19; n++) { if(a[n] == 1){ lcd.setCursor(x[n],y[n]); lcd.print(" "); if(x[n] == -1){x[n]=19;y[n]=random(4);} x[n]=x[n]-1; lcd.setCursor(x[n],y[n]); lcd.write(1); if(x[n] == 0 && y[n] == shipx){ lcd.clear(); goto boom; } } } lcd.setCursor(0,shipx); lcd.write(0); delay(250); score=score+1; goto start; boom: if(score >= highscore){highscore=score;} lcd.setCursor(5,0); lcd.print("GAME OVER"); lcd.setCursor(5,1); lcd.print("SCORE"); lcd.setCursor(11,1); lcd.print(score); lcd.setCursor(0,2); lcd.print("HIGH SCORE"); lcd.setCursor(11,2); lcd.print(highscore); key1S = digitalRead(key1);// read if key1 is pressed if(!key1S){ lcd.clear(); goto begin; } delay(1); goto boom; }
@greentroll9326
@greentroll9326 4 месяца назад
you found a game to play then des
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
It`s SCUM mate. I think you had a go when you was round. It`s about all I play.
@greentroll9326
@greentroll9326 4 месяца назад
@@damianbutterworth2434 no doom then i rem you finished that on psx with all secrets
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
@@greentroll9326 I`ve still got the PS1 we chipped at your house. I was going to try and fire it up. Might make a utube vid of it lol.
@greentroll9326
@greentroll9326 4 месяца назад
@@damianbutterworth2434 i wonder if it still fires up after all these years .bet you still have doom then mate lol
@stevehills7420
@stevehills7420 4 месяца назад
Thanks for this video. I'm just reconditioning one of these and when I knocked out the old bearing it came out with all the washers and stuff in one go and i had no idea what order they wnt back in. So your video has saved the day. My fibre washer had disintigrated and left just a few bits so didn't know it was a fibre washer until seeing this. I can ony find drawings of older versions of the C40 dynamo which are very different in the bearing area. Cheers.
@StealinYoDad
@StealinYoDad 4 месяца назад
If you use OBS studio on your desktop it will help record your screen so you don't have to keep moving your camera! great video
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
I use Avidemux to edit and it has trouble mixing different video types. I`ve can capture video on my PC. I`ll have a go with OBS and see if I can mix that with my old Canon D1100 vid`s. Cheers for watching. I`m always trying to get better. My early vids were rubbish lol.
@BojanMitrovicAimbot91
@BojanMitrovicAimbot91 5 месяцев назад
Thanks for this😄
@damianbutterworth2434
@damianbutterworth2434 4 месяца назад
Drinking and making UTube vids is where I go wrong lol.
@greentroll9326
@greentroll9326 3 месяца назад
@@damianbutterworth2434 your microphone went wrong have to get one them stadalone ones mate wit built in screen
@damianbutterworth2434
@damianbutterworth2434 5 месяцев назад
const int analogInPin = A0; // Analog input pin that the potentiometer is attached to int sensorValue = 0; // value read from the pot #include <LCD-I2C.h> LCD_I2C lcd(0x27, 20, 4); // Default address of most PCF8574 modules, change according void setup() { // If you are using more I2C devices using the Wire library use lcd.begin(false) // this stop the library(LCD-I2C) from calling Wire.begin() lcd.begin(); lcd.display(); lcd.backlight(); pinMode(8, OUTPUT); digitalWrite(8, HIGH); } void loop() { // read the analog in value: sensorValue = analogRead(analogInPin); if(sensorValue >= 200){ lcd.setCursor(0,1); lcd.print("RAINING!!!!!!!!!!"); delay(5000); digitalWrite(8, LOW); delay(1000); digitalWrite(8, HIGH); delay(5000); } if(sensorValue <= 199){ lcd.setCursor(0,1); lcd.print(" "); } lcd.setCursor(0,0); lcd.print(sensorValue); lcd.print(" "); delay(500); }
@greentroll9326
@greentroll9326 5 месяцев назад
you making a water plants if plants not wet lol- , what happens if it keeps raining woud trhe air keep blowing anver 5 secs mate ?
@damianbutterworth2434
@damianbutterworth2434 5 месяцев назад
This is for the washing line. To take it in when it rains. :) I did use the air valve for watering plants a few years ago. Got flooded out too many times lol
@greentroll9326
@greentroll9326 5 месяцев назад
@@damianbutterworth2434 lol i thougfht you already did the auto washing line when you did the blinds whats this version 2 ? are you gonna have it put back out the washing when it stops rraining ie : if rain- true then say in if rain = flalse then pop back out lol would be efficient if it was only a short shower your washing would be able to go out when it stopped :)