-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathIAxesController.cs
More file actions
27 lines (24 loc) · 1016 Bytes
/
IAxesController.cs
File metadata and controls
27 lines (24 loc) · 1016 Bytes
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
// Copyright (c) 2025, Phoenix Contact GmbH & Co. KG
// Licensed under the Apache License, Version 2.0
using Moryx.AbstractionLayer.Hardware;
namespace Moryx.AbstractionLayer.Drivers.Axis
{
/// <summary>
/// Driver that can control axes
/// </summary>
public interface IAxesController : IDriver
{
/// <summary>
/// Will move the axis of the laser to the given position
/// </summary>
/// <param name="axis">The axis which should be moved</param>
/// <param name="targetPosition">The target position of the axis</param>
Task<AxisMovementResponse> MoveAxis(Axes axis, double targetPosition);
/// <summary>
/// Will move the axis of the laser to the given position
/// </summary>
/// <param name="axis">The axis which should be moved</param>
/// <param name="targetPosition">The target position of the axis</param>
Task<AxisMovementResponse> MoveAxis(Axes axis, AxisPosition targetPosition);
}
}