aboutsummaryrefslogtreecommitdiffstats
path: root/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/60a22b86178e001a12adc74468436fd9
stat options
Period:
Authors:

Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/60a22b86178e001a12adc74468436fd9')

AuthorW27 2026W28 2026W29 2026W30 2026Total
Total00000
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Diagnostics;
using Tango.PMR.Hardware;

namespace Tango.PPC.Maintenance.Commands
{
    public class OpenCloseRightLeadingWheelsCommand : OpenCloseMotorCommand
    {
        public OpenCloseRightLeadingWheelsCommand() : base(
           HardwareMotorType.MotoRloading,
           MotorDirection.Backward,
           250,
           250,
           MotorState.Closed,
           "Opening right leading wheels...",
           "Closing right leading wheels...",
           "Error opening right leading wheels.",
           "Error closing right leading wheels.",
           "The right leading wheels are now opened.",
           "The right leading wheels are now closed."
           )
        {

        }
    }
}