Module@novastar/native

@novastar/native

Structures and APIs in typescript automatically generated from decompiled NovaStar .NET libraries.

Go to API documentation.

Using npm:

npm install --save @novastar/native@next

or yarn:

yarn add @novastar/native@next

Since the native API contains more than 1000 methods, not all of which you will use, you can include the methods you need. To do this, create a file api.ts and import the functionality you need.

// api.ts

import '@novastar/native/api/ReadDviMode';
import '@novastar/native/api/ReadDviSelect';
import '@novastar/native/api/ReadGlobalBrightness';
import '@novastar/native/api/ReadIsHasDVI';
import '@novastar/native/api/ReadAllBrightnessInfo';
import '@novastar/native/api/ReadSelfTestMode';
import '@novastar/native/api/SetGlobalBrightness';
import '@novastar/native/api/SetSelfTestMode';
import '@novastar/native/api/SetGamma';
import '@novastar/native/api/ReadGamma';
import '@novastar/native/api/ReadScanner_McuProgramRemarks';
import '@novastar/native/api/ReadScanner_FPGAProgramRemarks';

Each import adds new methods to the Session class and extends API interface. If you import the file MethodName, then the async methods MethodName and tryMethodName will be added. The first method for reading the value will return a promise with a non-negative number if the response has a buffer size of 1, 2, or 4 bytes and a promise with a buffer otherwise. If the response is not received, or the status of the response contains an error, an exception will be rejected. The second method, which starts with try, will return the answer, or null if there is none. In this case, don't forget to check the status res.ack of the response .

Then create a Session.ts file that will export the resulting type containing all of your selected methods.

// Session.ts

import { API, Session } from '@novastar/codec';

import './api';

export type SessionAPI = API & Session;

export type { API };

Now you can use the resulting type:

import { net } from '@novastar/net';
import { SessionAPI } from './Session';

const session: SessionAPI = net.open('192.168.1.40');
await session.SetGamma(0, 0, 0, false, 2.6);

Structs and enumerations are also best imported via direct paths.

Enum types end with Enum in their names. Each file contains, in addition to the type, a codec that can be used to validate and convert input data. See io-ts for details.

The full code can be viewed at the link

import * as t from 'io-ts';
import { XMLParser, type X2jOptions } from 'fast-xml-parser';
import { isLeft } from 'fp-ts/Either';
import * as t from 'io-ts';
import { PathReporter } from 'io-ts/PathReporter';
import fs from 'fs';

import { SystemParameterConfig } from '@novastar/native/SystemParameterConfig';

const options: X2jOptions = {
ignoreAttributes: false,
parseTagValue: false,
};

const parser = new XMLParser(options);

/**
Create a wrapper for the parser
*/
const makeCfgParser =
<C extends t.Mixed>(codec: C) =>
(data: Buffer): t.TypeOf<C> => {
const cfg = parser.parse(data);
const { decode } = t.exact(t.type({ [codec.name]: codec }));
const res = decode(cfg);
if (isLeft(res)) {
throw new TypeError(PathReporter.report(res)[0]);
}
return res.right[codec.name];
};

const systemParameterParser = makeCfgParser(SystemParameterConfig);

/**
* *.scfg
* @param pathname
*/
export const loadSystemConfig = (pathname: string): SystemParameterConfig => {
const data = fs.readFileSync(pathname);
return systemParameterParser(data);
};

Not all APIs have been automatically converted from decompiled code. In addition, the resulting code may contain errors. There is also no description of API, and we can only guess about its purpose based on its name. Unfortunately, many names may contain syntax and semantic errors (original names are preserved). Refer to the decompiled code if in doubt.

This repository contains C# scripts, some wrapping for the generated API, and the original binary libraries. All useful content is automatically generated from the decompiled code of binary libraries in generated folder. A description of the generated API is also available here.

Install dependencies

pnpm install

To decompile binary libraries, dotnet version 8 or higher is required, and the ilspycmd package must also be installed.

To check the prerequisites, run the command

pnpm run requirements

To install ilspycmd run the command:

pnpm run ilspycmd:install

To automatically generate the typescript code, run the command:

pnpm run rebuild

Index

Modules

AckResults AddColorRestoreInfo AddressMapping AdjustMode api api/Distribute_ReadCompanyID api/Distribute_ReadDistributeFPGADescription api/Distribute_ReadDistributeFPGALength api/Distribute_ReadDistributeMCUDescription api/Distribute_ReadDistributeMCULength api/Distribute_ReadDistributeMCUVersion api/Distribute_ReadDistributeModle api/Distribute_ReadFuncCardFPGAVersion api/Distribute_ReadGoldenFPGAVersion api/Distribute_SetDistributeFPGALength api/Distribute_SetDistributeMCUDescription api/Distribute_SetDistributeMCULength api/Distribute_SetDistributeMCUVersion api/Distribute_SetFuncCardFPGADescription api/Distribute_SetFuncCardFPGAVersion api/Distribute_SetRebootAppFpgaProgram api/Distribute_SetRebootBootFpgaProgram api/Distribute_SetStoreFpgaAppProgram api/Distribute_SetStoreFpgaBootProgram api/ExtendModuleOperCmd api/FuncCard_ReadAllPowerPortCtrl api/FuncCard_ReadAllPowerPortCtrl_1 api/FuncCard_ReadAudioFrequency api/FuncCard_ReadAudioFrequency_1 api/FuncCard_ReadCompanyID api/FuncCard_ReadCompanyID_1 api/FuncCard_ReadDelayTime api/FuncCard_ReadDelayTime_1 api/FuncCard_ReadFanSpeedOfMonitorCard api/FuncCard_ReadFanSpeedOfMonitorCard_1 api/FuncCard_ReadFuncCardAllStatus api/FuncCard_ReadFuncCardAllStatus_1 api/FuncCard_ReadFuncCardFPGADescription api/FuncCard_ReadFuncCardFPGADescription_1 api/FuncCard_ReadFuncCardFPGALength api/FuncCard_ReadFuncCardFPGALength_1 api/FuncCard_ReadFuncCardFPGAVersion api/FuncCard_ReadFuncCardFPGAVersion_1 api/FuncCard_ReadFuncCardMCUDescription api/FuncCard_ReadFuncCardMCUDescription_1 api/FuncCard_ReadFuncCardMCULength api/FuncCard_ReadFuncCardMCULength_1 api/FuncCard_ReadFuncCardMCUVersion api/FuncCard_ReadFuncCardMCUVersion_1 api/FuncCard_ReadFuncCardModle api/FuncCard_ReadFuncCardModle_1 api/FuncCard_ReadGoldenFPGAVersion api/FuncCard_ReadGoldenFPGAVersion_1 api/FuncCard_ReadHumiOfFuncCard api/FuncCard_ReadHumiOfFuncCard_1 api/FuncCard_ReadHumiOfMonitorCard api/FuncCard_ReadHumiOfMonitorCard_1 api/FuncCard_ReadIsMonitorCardExist api/FuncCard_ReadIsMonitorCardExist_1 api/FuncCard_ReadLinkStateOfMonitorCard api/FuncCard_ReadLinkStateOfMonitorCard_1 api/FuncCard_ReadMonitorCardAllInfo api/FuncCard_ReadMonitorCardAllInfo_1 api/FuncCard_ReadMonitorCardAllStatus api/FuncCard_ReadMonitorCardAllStatus_1 api/FuncCard_ReadMonitorCardModle api/FuncCard_ReadMonitorCardModle_1 api/FuncCard_ReadMonitorFPGAVersion api/FuncCard_ReadMonitorFPGAVersion_1 api/FuncCard_ReadOutDeviceValue api/FuncCard_ReadOutDeviceValue_1 api/FuncCard_ReadOutDeviceValue_2 api/FuncCard_ReadOutDeviceValue_3 api/FuncCard_ReadOutTAndHumValue api/FuncCard_ReadOutTAndHumValue_1 api/FuncCard_ReadPowerCtrlMode api/FuncCard_ReadPowerCtrlMode_1 api/FuncCard_ReadPowerOperTime api/FuncCard_ReadPowerOperTime_1 api/FuncCard_ReadPowerPortCtrl api/FuncCard_ReadPowerPortCtrl_1 api/FuncCard_ReadPowerPortCtrlTotal api/FuncCard_ReadPowerPortCtrlTotal_1 api/FuncCard_ReadSmokeWarningOfMonitorCard api/FuncCard_ReadSmokeWarningOfMonitorCard_1 api/FuncCard_ReadTempInfoOfFuncCard api/FuncCard_ReadTempInfoOfFuncCard_1 api/FuncCard_ReadTempInfoOfMonitorCard api/FuncCard_ReadTempInfoOfMonitorCard_1 api/FuncCard_ReadTimeOnFuncCard api/FuncCard_ReadTimeOnFuncCard_1 api/FuncCard_ReadVoltageOfFuncCard api/FuncCard_ReadVoltageOfFuncCard_1 api/FuncCard_ReadVoltageOfMonitorCard api/FuncCard_ReadVoltageOfMonitorCard_1 api/FuncCard_SetAudioFrequency api/FuncCard_SetAudioFrequency_1 api/FuncCard_SetDelayTime api/FuncCard_SetDelayTime_1 api/FuncCard_SetFPGAData api/FuncCard_SetFuncCardFPGADescription api/FuncCard_SetFuncCardFPGADescription_1 api/FuncCard_SetFuncCardFPGALength api/FuncCard_SetFuncCardFPGALength_1 api/FuncCard_SetFuncCardFPGAVersion api/FuncCard_SetFuncCardFPGAVersion_1 api/FuncCard_SetFuncCardMCUDescription api/FuncCard_SetFuncCardMCUDescription_1 api/FuncCard_SetFuncCardMCULength api/FuncCard_SetFuncCardMCULength_1 api/FuncCard_SetFuncCardMCUVersion api/FuncCard_SetFuncCardMCUVersion_1 api/FuncCard_SetOutDevice_2 api/FuncCard_SetOutDevice_3 api/FuncCard_SetPowerCtrlMode api/FuncCard_SetPowerCtrlMode_1 api/FuncCard_SetPowerPortCtrl api/FuncCard_SetPowerPortCtrl_1 api/FuncCard_SetPowerPortCtrlTotal api/FuncCard_SetPowerPortCtrlTotal_1 api/FuncCard_SetRebootAppFpgaProgram api/FuncCard_SetRebootAppFpgaProgram_1 api/FuncCard_SetRebootBootFpgaProgram api/FuncCard_SetRebootBootFpgaProgram_1 api/FuncCard_SetStoreFpgaAppProgram api/FuncCard_SetStoreFpgaAppProgram_1 api/FuncCard_SetStoreFpgaBootProgram api/FuncCard_SetStoreFpgaBootProgram_1 api/GetDeviceLevel api/GetGrayCoefficientEN api/GetLowGrayPull api/GetSannerFunctionList api/GetScanerFunctionTable api/GetScannerSpiSpeedAdjust api/ModuleOperCmd api/MoveCorrectionFromMasterFlashToSdram api/MoveCorrectionFromSdramToMasterFlash api/MoveCorrectionFromSdramToSlaveFlash api/MoveCorrectionFromSlaveFlashToSdram api/Read_EquipmentIP api/Read_VideoSourceState api/Read2038SBlankOptimizationLevel1 api/Read2038SBlankOptimizationLevel2 api/Read2038SDelayTime api/Read2055RegisterData api/Read2055UnitRegisterData api/Read2200RegisterData api/Read5359RegAddress api/Read5pinControlLight api/Read6867RegData api/Read9868ABlankOptimizationLevel1 api/Read9868ABlankOptimizationLevel2 api/ReadA4ScanCardModle api/ReadABCDCode api/ReadABCDESignalDelay api/ReadABCDRollOver api/ReadAddrExtend api/ReadAdjustMatrixAndEnable api/ReadAllBrightnessInfo api/ReadAllModuelStatus api/ReadAllPortEnable api/ReadAllPortHeight api/ReadAllPortOffsetX api/ReadAllPortOffsetY api/ReadAllPortWidth api/ReadAllScaleInfo api/ReadAllStatus api/ReadAllStatus_1 api/ReadAttachedMonitorCardExist api/ReadAttachedMonitorCardModle api/ReadAttachedMonitorCardProgramVersion api/ReadAudioControl api/ReadAutoCorrectUpload api/ReadAverMatrix api/ReadBackUpFileHeader api/ReadBackUpFinishFlag api/ReadBackUpParamFromSender api/ReadBgain api/ReadBitErrorRateData api/ReadBlackScreenSleepParam api/ReadBlankingTime5253Value api/ReadBlankUnitNumPerScan api/ReadBlueBrightness api/ReadBrightDarkLineFixState api/ReadBrightnessModel api/ReadCabinetInfo api/ReadCabinetRotation api/ReadCabinetSerialNum api/ReadCascadeDiretion api/ReadCheckModuleFlashResult api/ReadCheckModuleFlashResult_1 api/ReadClearViewEnableInfo api/ReadClearViewInfo api/ReadCoefficientSource api/ReadColorAdjustEnable api/ReadColorAdjustMatrixType api/ReadColorManageCoefData api/ReadColorMatrix api/ReadColScalePara api/ReadCommunicationProtocol api/ReadCompanyID api/ReadConfigFileID api/ReadConfigRegiste3rRead api/ReadConfigRegister api/ReadConnectRelayTemperature api/ReadContrastValue api/ReadControlHeight api/ReadControllerModelId api/ReadControllerPhysical api/ReadControllerSnHigh api/ReadControlWidth api/ReadCorrectionDataToScan api/ReadCorrectionOn api/ReadCorrectionState api/ReadCtrlEndPoint api/ReadCustomGammaConfigInfo api/ReadDataDirection api/ReadDataGroupSequence api/ReadDclkHigh api/ReadDclkHighRatio api/ReadDclkPhase api/ReadDclkUnitCycle api/ReadDecodeType api/ReadDehumidAdjustTime api/ReadDeltaTValue api/ReadDeviceExtendType api/ReadDeviceTable api/ReadDeviceType api/ReadDExtendMode api/ReadDHTValue api/ReadDisConnectRelayTemperature api/ReadDisplayMode api/ReadDisplayModeWhenNoSignal api/ReadDistributeEthernetPortScannerX api/ReadDistributeEthernetPortScannerXY api/ReadDistributeEthernetPortScannerY api/ReadDistributeNumberOfCardOrScanBoardInPort api/ReadDistributeReturnFactoryValues api/ReadDoorSwitchDetection api/ReadDoubleCardEaraseState api/ReadDoubleCardRecordCmd api/ReadDoubleCardSpace api/ReadDoubleEaraseStateCmd api/ReadDoubleModelFrameRate api/ReadDriverFucntion api/ReadDriverType api/ReadDriverType2Byte api/ReadDVI0FieldRate api/ReadDvi1Dvi0OffsetX api/ReadDvi1Dvi0OffsetY api/ReadDVI1FieldRate api/ReadDviEncyptEn api/ReadDviHeight api/ReadDviMode api/ReadDviOf1600OffestInfo api/ReadDviOf4KInfo api/ReadDviOffsetX api/ReadDviOffsetY api/ReadDviSelect api/ReadDviWidth api/ReadEndColScalePos api/ReadEndRowScalePos api/ReadEnhancedMode2053 api/ReadEthernetPortScannerX api/ReadEthernetPortScannerXY api/ReadEthernetPortScannerY api/ReadExtendModuleConfigInfo api/ReadFan api/ReadFanSpeedGearCircuitInfo api/ReadFanSpeedOfMonitorCard api/ReadFieldRate api/ReadFieldRateMode api/ReadGamma api/ReadGammaMaxValue api/ReadGammaMaxValue2053 api/ReadGclkHigh api/ReadGclkNumPerScan api/ReadGclkPhase api/ReadGclkUnitCycle api/ReadGgain api/ReadGhostRemoveMode api/ReadGlobalBrightness api/ReadGrayBit api/ReadGrayDepth api/ReadGrayMode api/ReadGreenBrightness api/ReadGroupNumInModule api/ReadGroupSwapEn api/ReadGroupSwapInfo api/ReadGroupSwapInfo_1 api/ReadHalfFreqSetMode api/ReadHDEnable api/ReadHoldTime api/ReadHubMonitorStatus api/ReadHubMonitorStatus_1 api/ReadHumidity api/ReadHumiOfMonitorCard api/ReadHumiOfScanCard api/ReadHWRestoreFinishFlag api/ReadICNumber api/ReadIoControl api/ReadIrregularCabinetDataGroupOutputInfo api/ReadIrregularCabinetRealGroup api/ReadIrregularScreenDrive api/ReadIsHasDVI api/ReadIsHasGenLock api/ReadIsSerdes api/ReadKillMode api/ReadLanguageLibraryFlag api/ReadLCDSwitch api/ReadLicenseInfo api/ReadLightPlankFlashTopology api/ReadLightPlankFlashTopology1 api/ReadLightTimePerSubField api/ReadLightTimePerSubFieldRatio api/ReadLineBias api/ReadLoadMode api/ReadLocalStartX api/ReadLocalStartY api/ReadLockMode api/ReadLogicalTotalDataGroupNum api/ReadLogicShiftUnitNumPerSubField api/ReadLowAshCompensation api/ReadLowAshCompensationOne5253Value api/ReadLowAshCompensationTwo5253Value api/ReadLowDelayMode api/ReadLowGrayCompensation api/ReadMagnitudes api/ReadMasterOrSlave api/ReadMasterOrSlaveAllData api/ReadMasterOrSlaveNext api/ReadMasterOrSlaveState api/ReadMbi5042GrayEnhanced api/ReadMBI5252AutoResetTime api/ReadMGCoefData api/ReadMGEnParmData api/ReadMGParmData api/ReadMirrorMode api/ReadModuelCols api/ReadModuelRows api/ReadModule_McuProgramEdition api/ReadModule_McuProgramLength api/ReadModule_McuProgramRemarks api/ReadModuleConfigInfo api/ReadModuleHeight api/ReadModuleScanSequenceInfo api/ReadModuleWidth api/ReadModuleWidthAndHeigth api/ReadMonitorDataSwapInfo api/ReadMoudleNumber api/ReadNewOERamEnable api/ReadNewPortEnable api/ReadNoCorrectionAttenuation api/ReadNoCorrectionThreshold api/ReadNumberOfCardOrScanBoardInPort api/ReadOEPority api/ReadOnePackageSBParameters api/ReadOnePackageSBParameters_1 api/ReadPCMacAddr api/ReadPhysicalTotalDataGroupNum api/ReadPointNumPerDrive api/ReadPortEnable api/ReadPortHeight api/ReadPortOffsetX api/ReadPortOffsetY api/ReadPortWidth api/ReadPowerWorkState api/ReadRedBrightness api/ReadReduceHighContrast api/ReadRefNumPerVs api/ReadRemoveChipChannelData api/ReadResolutionExtend api/ReadRestoreFinishFlag api/ReadReturnFactoryValues api/ReadRgain api/ReadRGBBrightness api/ReadRgbCode api/ReadRotateAngle api/ReadRowChangePoint api/ReadRowScalePara api/ReadRowsCtrlByDataGroup api/ReadRtco api/ReadSaturationValue api/ReadSaveDistributeParameters api/ReadSaveSendCardsParameters api/ReadScaleEn api/ReadScaleInfo api/ReadScanBoardDataTo2000 api/ReadScanBoardDataTo2500 api/ReadScanCardAllStatus api/ReadScanCardGoldenFPGAProgramVerion api/ReadScanCardModle api/ReadScanerBurningProgramPackage api/ReadScanerCountOfSenderCard api/ReadScanerDirectModeEnable api/ReadScanMode api/ReadScanner_ColorRestore api/ReadScanner_DMFirst api/ReadScanner_DMPM api/ReadScanner_DMSecond api/ReadScanner_DMThird api/ReadScanner_DMWSP api/ReadScanner_FPGAProgramEdition api/ReadScanner_FPGAProgramInfo api/ReadScanner_FPGAProgramLength api/ReadScanner_FPGAProgramRemarks api/ReadScanner_LowGrayCodeTable api/ReadScanner_McuProgram api/ReadScanner_McuProgramEdition api/ReadScanner_McuProgramInfo api/ReadScanner_McuProgramLength api/ReadScanner_McuProgramRemarks api/ReadScanner_MutiChipRamA api/ReadScanner_MutiChipRamB api/ReadScanner_MutiChipRamC api/ReadScanner_NewOEHighTable api/ReadScanner_NewOETable api/ReadScanner18BitEnable api/ReadScannerBacklightSwitch api/ReadScannerCabinetCorrectLocationSize api/ReadScannerCabinetID api/ReadScannerColorInfo api/ReadScannerColorSupportInfo api/ReadScannerDehumidPara api/ReadScannerDigitalTubeSwitch api/ReadScannerDoubleLock api/ReadScannerFunctionConfig api/ReadScannerFunctionInfo api/ReadScannerGrayScaleCoef api/ReadScannerIrCabientCfg api/ReadScannerLowDelayEnable api/ReadScannerMouldeState api/ReadScannerRecordTime api/ReadScannerResetCycleNum api/ReadScannerResetEn api/ReadScannerRT5958TinyAfterglow api/ReadScannerRT5958TinyLineFeed api/ReadScannerState api/ReadScreenDriveType api/ReadScreenEncrypt api/ReadSelectSingalType api/ReadSelfTestMode api/ReadSender_10bitGammaValue api/ReadSender_12bitGammaValue api/ReadSender_AuthorizePassward api/ReadSender_AuthorizeTime api/ReadSender_ComplexCfgScreenFlagSpace api/ReadSender_DistributeEnable api/ReadSender_DistributePortSeting api/ReadSender_DVICols api/ReadSender_DVIResolutionHeight api/ReadSender_DVIResolutionWidth api/ReadSender_DVIRows api/ReadSender_EdidInterlacedFlag api/ReadSender_EDIDSpace api/ReadSender_Enable3DStateSpace api/ReadSender_EnableAndSegementOfHWPro api/ReadSender_EnableDVIEncrypt api/ReadSender_EnableGainOfHWPro api/ReadSender_EnableGammaOfHWPro api/ReadSender_EnablePartBrightOfHWPro api/ReadSender_EnableProgramBright api/ReadSender_EnableReadHWAutoBright api/ReadSender_EnableSmartBright api/ReadSender_EnableSyncAndTotalData api/ReadSender_EncryptAllInfo api/ReadSender_EncryptKey api/ReadSender_EncryptKeyLength api/ReadSender_EncryptKeyRegion api/ReadSender_EncryptPassword api/ReadSender_FPGAProgramEdition api/ReadSender_FPGAProgramInfo api/ReadSender_FPGAProgramLength api/ReadSender_FPGAProgramRemarks api/ReadSender_HardWareBackupInfos api/ReadSender_HDR10MinLum api/ReadSender_HDRInfo api/ReadSender_HDRState api/ReadSender_HLGModel api/ReadSender_HWBrightAdjustType api/ReadSender_HWProBrightSegemntCnt api/ReadSender_HWProgramAllInfo api/ReadSender_HWScreenDisplayFlag api/ReadSender_ImageProgramEdition api/ReadSender_ImageProgramTailEdition api/ReadSender_InputVedioSource api/ReadSender_IsSupportBackUpTestMode api/ReadSender_McuProgramEdition api/ReadSender_McuProgramInfo api/ReadSender_McuProgramLength api/ReadSender_McuProgramRemarks api/ReadSender_NewFrame api/ReadSender_OpticalWorkMode api/ReadSender_ReadHWAutoBright api/ReadSender_RedundantStateNewSpace api/ReadSender_RedundantStateOver32SpaceAllData api/ReadSender_RedundantStateSpace api/ReadSender_RedundantStateSpaceAllData api/ReadSender_ScreenAdjustBrightFlag api/ReadSender_ScreenConfigFlagSpace api/ReadSender_ScreenConfigSpace api/ReadSender_SoftwareSpace api/ReadSender_ThreeDPerSpace api/ReadSender_V900IsInBoot api/ReadSender_VideoInputCut api/ReadSender_VideoInputSource api/ReadSender_VideoMosaicData api/ReadSender_VideoRealDvi api/ReadSender_VideoScalingMode api/ReadSender_VideoScreenOffset api/ReadSender_VideoWindowRect api/ReadSender_WebProgramEdition api/ReadSender_WebProgramTailEdition api/ReadSender_WordStockProgramEdition api/ReadSender_WordStockProgramTailEdition api/ReadSender3D_FPGAProgramInfo api/ReadSender3D_McuProgramInfo api/ReadSenderABLInfo api/ReadSenderBrightnessLux api/ReadSenderCPUIdData api/ReadSenderDVIStatus api/ReadSenderFunctionInfo api/ReadSenderLowDelayEnable api/ReadSerialColorNum api/ReadSerialDotsNumPerColor api/ReadSerialRGBCode api/ReadShiftUnitNumPerSubField api/ReadShowLastFrameWhenCableNotConected api/ReadSingleChipMicyocoSpace api/ReadSingleChipMicyocoSpaceAuto api/ReadSmartSetMode api/ReadSmokeWarningOfMonitorCard api/ReadSortOrder api/ReadSourceBackupInfo api/ReadSourceSingalState api/ReadSpecialFrameRate api/ReadStandbyMode api/ReadStartPositionOfDataGroup api/ReadSubField api/ReadSUM2033GammaSwitchState api/ReadSupportDeviceTableTag api/ReadSymmetricalOutputMode api/ReadTemperature api/ReadTempInfoOfMonitorCard api/ReadTempInfoOfScanCard api/ReadTemprature api/ReadTestPoint api/ReadThreshold api/ReadToneValue api/ReadTotalGclkUnitNumPerScan api/ReadTotalLightCdfRes api/ReadTotalLightCdfResault api/ReadTotalPointInTable api/ReadTotalUnitNumPerSubField api/ReadTVCardDVI0Height api/ReadTVCardDVI0OffsetX api/ReadTVCardDVI0OffsetY api/ReadTVCardDVI0Width api/ReadTwentyDataGroup api/ReadUCS512CDisplayMode api/ReadUseRecordInfo api/ReadVirtualCaptureEnable api/ReadVirtualEnable api/ReadVirtualFrameRate api/ReadVirtualImageDataSource api/ReadVirtualMap api/ReadVirtualSendDataEnable api/ReadVoltageOfMonitorCard api/ReadVoltageOfScanCard api/ReadVRedBrightness api/ReadVRgain api/ReadWheelReadingCureParameterToFactoryAreaData api/ReadWindowBmpTimeoutSet api/ReadWorkModeIn660Pro api/RecoveryCoefficientStore2SpiFlash api/RestoreSenderConfig api/SaveBrightDarkLineFixCoefsToFlash api/SaveCoefficienceCommon api/SaveScannerFontLibToFlash api/Scaner_UnLock api/Sender_ReadActiveSourceType api/Sender_ReadDVIModeSettingType api/Sender_SetSourceType api/Sender_UnLock api/Set_EquipmentIP api/Set16259EnSwipErrorPoint api/Set2038SBlankOptimizationLevel1 api/Set2038SBlankOptimizationLevel2 api/Set2038SDelayTime api/Set2038SPhotoBlankOptimizationLevel1 api/Set2038SPhotoBlankOptimizationLevel2 api/Set2055RegisterWrite api/Set2055UnitRegisterWrite api/Set5359RegAddress api/Set5pinControlLight api/Set660ConfigFileSendOver api/Set9868ABlankOptimizationLevel1 api/Set9868ABlankOptimizationLevel2 api/Set9868APhotoBlankOptimizationLevel1 api/Set9868APhotoBlankOptimizationLevel2 api/SetABCDESignalDelay api/SetABCDRollOver api/SetAdaptiveFourSystemGlobalBrightness api/SetAddrExtend api/SetAreaCoefsOperate api/SetAudioControl api/SetAudioControl_1 api/SetAutoCorrectUpload api/SetAutoScreen api/SetBackUpOrRestoreCmd api/SetBgain api/SetBlackScreenSleepParam api/SetBlankingTime5253Value api/SetBlankUnitNumPerScan api/SetBlueBrightness api/SetBrightDarkLineCoefsErase api/SetBrightDarkLineFixState api/SetBrightnessModel api/SetCabinetData64GroupOutputInfo api/SetCascadeDiretion api/SetCheckModuleFlashCmd api/SetClearViewEnableInfo api/SetCoefficienceFromDvi api/SetCoefficienceFromDviCommon api/SetCoefficientInIIcFlashErase api/SetCoefficientInSpiFlashErase api/SetCoefficientReloadFromIIcFlash api/SetCoefficientReloadFromSpiFlash api/SetCoefficientSource api/SetCoefficientStore2IIcFlash api/SetCoefficientStore2SpiFlash api/SetColorAdjustEnable api/SetColorAdjustMatrixAndDataNew api/SetColorAdjustMatrixAndEnableNew api/SetColorAdjustMatrixType api/SetColScalePara api/SetConfigFileID api/SetConfigRegister api/SetConfigRegister2017 api/SetConfigRegisterFor2020 api/SetConfigRegisterFor2200 api/SetConfigRegisterWrite3 api/SetConfigRegisterWrite4 api/SetConfigRegisterWrite4_1 api/SetConfigRegisterWrite5 api/SetConfigRegisterWrite6 api/SetConfigRegisterWrite7 api/SetConfigRegisterWriteType2 api/SetConfigSpecialRegisterWrite api/SetContrastValue api/SetControlHeight api/SetControllerSnHigh api/SetControlWidth api/SetCorrectionOn api/SetCorrectionOn_1 api/SetCorrectionOn_2 api/SetCorrectionOnEx api/SetCorrectionOnROE api/SetCorrectionOnROELine api/SetCorrectionOnROELine_1 api/SetCtrlEndPoint api/SetCustomGammaConfigInfo api/SetDataDirection api/SetDclkHigh api/SetDclkHighRatio api/SetDclkPhase api/SetDclkUnitCycle api/SetDecodeType api/SetDehumidAdjustTime api/SetDeltaTValue api/SetDExtendMode api/SetDHTValue api/SetDistributeEthernetPortScannerX api/SetDistributeEthernetPortScannerXY api/SetDistributeEthernetPortScannerY api/SetDistributeNumberOfCardOrScanBoardInPort api/SetDistributeReturnFactoryValues api/SetDoorSwitchDetection api/SetDoubleCardEaraseState api/SetDriverFucntion api/SetDriverType api/SetDriverType2Byte api/SetDvi1Dvi0OffsetX api/SetDvi1Dvi0OffsetY api/SetDviEncyptEn api/SetDviHeight api/SetDviMode api/SetDviMode_1 api/SetDviOffsetX api/SetDviOffsetY api/SetDviSelect api/SetDviSelect_1 api/SetDviWidth api/SetEndColScalePos api/SetEndRowScalePos api/SetEnSwipErrorPoint api/SetEthernetPortScannerX api/SetEthernetPortScannerXY api/SetEthernetPortScannerY api/SetExtendRedGammaTableData api/SetFieldRate api/SetFieldRateMode api/SetFlagEnableAccelerate api/SetFPGAGoldenProgramStore api/SetFPGAWorkProgramStore api/SetFreeSenderPorts api/SetFreeVirtualNetworkPort api/SetGamma api/SetGammaMaxValue api/SetGclkHigh api/SetGclkNumPerScan api/SetGclkPhase api/SetGclkUnitCycle api/SetGenLinearScanBoardRunLineTable api/SetGgain api/SetGhostRemoveMode api/SetGlobalBrightness api/SetGlobalBrightnessOf2053 api/SetGrayBit api/SetGrayCoefficientEN api/SetGrayDepth api/SetGrayMode api/SetGreenBrightness api/SetGroupNumInModule api/SetGroupSwapEn api/SetGroupSwapInfo api/SetHalfFreqSetMode api/SetHDEnable api/SetHDEnableEx api/SetHoldTime api/SetHWSmartBrightIsEnable api/SetICNumber api/SetIntialRegConfigData api/SetIoControl api/SetIrregularCabinetDataGroupOutputInfo api/SetIrregularCabinetRealGroup api/SetIrregularScreenDrive api/SetIsSerdes api/SetKillMode api/SetLCDSwitch api/SetLightPlankFlashTopology api/SetLightPlankFlashTopology1 api/SetLightTimePerSubField api/SetLightTimePerSubFieldRatio api/SetLineBias api/SetLoadMode api/SetLockMode api/SetLogicalTotalDataGroupNum api/SetLogicShiftUnitNumPerSubField api/SetLowAshCompensation api/SetLowAshCompensationOne5253Value api/SetLowAshCompensationTwo5253Value api/SetLowDelayMode api/SetLowGrayCompensation api/SetLowGrayPull api/SetLowlumCoefficientErase api/SetMagnitudes api/SetMaskOpreation api/SetMasterOrSlave api/SetMasterOrSlaveNew16Addr api/SetMasterOrSlaveNew32Addr api/SetMasterOrSlaveNext api/SetMbi5042GrayEnhanced api/SetMBI5252AutoReset api/SetMBI5252AutoResetState api/SetMBI5252AutoResetTime api/SetMBI5252ChannelState api/SetMBI5252ManualReset api/SetMCUWorkProgramStore api/SetMirrorMode api/SetModuelCols api/SetModuelRows api/SetModuleConfigInfo api/SetModuleHeight api/SetModuleScanSequenceInfo api/SetModuleWidth api/SetMoudleNumber api/SetNewOERamEnable api/SetNewPortEnable api/SetNumberOfCardOrScanBoardInPort api/SetOEPority api/SetOnePackageSBParameters api/SetParameterCorrectCoefficientComponent api/SetParameterReloadFromSpiFlash api/SetParameterSender3D api/SetParameterStore2SpiFlash api/SetPCMacAddr api/SetPhysicalTotalDataGroupNum api/SetPointNumPerDrive api/SetPortEnable api/SetPortEnable_1 api/SetPortHeight api/SetPortOfDVI api/SetPortOffsetX api/SetPortOffsetY api/SetPortWidth api/SetReadColorCoef api/SetRealDviWidth api/SetRealPhysicalGroup api/SetRebootGoldenFPGAProgram api/SetRebootWorkFPGAProgram api/SetRebootWorkMCUProgram api/SetRecaculateParameter api/SetRedBrightness api/SetRedGammaTableData api/SetReduceHighContrast api/SetRefNumPerVs api/SetRemoveChipChannelData api/SetRestoreFinishFlag api/SetReturnFactoryValues api/SetRgain api/SetRGBBrightness api/SetRgbCode api/SetRowChangePoint api/SetRowScalePara api/SetRowsCtrlByDataGroup api/SetRtco api/SetSaturationValue api/SetSaveDistributeParameters api/SetSaveSendCardsParameters api/SetScaleEn api/SetScaleInfo api/SetScanBoardDataTo2000 api/SetScanBoardDataTo2500 api/SetScanConrectionMode api/SetScanerDirectModeEnable api/SetScanMode api/SetScanner_AutoRefreshRate api/SetScanner_ColorManageCoefData api/SetScanner_ColorRestore api/SetScanner_DMFirst api/SetScanner_DMPM api/SetScanner_DMSecond api/SetScanner_DMThird api/SetScanner_DMWSP api/SetScanner_FPGAProgramEdition api/SetScanner_FPGAProgramInfo api/SetScanner_FPGAProgramLength api/SetScanner_FPGAProgramRemarks api/SetScanner_LowGrayCodeTable api/SetScanner_McuProgramEdition api/SetScanner_McuProgramInfo api/SetScanner_McuProgramLength api/SetScanner_McuProgramRemarks api/SetScanner_MGEnParmData api/SetScanner_MGParmData api/SetScanner_MutiChipICRamA api/SetScanner_MutiChipICRamD api/SetScanner_MutiChipRamA api/SetScanner_MutiChipRamB api/SetScanner_MutiChipRamC api/SetScanner_MutiChipRamD api/SetScanner_NewOEHighTable api/SetScanner_NewOETable api/SetScanner_OE api/SetScanner18BitEnable api/SetScannerBacklightSwitch api/SetScannerColorInfo api/SetScannerDehumidPara api/SetScannerDigitalTubeSwitch api/SetScannerFrameRate api/SetScannerIrCabientCfg api/SetScannerLowDelayEnable api/SetScannerRecordCmd api/SetScannerRecordTime api/SetScannerRGBColor api/SetScannerSpiSpeedAdjust api/SetScannerxBit1d8 api/SetScannerxBit1d9 api/SetScannerxBitEnable api/SetScanSwitchMode api/SetScreenDecrypt api/SetScreenDriveType api/SetScreenEncrypt api/SetSelfTestMode api/SetSender_10bitGammaValue api/SetSender_12bitGammaValue api/SetSender_AmbientLight api/SetSender_AuthorizePassward api/SetSender_AuthorizeTime api/SetSender_BackUpTestMode api/SetSender_C_ABL_ADDR api/SetSender_ComplexCfgScreenFlagSpace api/SetSender_DistributeEnable api/SetSender_DistributePortSeting api/SetSender_DVICols api/SetSender_DVIResolutionHeight api/SetSender_DVIResolutionWidth api/SetSender_DVIRows api/SetSender_EDEState api/SetSender_EDIDSpace api/SetSender_Enable3DStateSpace api/SetSender_EnableDVIEncrypt api/SetSender_EnableGainOfHWPro api/SetSender_EnableGammaOfHWPro api/SetSender_EnableHWAutoBright api/SetSender_EnablePartBrightOfHWPro api/SetSender_EnableProgramBright api/SetSender_EnableProgramBright_1 api/SetSender_EnableSyncAndTotalData api/SetSender_EncryptKey api/SetSender_EncryptKeyLength api/SetSender_EncryptPassword api/SetSender_FPGAProgramEdition api/SetSender_FPGAProgramInfo api/SetSender_FPGAProgramLength api/SetSender_FPGAProgramRemarks api/SetSender_GrayDepthAndBit api/SetSender_HardWareBackupInfos api/SetSender_HDR10MinLum api/SetSender_HDRState api/SetSender_HLGModel api/SetSender_HWBrightAdjustType api/SetSender_HWProBrightSegemntCnt api/SetSender_HWSmartBright api/SetSender_ImageEnState api/SetSender_InputVedioSource api/SetSender_McuProgramEdition api/SetSender_McuProgramInfo api/SetSender_McuProgramLength api/SetSender_McuProgramRemarks api/SetSender_McuUpdateProgrammFinish api/SetSender_OpticalWorkMode api/SetSender_RedundantStateNewSpace api/SetSender_RedundantStateSpace api/SetSender_Reset api/SetSender_Reset_1 api/SetSender_ScreenAdjustBrightCommand api/SetSender_ScreenConfigFlagSpace api/SetSender_ScreenConfigSpace api/SetSender_ScreenPeakLight api/SetSender_SetHDRType api/SetSender_SoftwareSpace api/SetSender_ThreeDPerSpace api/SetSender_VideoInputCut api/SetSender_VideoInputSource api/SetSender_VideoMosaicData api/SetSender_VideoScalingMode api/SetSender_VideoScreenOffset api/SetSender_VideoWindowRect api/SetSenderABLParmsState api/SetSenderCardSmartSetMode api/SetSenderConrectionMode api/SetSenderLowDelayEnable api/SetSenderScrenPeakLum api/SetSenderVideoEnclosingMode api/SetSerialColorNum api/SetSerialDotsNumPerColor api/SetSerialRGBCode api/SetShiftUnitNumPerSubField api/SetShowLastFrameWhenCableNotConected api/SetShowNormal api/SetSingleChipMicyocoSpace api/SetSmartSetMode api/SetSmartSetMode_1 api/SetSoftToHWHeartbeatTime api/SetSoftwareCoefficientAccelerateFlag api/SetSortOrder api/SetSpecialParam api/SetStandbyMode api/SetStartLedCheck api/SetStartPositionOfDataGroup api/SetStoreNoSignalLogoImage api/SetStoreStartingLogoImage api/SetSymmetricalOutputMode api/SetTemprature api/SetTestPoint api/SetThreshold api/SetToneValue api/SetTotalGclkUnitNumPerScan api/SetTotalLightCdfRes api/SetTotalLightCdfResault api/SetTotalPointInTable api/SetTotalUnitNumPerSubField api/SetTVCardDVI0Height api/SetTVCardDVI0OffsetX api/SetTVCardDVI0OffsetY api/SetTVCardDVI0Width api/SetTwentyDataGroup api/SetUCS512CDisplayMode api/SetUpdateCorrectionCoefficientCmd api/SetUseColorAdjustMatrix api/SetvCabinetSerialNum api/SetVirtualCaptureEnable api/SetVirtualEnable api/SetVirtualFrameRate api/SetVirtualImageDataSource api/SetVirtualMap api/SetVirtualSendEnable api/SetVirtualWindowBmpTimeoutSet api/SetVRedBrightness api/SetVRgain api/SetWorkModeIn660Pro api/SetXbitGammaMode api/StartAutoLinearTable api/Switch2053IP api/SwitchAutoOrManualLinearTable api/Write6867RegData api/WriteBackUpFileHeader api/WriteBitErrorRateClearData api/WriteBrightPriorityMode api/WriteCabinetInfo api/WriteCorrectionDataToScan api/WriteDviOf4KInfo api/WriteFifthGroupRegistorGain api/WriteFirstGroupRegistorGain api/WriteFirstGroupRegistorRGBGain api/WriteFourthGroupRegistorGain api/WriteHighCoef api/WriteLowCoef api/WriteMappingFrontToScaner api/WriteRotateAngleInfo api/WriteSaveCabinetInfo api/WriteScanerSdramToSlaveFlash api/WriteScanerSlavaFlashToSdram api/WriteScannerDoubleLock api/WriteScannerMouldeState api/WriteScannerResetCommand api/WriteScannerResetCycleNum api/WriteScannerResetEn api/WriteScannerRT5958TinyAfterglow api/WriteScannerRT5958TinyLineFeed api/WriteSecGroupRegistorRGBGain api/WriteSecondGroupRegistorGain api/WriteSender_HWScreenData api/WriteSender_HWScreenDisplayInfo api/WriteSenderCardToGetScanerCount api/WriteSeventhGroupRegistorGain api/WriteSixthGroupRegistorGain api/WriteSUM2033GammaSwitchState api/WriteThirdGroupRegistorGain AreaCoefsOperateType AudioControlMode AudioFrequencyMode AutoAdjustFreqConfigMode AutoAdjustFreqType AutoAdjustRefreshRateParameters AutoAdjustRefreshRateType AutoBrightCalcType AutoBrightExtendData AutoRateParameters AutoSetStepType BaudRateType BrightAdjustMode BrightAndSBProperty BrightModeMappingItem BurrnPackType ByteDataType CabinetCorrectLocationSize CabinetInDevice CabinetInfomation CabinetStoreEffect CabinetType CalibrationModeType CardType CharByteSequenceType Chip16159ExtendProperty Chip16159RGBExtendProperty Chip16169sExtendProperty Chip16169sRGBExtendProperty Chip2020ExtendProperty Chip2028RGBVExtendPropey Chip2053ExtendPropety Chip2163ExtendPropety Chip2200ExtendProperty Chip5043RGBVExtendPropey Chip5051BExtendPropey Chip5051BRGBVExtendPropey Chip5124RGBVExtendPropey Chip5125RGBVExtendPropey Chip5152ExtendProperty Chip5152RGBVExtendPropey Chip5153ExtendProperty Chip5153RGBVExtendPropey Chip5155ExtendProperty Chip5155RGBVExtendPropey Chip5166RGBVExtendPropey Chip5252RGBVExtendPropey Chip5253BExtendProperty Chip5253BRGBExtendPropety Chip5253ExtendProperty Chip5253RGBExtendPropety Chip5266RGBVExtendPropey Chip5353ExtendProperty Chip5353RGBVExtendPropey Chip5354ExtendProperty Chip5354RGBVExtendPropey Chip5359ExtendProperty Chip5359RGBExtendProperty Chip9263RGBVExtendPropey Chip9348ExtendProperty Chip9348RGBVExtendPropey Chip9373ExtendPropety Chip9748ExtendProperty Chip9748RGBVExtendPropey ChipAP6111LRGBVExtendProperty ChipAutoAdjustRefreshRateParamBase ChipAXP020RGBVExtendProperty ChipAXS6018RGBVExtendProperty ChipBaseExtendPropey ChipC8325ExtendProperty ChipC8325RGBVExtendProperty ChipCFD135AExtendProperty ChipCFD135ARGBVExtendProperty ChipCFD2138SDecodeParam ChipCFD325AExtendProperty ChipCFD325ARGBVExtendProperty ChipCFD335AExtendProperty ChipCFD335ARGBVExtendProperty ChipCFD435AExtendProperty ChipCFD435ARGBVExtendProperty ChipCFD455AExtendProperty ChipCFD455ARGBVExtendProperty ChipCFD455CExtendProperty ChipCFD455CRGBVExtendProperty ChipCFD465AExtendProperty ChipCFD465ARGBVExtendProperty ChipCFD555AExtendProperty ChipCFD555ARGBVExtendProperty ChipCFD555BExtendProperty ChipCFD555BRGBVExtendProperty ChipCFD8385ExtendProperty ChipCFD8385RGBVExtendProperty ChipCFD855AExtendProperty ChipCFD855ARGBVExtendProperty ChipCFD955AExtendProperty ChipCFD955ARGBVExtendProperty ChipCFD955BExtendProperty ChipCFD955BRGBVExtendProperty ChipCfgCurrentRange ChipCfgCurrentRisingTime ChipCNS7153ExtendProperty ChipCNS7153RGBVExtendProperty ChipCNS7253ExtendProperty ChipCNS7253RGBVExtendProperty ChipCNS7263ExtendProperty ChipCNS7263RGBVExtendProperty ChipCoreICND1068 ChipCS2017ExtendProperty ChipCS2017RGBVExtendProperty ChipCS2017SExtendProperty ChipCS2017SRGBVExtendProperty ChipCS2033ExtendProperty ChipCS2033RGBVExtendProperty ChipCS2066ExtendProperty ChipCS2066RGBVExtendProperty ChipCX5720ExtendProperty ChipCX5720RGBVExtendProperty ChipCX5721ExtendProperty ChipCX5721RGBExtendProperty ChipDM413ExtendProperty ChipDM413RGBVExtendProperty ChipDP3153ExtendProperty ChipDP3153RGBVExtendProperty ChipDP32019DecodeParam ChipDP32020DecodeParam ChipDP32129DecodeParam ChipDP3230RGBVExtendProperty ChipDP3246CommonExtendProperty ChipDP3246CommonRGBVExtendProperty ChipDP3246ExtendProperty ChipDP3246RGBVExtendProperty ChipDP3254ExtendProperty ChipDP3254RGBVExtendProperty ChipDP3263ExtendProperty ChipDP3263RGBVExtendProperty ChipDP3264ExtendProperty ChipDP3264RGBVExtendProperty ChipDP3265ExtendProperty ChipDP3265RGBVExtendProperty ChipDP3265SeriesExtendProperty ChipDP3265SeriesRGBVExtendProperty ChipDP3364SExtendProperty ChipDP3364SRGBVExtendProperty ChipDP3365SExtendProperty ChipDP3365SRGBVExtendProperty ChipDP3368ExtendProperty ChipDP3368RGBVExtendProperty ChipDP3369SExtendProperty ChipDP3369SRGBVExtendProperty ChipDP5125HCommonExtendProperty ChipDP5125HCommonRGBVExtendProperty ChipDP5125HExtendProperty ChipDP5125HRGBVExtendProperty ChipEffectiveType ChipFM6047ExtendProperty ChipFM6047RGBVExtendProperty ChipFM6126ExtendProperty ChipFM6127ExtendProperty ChipFM6182ExtendProperty ChipFM6182RGBVExtendPropey ChipFM6353ExtendProperty ChipFM6353RGBVExtendProperty ChipFM6356ExtendProperty ChipFM6356RGBVExtendProperty ChipFM6363ExtendProperty ChipFM6363RGBVExtendProperty ChipFM6373ExtendProperty ChipFM6373RGBVExtendProperty ChipFM6518ExtendProperty ChipFM6518RGBVExtendProperty ChipFM6555ExtendProperty ChipFM6555RGBVExtendProperty ChipFM6565CEAutoRefreshRataParam ChipFM6565CEExtendProperty ChipFM6565CERGBVExtendProperty ChipFM6565ExtendProperty ChipFM6565RGBVExtendProperty ChipFM7239DecodeParam ChipFM7519DecodeParam ChipGS8208RGBVExtendProperty ChipGW6808ExtendProperty ChipHB200BRGBVExtendProperty ChipHBS1910ExtendProperty ChipHBS1910RGBVExtendProperty ChipHG2248RGBVExtendProperty ChipHS3257ExtendProperty ChipHS3257RGBVExtendProperty ChipHX5011RGBVExtendProperty ChipHX6016DecodeParam ChipHX6158HDecodeParam ChipHX8055ExtendProperty ChipHX8055RGBVExtendProperty ChipHX8128ExtendProperty ChipHX8128RGBVExtendProperty ChipHX8863ExtendProperty ChipHX8863RGBVExtendProperty ChipHX8864ExtendProperty ChipHX8864RGBVExtendProperty ChipHX8866ExtendProperty ChipHX8866RGBVExtendProperty ChipHX8932ExtendProperty ChipHX8932RgbvExtendProperty ChipHX8964ExtendProperty ChipHx8964RgbvExtendProperty ChipICN2038SExtendProperty ChipICN2065AutoRefreshRataParam ChipICN2065ExtendProperty ChipICN2065RGBVExtendProperty ChipICN2260ExtendProperty ChipICN2260miniExtendProperty ChipICN2260miniRGBVExtendProperty ChipICN2260RGBVExtendProperty ChipICN3100RGBVExtendProperty ChipICND1065ExtendProperty ChipICND1065LExtendProperty ChipICND1065LRGBVExtendProperty ChipICND1065RGBVExtendProperty ChipICND1065SExtendProperty ChipICND1065SRGBVExtendProperty ChipICND1068ExtendProperty ChipICND1068RGBVExtendProperty ChipICND2055AutoRefreshRataParam ChipICND2055ExtendProperty ChipICND2055RGBVExtendProperty ChipICND2076RGBVExtendProperty ChipICND2100ExtendProperty ChipICND2100RGBVExtendProperty ChipICND2112ExtendProperty ChipICND2112RGBVExtendPropey ChipICND2126ExtendProperty ChipICND2126RGBVExtendProperty ChipICND2150SExtendProperty ChipICND2150SRGBVExtendProperty ChipICND2152ExtendProperty ChipICND2152RGBVExtendProperty ChipICND2153PExtendProperty ChipICND2153PRGBVExtendProperty ChipICND2153SExtendProperty ChipICND2153SRGBVExtendProperty ChipICND2159ExtendProperty ChipICND2159RGBVExtendProperty ChipICND2165AutoRefreshRataParam ChipICND2165ExtendProperty ChipICND2165RGBVExtendProperty ChipICND2168AutoRefreshRataParam ChipICND2168ExtendProperty ChipICND2168RGBVExtendProperty ChipICND2169AutoRefreshRataParam ChipICND2169ExtendProperty ChipICND2169RGBVExtendProperty ChipICND2210RGBVExtendProperty ChipICND2263ExtendProperty ChipICND2263RGBVExtendProperty ChipICND2270ExtendProperty ChipICND2270RGBVExtendProperty ChipICND3065ExtendProperty ChipICND3065RGBVExtendProperty ChipICND3069ExtendProperty ChipICND3069RGBVExtendProperty ChipIT1505ExtendProperty ChipLD1074ExtendProperty ChipLD1074RGBVExtendProperty ChipLS9001Core ChipLS9001ExtendProperty ChipLS9004Core ChipLS9004ExtendProperty ChipLS9005Core ChipLS9005ExtendProperty ChipLS9708CommonDecodeParam ChipLS9716CommonDecodeParam ChipLS9735DecodeParam ChipLS9735DecodeRegistor ChipLS9737DecodeParam ChipLS9737DecodeRegistor ChipLS9903ExtendProperty ChipLS9917ExtendProperty ChipLS9919ExtendProperty ChipLS9920ExtendProperty ChipLS9926ExtendProperty ChipLS9928ExtendProperty ChipLS9929ExtendProperty ChipLS9930ExtendProperty ChipLS9931ExtendProperty ChipLS9935BExtendProperty ChipLS9935ExtendProperty ChipLS9936ExtendProperty ChipLS9937ExtendProperty ChipLS9956ExtendProperty ChipLS9961ExtendProperty ChipLSExtendProperty ChipMBI5034BExtendProperty ChipMBI5034BRGBVExtendProperty ChipMBI5038ExtendProperty ChipMBI5038RGBExtendProperty ChipMBI5043ExtendProperty ChipMBI5166ExtendProperty ChipMBI524ExtendProperty ChipMBI5251ExtendProperty ChipMBI5251RGBVExtendProperty ChipMBI5252BExtendProperty ChipMBI5252BRGBVExtendProperty ChipMBI5253NewBExtendProperty ChipMBI5253NewBRGBVExtendProperty ChipMBI5254ExtendProperty ChipMBI5254RGBVExtendProperty ChipMBI525ExtendProperty ChipMBI5261ExtendProperty ChipMBI5261RGBVExtendProperty ChipMBI5264ExtendProperty ChipMBI5264RGBVExtendProperty ChipMBI5268ExtendProperty ChipMBI5268RGBVExtendProperty ChipMBI5269ExtendProperty ChipMBI5269RGBVExtendProperty ChipMBI5754BExtendProperty ChipMBI5754BRGBVExtendProperty ChipMBI5754ExtendProperty ChipMBI5754RGBVExtendProperty ChipMBI5759BCustomExtendProperty ChipMBI5759BExtendProperty ChipMBI5759BGRGBExtendProperty ChipMBI5759CustomExtendProperty ChipMBI5759ExtendProperty ChipMBI5759GRGBExtendProperty ChipMBI5762AExtendPropertyDao ChipMBI5762ARGBVExtendPropertyDao ChipMBI5850AutoRefreshRataParam ChipMBI5850BCustomExtendProperty ChipMBI5850BExtendProperty ChipMBI5850BRGBVExtendProperty ChipMBI5850CustomExtendProperty ChipMBI5850ExtendProperty ChipMBI5850RGBVExtendProperty ChipMBI5864ExtendProperty ChipMBI5864RGBVExtendProperty ChipMBI5981DecodeParam ChipMBI5986DecodeParam ChipMBI5988DecodeParam ChipMBI6033ExtendProperty ChipMBI6033RGBVExtendProperty ChipMT100RGBVExtendProperty ChipMTS01ExtendProperty ChipMTS01RGBVExtendProperty ChipMY9221ExtendProperty ChipMY9263ExtendProperty ChipMY9366ExtendProperty ChipMY9758AExtendProperty ChipMY9758ARGBVExtendProperty ChipMY9758ExtendProperty ChipMY9758RGBVExtendProperty ChipMY9862ARGBExtendProperty ChipMY9862ExtendProperty ChipMY9862RGBExtendProperty ChipMY9866ExtendProperty ChipNT27002SExtendProperty ChipNT27002SRGBVExtendProperty ChipNT27003ExtendProperty ChipNT27003RGBVExtendProperty ChipNT27052ExtendProperty ChipNT27052RGBVExtendProperty ChipOperatingMode ChipQS2633RGBVExtendProperty ChipRT5924ExtendProperty ChipRT5938SS_ComExtendProperty ChipRT5938SS_ComRGBVExtendProperty ChipRT5938SSExtendProperty ChipRT5938SSRGBVExtendProperty ChipRT5958DecodeParam ChipRT5965ExtendProperty ChipRT5965RGBVExtendProperty ChipRT5967ExtendProperty ChipRT5967RGBVExtendProperty ChipRT5977ExtendProperty ChipRT5977RGBVExtendProperty ChipRZRGBVExtendProperty ChipSCL8060ExtendProperty ChipSCL8080AutoRefreshRataParam ChipSCL8080ExtendProperty ChipSCL8080RGBVExtendProperty ChipSCL8081ExtendProperty ChipSCL8081RGBVExtendProperty ChipSM16017DSRGBVExtendProperty ChipSM16017SExtendProperty ChipSM16027ExtendProperty ChipSM16136ExtendProperty ChipSM16136RGBExtendProperty ChipSM16158ExtendProperty ChipSM16169SHExtendProperty ChipSM16169SHRGBVExtendProperty ChipSM16207SExtendProperty ChipSM16227ExtendProperty ChipSM16237ExtendProperty ChipSM16259ExtendProperty ChipSM16259RGBVExtendProperty ChipSM16289ExtendProperty ChipSM16289RGBVExtendProperty ChipSM16318ExtendProperty ChipSM16318RGBVExtendProperty ChipSM16359ExtendProperty ChipSM16359RGBVExtendProperty ChipSM16369ExtendProperty ChipSM16369RGBVExtendProperty ChipSM16380ExtendProperty ChipSM16380RGBVExtendProperty ChipSM16380SHExtendProperty ChipSM16380SHRGBVExtendProperty ChipSM16388ExtendProperty ChipSM16388RGBVExtendProperty ChipSM16389ExtendProperty ChipSM16389RGBVExtendProperty ChipSM16389SFExtendProperty ChipSM16389SFRGBVExtendProperty ChipSM16609ExtendProperty ChipSM16609RGBVExtendProperty ChipSM5368DecodeParam ChipSUM2017TDExtendProperty ChipSUM2017TExtendProperty ChipSUM2028ExtendProperty ChipSUM2030ExtendProperty ChipSUM2032ExtendProperty ChipSUM2033BaseExtendProperty ChipSUM2033ExtendProperty ChipSUM2117ExtendProperty ChipTA5013DecodeParam ChipTBS2218ExtendProperty ChipTBS2218RGBVExtendProperty ChipTBS5266AExtendProperty ChipTBS5266ARGBVExtendProperty ChipTBS5266BExtendProperty ChipTBS5266BRGBVExtendProperty ChipTBS5367RGBVExtendProperty ChipTBSCommonExtendProperty ChipTBSCommonRGBVExtendProperty ChipTL3102UDExtendProperty ChipTL3102UDRGBVExtendProperty ChipTL3103UDExtendProperty ChipTL3103UDRGBVExtendProperty ChipTLC5929ExtendProperty ChipTLC5945ExtendProperty ChipTLC5945RGBVExtendProperty ChipTLC5948AExtendProperty ChipTLC59581ExtendProperty ChipTLC5958ExtendProperty ChipTLC6983ExtendProperty ChipTLC6983RGBVExtendProperty ChipType ChipUCS512_V2RGBVExtendProperty ChipUCS5603RGBVExtendProperty ChipUCS8603RGBVExtendProperty ChipVB5628DecodeParam ChipVB5658DecodeParam ChipXM10480GRGBVExtendProperty ChipXM10486GRGBVExtendProperty ChipXM11201GRGBVExtendProperty ChipXM11202GRGBVExtendProperty ChipXM11920GRGBVExtendProperty ChipYY6018RGBVExtendProperty CIEValue ClearViewInfo CodeTypes CoefficientSourceType CoefType CoefType2 ColorRestoreInfoList ColorType CommandTimeOut CommonInfoCompeleteResult CommonIrCabinetType ComplexLEDDisplayInfo ConfigFileVersionInfo ControlModeType CorrectType CustomBMShowMode CustomGammaInfo CustomGammaMode CustomGammaType CustomImageQualityMode CustomRegExtendPropertyBase CustomTransform DataDirectionType DataGroupOutPutMode DecodeChipParamBase DecodeType DefaultGammaType DetectPointType DeviceConnectionType DeviceStateTypes DeviceType DeviceTypes DisplayAutoBrightMapping DisplayModeType DisplayPatternType DisplayScreenType DistrubutedModel DownGhostClearType DriverCurrentSpeedType DVIConnectRes DVIEncryptType DVIMode_4K DviResolutionInfo DviSelectMode DVISenderBoardPortConnectInfo EMCFunction EnLightSensorSite EnumBehaviourType EnumHardwareProtocolTypes EnumReflectChipControlTypes ErrPointSendMailType EVersionType FirstLineCompensationType FlashCheckErrorType FlashPublicTopology FlashTopology FlashTopologyAndMeaasge FunctionEnum FunctionType GammaAdjustEnum GammaBitDepth GammaSource GammaState GetSenderFunctionInfoRes GhostRemoveModeType GraphicsDVIPortInfo GrayModeType GrayRealizeType HDEnableMode HDRType HighLowBitsType HLGModel HWBrightAdjustType HWSoftwareSpaceRes index IrRegularCabinetProperty IrregularDataGroupDriverChipNumPair IrregularPointInfo LCTCommands LEDDisplyType LEDModuleProperty LEDModulePropertyThin LightSensorData LowAshGrade LowDelayMode LowGrayColorAdjType LowGrayQueryMode LowModel LS9917Data LS9918Data LS9919Data LS9920Data LS9926Data LS9929CData LS9929Data LS9930Data LS9933Data LS9935Data LS9960Data LS9961Data LSChipEnum MaxValue MaxValueInfo MCTRL1600DVIEnum MessageType ModulationModeType ModuleCascadeDiretion ModuleFlashOperation ModuleFlashOperationRes ModuleGroupInCabinet ModuleInIrRegularCabinet ModuleScanMode MonitorDisplayType MonitorEdition MonitorErrData MSRvCardStatusType MSRvCardWorkType MultiLayerSwitchType MultiplierGrade NetFreamResults NoSignalMode NSCardType OddAndEven OEPolarityType OneModuleInfo OnePortLoadInfo OneSmartBrightEasyConfig OpenTestVoltageGrade Operate OpticalProbeFailureInfo OpticalWorkMode OutDeviceType PassthroughRequestResult PasswordLogType PeripheralsLocation PeripheralsType PhaseType PicturePrestoreConfig PictureShowMode PointDetectConfig PointDetectParameter PortScanBoardInfo PowerCtrlMode PowerOperateType PowerType PriorityMode PumpGroupsLine PumpModel PWMModel RedundantStateInfo RedundantStateType RegConfigMode RegisterGroupType RegistorCfgGroupType RegularCabinetProperty ReplyPackageResult RequestType ResetAndSwitchCommandType RestoreType RGBCIE RGBCIEType RGBSEQ RotateAngle SBCapNameType ScanBoardConnectType ScanBoardDataType ScanBoardProperty ScanBoardPropertyForMonitor ScanBoardRegionInfo ScanBoardVersionInfo ScannerFunctionListEnum ScannerMonitorData ScanSequenceType ScanType ScreenAdjustParams ScreenDataInSoftSpace ScreenDriveType ScreenInfoRelativeAddress ScreenOperationMode ScreenPortAddrInfo ScreenPortAreaInfo SenderDVIRegionInfo SenderFunctionListEnum SenderFunctionTable SenderModulationInfo SenderPortRegionInfo SenderProperty SenderRedundancyInfo Session SetBrightData SetGammaModel SetValueResult ShowTypeWhenPortDisconnected SimpleLEDDisplayInfo SingleRefreshRateParam SmartBrightAdjustType SmartSetMode SmartSetRunMode SmokeAlarmInfo SocketModeType SoftwareSpaceBaseAddress SourceSelectLoadMode SourceSelectMode SpecialFrameRateInfo SpecialPackID SpecialPackTimeOut StandardLEDDisplayInfo StandbyMode SubpixelLightPointLayout SubpixelLightPointMode SubPixLightLoc SubPixLightNum SystemAddress SystemParameterConfig TestMode ThresholdType TimePointDetectModel UCS512DisplayMode unions UserLoginType ValueInfo VedioSelectMode VideoSource VideoSourceMode ViderTyp VirtualModeParams VirtualModeType WaitTimeType WorkModeEnum WorkStatusType XlSaveAsAccessMode XlWBATemplate ZoomType