Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature may not be available in some browsers.
Sorry , maar " shame on you AMT ".
Ik houd jullie op de hoogte.
Mvg;
Barry
Ja, maar zou toch echt vrij simpel zelf te maken moeten zijn met een arduino, een drukknop en een potmeter. Zou, inclusief een behuizing, toch niet veel meer als 35 Euro hoeven te kosten.
Sequence:
1) Set trim to up. ”Ready” will appear on the data terminal screen. Raise the stick to 50%
and set back again, this will trigger the kerostart sequence. Raising the throttle to
maximum will switch”on” the starter at full power to allow the operator to blow away any
flames produced by a previous aborted start. Use this feature on emergency and only in
short burst to prevent to overload the starter motor.
#include <Servo.h>
Servo myservo;
int potpin = 0;
int buttonPin = 2;
int ledPin = 3;
int val;
void setup()
{
myservo.attach(9);
pinMode(buttonPin, INPUT);
pinMode(ledPin, OUTPUT);
digitalWrite(buttonPin, HIGH);
}
void loop()
{
val = analogRead(potpin);
if (digitalRead(buttonPin) == HIGH) {
digitalWrite(ledPin, LOW);
val = map(val, 0, 1023, 0, 149);
}
else {
digitalWrite(ledPin, HIGH);
val = map(val, 0, 1023, 30, 179);
}
myservo.write(val);
}