雷赛控制技术 DMC系列运动控制卡是一款新型的 PCI/PCIe 总线运动控制卡。可以控制多个步进电机或数字式伺服电机;适合于多轴点位运动、插补运动、轨迹规划、手轮控制、编码器位置检测、IO 控制、位置比较、位置锁存等功能的应用。
DMC3000 系列卡的运动控制函数库功能丰富、易学易用,用户开发应用软件十分方便。随卡免费提供的雷赛控制卡 Motion 调试软件,不但可以演示 DMC系列卡的控制功能,而且可用于控制卡及运动控制系统的硬件测试。
源码下载----》 源码下载
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="2.5*" />
</Grid.RowDefinitions>
<GroupBox Margin="5" Header="轴位置和状态">
<DockPanel>
<Button
Width="120"
Margin="10"
VerticalAlignment="Top"
Command="{Binding InitCommand}"
Content="位置清零"
DockPanel.Dock="Right" />
<UniformGrid Columns="4">
<DockPanel Height="25" Margin="5">
<TextBlock Text="X轴位置:" />
<TextBox IsReadOnly="True" Text="{Binding Xpos}" />
</DockPanel>
<DockPanel Height="25" Margin="5">
<TextBlock Text="Y轴位置:" />
<TextBox IsReadOnly="True" Text="{Binding Ypos}" />
</DockPanel>
<DockPanel Height="25" Margin="5">
<TextBlock Text="Z轴位置:" />
<TextBox IsReadOnly="True" Text="{Binding Zpos}" />
</DockPanel>