LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Axis.m
Go to the documentation of this file.
1classdef (Abstract) Axis < Device
2 %AXIS Summary of this class goes here
3 % Detailed explanation goes here
4
5 properties
6 no;
7 type;
8 pos_min;
9 pos_max;
10 velocity;
11 velocity_max;
12 step;
13
14 HardwareAdress;
15 % Serialnummer des Controllers
16 controllerSerialNumber;
17
18 end
19
20 methods (Abstract)
21 MOV(obj,value);
22 POS(obj);
23 end
24end
25
Definition: Axis.m:4
Definition: Device.m:6