更新UCD-API库及文档
This commit is contained in:
34
docs/UCD-API文档/examples/work_with_edid.py
Normal file
34
docs/UCD-API文档/examples/work_with_edid.py
Normal file
@@ -0,0 +1,34 @@
|
||||
#
|
||||
# Import UniTAP module.
|
||||
#
|
||||
|
||||
import UniTAP
|
||||
|
||||
#
|
||||
# To initialize UniTAP library wrapper user should create UniTAP.TsiLib() object.
|
||||
#
|
||||
lUniTAP = UniTAP.TsiLib()
|
||||
|
||||
#
|
||||
# For opening device, please, put serial number of the device as 8 symbol str or put index of device.
|
||||
#
|
||||
# dev = lUniTAP.open("NNNNNNNN")
|
||||
dev = lUniTAP.open(0)
|
||||
|
||||
# After opening device as in UCD Console device role should be selected.
|
||||
|
||||
# role = dev.select_role(UniTAP.dev.UCD323.DPSource)
|
||||
# role = dev.select_role(UniTAP.dev.UCD323.HDMISource)
|
||||
role = dev.select_role(UniTAP.dev.UCD400.DPSourceDPSink)
|
||||
|
||||
timings_from_edid = role.dprx.edid.read_timings()
|
||||
|
||||
#
|
||||
# Since the 3.5 version, TsiLib and TSIDevice objects have the option to be closed earlier.
|
||||
# TSIDevice can be closed with the TsiLib method close(). TsiLib can be closed with cleanup().
|
||||
# Clean up will close all opened devices and block ability to open any devices
|
||||
# with same TsiLib object.
|
||||
#
|
||||
lUniTAP.close(dev)
|
||||
|
||||
lUniTAP.cleanup()
|
||||
Reference in New Issue
Block a user