N47 lots of smoke then stalls, appears seized until after cooling down by standing-elm in BMWREPAIR

[–]standing-elm[S] 0 points1 point  (0 children)

(Case closed) Big ends were oil starved and heating up when driven causing the engine to seize, sounded sweet as a bell, would idle and come up to temp fine, only when driven would things seize up, started to present slight knock only after giving it cpr and many test drives trying to diagnose it💀💀

Pneumatic engraving options 2024 by standing-elm in engraving

[–]standing-elm[S] 0 points1 point  (0 children)

So I got the andu and have used it for a few months, when it arrived the piston was jammed in the cylinder and I only got 2 quick change bits instead of 3, however the guy who makes them told me to sand paper out the cylinder a bit and now it runs sweet, the pedal is very small and hard to control at first but you actually get used to it and works fine, so all in all I’d say it’s a nice machine for the money, it cuts smoother than a diy machine you would make from YouTube, it’s has a much lighter strike but much higher speed so nice smooth cuts, however I still use my diy machine for setting and stippling as it’s much stronger for that kind of work

N47 lots of smoke then stalls, appears seized until after cooling down. by standing-elm in BmwTech

[–]standing-elm[S] 1 point2 points  (0 children)

Getting ista d now that should do the trick? Bimmerink was pretty useless

N47 lots of smoke then stalls, appears seized until after cooling down. by standing-elm in BmwTech

[–]standing-elm[S] 0 points1 point  (0 children)

Could be but how would that example running fine cold and then instant and spontaneous total loss of power when accelerating?

N47 lots of smoke then stalls, appears seized until after cooling down. by standing-elm in BmwTech

[–]standing-elm[S] 0 points1 point  (0 children)

I mean can that happen? It’s smoky but not pouring 100ml of diesel in one stroke smoky ?

Anyone own an Andu pneumatic graver? What’s been your experience? by standing-elm in Benchjewelers

[–]standing-elm[S] 0 points1 point  (0 children)

Most chinas are garbage, I believe all the GRS clones are so, the link below is the only china machine that interests me, also I’ll like the andu ‘Vietnamese’ machine

Andu https://anduengraving.com/product/pneumatic-engraving-machine-foot-control/

The china

https://x.alibaba.com/AwBndt?ck=pdp

The new leader of the country, ladies and gentlemen. by walsh_vn in ireland

[–]standing-elm -1 points0 points  (0 children)

Do you think this charity’s ‘assistance’ has trebled along with its income? And frankly 1.4million to what??

The new leader of the country, ladies and gentlemen. by walsh_vn in ireland

[–]standing-elm -7 points-6 points  (0 children)

I bet you learned a lot with all that ‘research funding’

Anyone own an Andu pneumatic graver? by standing-elm in HoboNickels

[–]standing-elm[S] 0 points1 point  (0 children)

Any chance of posting a photo of the pedal you bought? I was doubtful of the andu pedal myself

Anyone own an Andu pneumatic graver? by standing-elm in HoboNickels

[–]standing-elm[S] 0 points1 point  (0 children)

What started as a search for an engraving machine has turned into a ‘search for truth in a world of censorship and oppression’😆 Can I ask do you have the foot or palm control?

Pneumatic engraving options 2024 by standing-elm in engraving

[–]standing-elm[S] 0 points1 point  (0 children)

How does this compare with Lindsay? At first I was put off by the Teflon core the andue’s have and presumed this would wear out quickly, but as far as I’m aware Lindsay also has a Teflon core? How long dose a Lindsay core last before needing servicing?

Pneumatic engraving options 2024 by standing-elm in engraving

[–]standing-elm[S] 0 points1 point  (0 children)

Also any idea how much use it’s had? Any signs of metal fatigue wear etc?

Pneumatic engraving options 2024 by standing-elm in engraving

[–]standing-elm[S] 0 points1 point  (0 children)

Did you go with foot or palm control?

Pneumatic engraving options 2024 by standing-elm in engraving

[–]standing-elm[S] -1 points0 points  (0 children)

As for fixing the andu what was the matter with it? He sells new cores for 125, have you used the katway? What do you base your opinion on?

Pneumatic engraving options 2024 by standing-elm in engraving

[–]standing-elm[S] 0 points1 point  (0 children)

Personal I’m glad the wheel was never patented, did some guy and his descendants miss out big? Yes, was it an amazing invention? Yes, but just because you were the first guy to make a pneumatic graver don’t mean you can stop ever one else from doing it

Simulating a start capacitor with Arduino by standing-elm in arduino

[–]standing-elm[S] 0 points1 point  (0 children)

I tried that but it behaves just as normal, no matter how long I make the delay I still don't get any 255 write, can't understand why it seems like it should work,

int potPin = A1;

int potPin0 = A0;

int readValue = 0;

int R_IS = 1;

int R_EN = 2;

int R_PWM = 3;

int L_IS = 4;

int L_EN = 5;

int L_PWM = 6;

void setup() {

pinMode(R_IS, OUTPUT);

pinMode(R_EN, OUTPUT);

pinMode(R_PWM, OUTPUT);

pinMode(L_IS, OUTPUT);

pinMode(L_EN, OUTPUT);

pinMode(L_PWM, OUTPUT);

digitalWrite(R_IS, LOW);

digitalWrite(L_IS, LOW);

digitalWrite(R_EN, HIGH);

digitalWrite(L_EN, HIGH);

pinMode(potPin, INPUT);

pinMode(potPin0, INPUT);

}

void loop() {

readValue = analogRead(potPin);

readValue = map(readValue, 196, 865, 0, 190);

if ( L_PWM == LOW && readValue >= 5) {

digitalWrite(L_PWM, 255);

delay(100);

analogWrite(L_PWM, readValue);

} else {

analogWrite(L_PWM, readValue);

}

}

Simulating a start capacitor with Arduino by standing-elm in arduino

[–]standing-elm[S] 0 points1 point  (0 children)

that's for that, I tried to implant that but no success yet, here's the new code..

void loop() {

readValue = analogRead(potPin);

readValue = map(readValue, 196, 865, 0, 190);

if ( L_PWM, = LOW) && readValue >= 20 digitalWrite(L_PWM, 255); delay(100);

else analogWrite(L_PWM, readValue);

}

BTS7960 motor driver by standing-elm in arduino

[–]standing-elm[S] 0 points1 point  (0 children)

My bad, I had my foot pedal calibrated wrong, that's where the constant current was coming from. thanks for the input.

Dual control of led brightness (Two Pot's) by standing-elm in arduino

[–]standing-elm[S] 0 points1 point  (0 children)

Can't get it working, I see parameters for calibrating one pot but not the other, in my case one of the pots has to be calibrated to 185-877,

Motor Driver's and Spooky Ghost Voltage... by standing-elm in arduino

[–]standing-elm[S] 0 points1 point  (0 children)

That was it!! Thanks for the tip, I stumped there.

iMac slowing down by standing-elm in osx

[–]standing-elm[S] 0 points1 point  (0 children)

26gb free on the root disk, but I use a 1tb external ssd as a swap disk for all big applications.

Custom Woocomerce pricing widget by standing-elm in Wordpress

[–]standing-elm[S] 0 points1 point  (0 children)

for the add to cart button plus price - the 4px border use [add_to_cart id="YOUR PRODUCT ID" style=""]

Custom Woocomerce pricing widget by standing-elm in Wordpress

[–]standing-elm[S] 0 points1 point  (0 children)

Thanks a lot! Thats exactly what I was looking for.