简介:
此款激光器的控制器支持串口通信,可指令控制。
介绍:
下载链接:https://download.youkuaiyun.com/download/c_gyl/11351080。
使用:
- 使用前,需要设置Slit、能量、频率等。
- 出光前,使能出光,出光。不用时,需要关闭出光。
1.出光
//0-停止出光,空闲状态;1-使能出光;2-出光;
CString str;
str.Format(_T(";LC:FL 2\r\n"));
2.使能开光
//0-禁使能;1-使能;
CString str;
str.Format(_T(";LC:EN 1\r\n"));
3.能量设置
//三波长(波长类型、几个波长的依据是实际选型),分别是IR,GRN,DUV,0~1000
CString str;
str.Format(_T(";LC:BL %d,%d,%d\r\n"), IR, GRN, DUV);
4.光斑大小
//Slit大小,0.00~2500.00μm
CString str;
str.Format(_T(";LC:SP 1,%d,%d\r\n"), slitX, slitY);
5.出光模式
//0-连续;1-点射;2-burst;
CString str;
str.Format(_T(";LC:PM %d\r\n"), mode);
6.频率
//1-100 Hz
CString str;
str.Format(_T(";LC:RR %d\r\n"), rate);
7.光源
//0-不使用;1-Slit背光;
CString str;
str.Format(_T(";LC:IL 1,%d\r\n"), light);
该博客围绕LS605激光器展开,其控制器支持串口通信与指令控制。给出了下载链接,还介绍了使用方法,使用前需设置Slit、能量、频率等,出光前要使能出光,不用时关闭出光,详细说明了出光、能量设置等方面。
846

被折叠的 条评论
为什么被折叠?



