潘志宝
2025-03-23 45ccb96b7a3a9929e8beb6a2c5793eff6170b56d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.iailab.netsdk.demo.module;
 
import com.iailab.netsdk.lib.NetSDKLib.NET_CTRL_SET_PARK_INFO;
 
public class DotmatrixScreenModule {
    
    
    public static boolean setDotmatrixScreen(int emType, NET_CTRL_SET_PARK_INFO msg) {
        
        boolean ret = LoginModule.netsdk.CLIENT_ControlDevice(LoginModule.m_hLoginHandle, emType, msg.getPointer(), 3000);
        
        return ret;    
    }
}