aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Commands/OpenCloseDyeingHeadCommand.cs
blob: 794274e21ecb1569eabc4fbeb24032106ae82142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Integration.Operation;
using Tango.PMR.Diagnostics;
using Tango.PMR.Hardware;

namespace Tango.PPC.Maintenance.Commands
{
    public class OpenCloseDyeingHeadCommand : OpenCloseMotorCommand
    {
        public OpenCloseDyeingHeadCommand() : base(
            HardwareMotorType.MotoDhLid,
            MotorDirection.Backward,
            400,
            400,
            MotorState.Closed,
            "Opening dyeing head lead...",
            "Closing dyeing head lead...",
            "Error opening dyeing head lead.",
            "Error closing dyeing head lead.",
            "The dyeing head lead is now opened.",
            "The dyeing head lead is now closed."
            )
        {

        }
    }
}