潘志宝
2025-03-03 4bf5b11ea4a0b49f8a7810919241a41f6ab935d4
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;    
    }
}