Recent content by Crusher07

  1. C

    Payload Drop With Servo

    Think I worked it out myself... Testing soon. int LDRsensor = A0; int Threshold = 150; #include <Servo.h> Servo s1; Servo s2; int maxnum = 1; // Blink the LED 20 times int count = 0; // Our blink counter void setup() { Serial.begin(9600); s1.attach(9); s2.attach(10); } void loop()...
  2. C

    Payload Drop With Servo

    Also made one myself, my first Arduino project. Could you share your Arduino code with me? Thanx in advance.