From 07e686eb253ffd29f36dbe530b3a17633e02b353 Mon Sep 17 00:00:00 2001 From: Roy Date: Sat, 10 Feb 2018 02:13:37 +0200 Subject: Added support for motor controllers. --- .../Tango.Integration/Operators/MachineOperator.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs') diff --git a/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs index cc42b64ed..56b7ec971 100644 --- a/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs @@ -184,6 +184,26 @@ namespace Tango.Integration.Operators return handler; } + /// + /// Starts jogging the specified motor. + /// + /// The request. + /// + public Task> StartMotorJogging(MotorJoggingRequest request) + { + return SendRequest(request); + } + + /// + /// Stops jogging the specified motor. + /// + /// The request. + /// + public Task> StopMotorJogging(MotorAbortJoggingRequest request) + { + return SendRequest(request); + } + #endregion } } -- cgit v1.3.1