你好,请问大家能给我一个关于控制dlp 4500投影图片的并且不用ui界面的一个小程序案例吗,就是关于如何使用API在dlpc350_api.cpp中的程序?不想要关于qtcreater的ui界面的程序,因为里面东西太多了,看不明白。
如:
DLPC350_SetPatternConfig(1,1,255,3);
DLPC350_SetPatternTriggerMode(0);
DLPC350_SetExposure_FramePeriod(8333, 8333);
DLPC350_SetLedEnables(false, true, true, true);
我想要的是一个不使用ui界面的就能控制dlp4500投影仪图片的一个简单的实际的案例,非常感谢。
Jeremy Wu:
只需要调USB_OPEN即可以使用API做UI.
int DLPC350_USB_Init(void){ return hid_init();}
int DLPC350_USB_Exit(void){ return hid_exit();}
int DLPC350_USB_Open()
QT是和VC类似的开发环境.