dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
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;    
    }
}