Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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;    
    }
}