コード例 #1
0
ファイル: Frm_Main.cs プロジェクト: JasmineZK/AsuMotionDevice
        private void AsuMotionResume(object sender, EventArgs e)
        {
            int ret = AsuInvoke.AsuMotion_Resume(handle);

            switch (ret)
            {
            case 0:
                Print("恢复暂停的运动 成功");
                break;

            case 1:
                Print("恢复暂停的运动 失败,设备句柄为空指针,一般因为没有打开设备导致");
                break;

            default:
                Print("恢复暂停的运动 失败");
                break;
            }
        }