Difference between revisions of "ServoCentering"

From Review or Discard at Will
Jump to: navigation, search
m (2 revisions)
 
(No difference)

Latest revision as of 09:14, 6 August 2013

using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.NetduinoPlus;

namespace CenterServos
{
    public class Program
    {
        // Adjust the duration of Turns
        static uint turnDuration;
        static AnalogInput turnDurationPot = new AnalogInput(Pins.GPIO_PIN_A0);

        // adjust the duration of Motions
        static int straightDuration;
        static AnalogInput maintainDurationPot = new AnalogInput(Pins.GPIO_PIN_A1);

        public static void Main()
        {
            PWM leftServo = new PWM(Pins.GPIO_PIN_D5);
            PWM rightServo = new PWM(Pins.GPIO_PIN_D6);

            leftServo.SetPulse(20000, 1500);
            rightServo.SetPulse(20000, 1500);
        }
    }
}