請先看『使用說明』
IO Device:F75113 C Sharp under Windows
From LEXWiKi
(→The Sample code source you can download from) |
(→The Sample code source you can download from) |
||
(3 intermediate revisions not shown.) | |||
Line 1: | Line 1: | ||
[[Category:AllowPages]] | [[Category:AllowPages]] | ||
== The Sample code source you can download from == | == The Sample code source you can download from == | ||
+ | |||
+ | <Google Drive> | ||
Source file: [https://drive.google.com/file/d/1VF8C8asEW0EWdgVYH367NhUiLwefRx6e/view?usp=sharing 75113_CS_v1.2_Src] | Source file: [https://drive.google.com/file/d/1VF8C8asEW0EWdgVYH367NhUiLwefRx6e/view?usp=sharing 75113_CS_v1.2_Src] | ||
Line 10: | Line 12: | ||
Test Code: [https://drive.google.com/file/d/1CbxGQmUHe1dLRxueDnOANfBDlGfSIDw5/view?usp=sharing 75113_CS_Test] | Test Code: [https://drive.google.com/file/d/1CbxGQmUHe1dLRxueDnOANfBDlGfSIDw5/view?usp=sharing 75113_CS_Test] | ||
- | F75113 DLL : | + | F75113 DLL file : |
- | [https://drive.google.com/file/d/1q3-oMTln5MkzNDk2E3-ssoD96sHsZECz/view?usp= | + | [https://drive.google.com/file/d/1q3-oMTln5MkzNDk2E3-ssoD96sHsZECz/view?usp=share_link F75113_DLL] |
+ | |||
+ | F75113 DLL src : | ||
+ | [https://drive.google.com/file/d/1Kd6UH6AZA4R2ixBaJt_dHK-2Oafb6slc/view?usp=share_link F75113__DLL_src] | ||
+ | |||
+ | <FTP> | ||
+ | |||
+ | Source file: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/F75113/Windows_CS/75113_CS_src_v1.2.zip 75113_CS_v1.2_Src] | ||
+ | |||
+ | Binary file(32 bit): [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/F75113/Windows_CS/75113_CS_bin_v1.2_x86.zip 75113_CS_v1.2_Bin_x86] | ||
+ | |||
+ | Binary file(64 bit): [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/F75113/Windows_CS/75113_CS_bin_v1.2_x64.zip 75113_CS_v1.2_Bin_x64] | ||
+ | |||
+ | Test Code: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/F75113/Windows_CS/75113_CS_test.zip 75113_CS_Test] | ||
+ | |||
+ | F75113 DLL file: | ||
+ | [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/CIO_Uitlity/windows_base/F75113_DLL.zip F75113_DLL] | ||
+ | |||
+ | F75113 DLL src: | ||
+ | [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/CIO_Uitlity/windows_base/F75113_DLL_Src.zip F75113_DLL_src] | ||
== How to use this Demo Application == | == How to use this Demo Application == |
Current revision
Contents |
The Sample code source you can download from
<Google Drive>
Source file: 75113_CS_v1.2_Src
Binary file(32 bit): 75113_CS_v1.2_Bin_x86
Binary file(64 bit): 75113_CS_v1.2_Bin_x64
Test Code: 75113_CS_Test
F75113 DLL file : F75113_DLL
F75113 DLL src : F75113__DLL_src
<FTP>
Source file: 75113_CS_v1.2_Src
Binary file(32 bit): 75113_CS_v1.2_Bin_x86
Binary file(64 bit): 75113_CS_v1.2_Bin_x64
Test Code: 75113_CS_Test
F75113 DLL file: F75113_DLL
F75113 DLL src: F75113_DLL_src
How to use this Demo Application
1. Run DIO_WDT.exe as administrator
2. Connected the DI and DO pin
3. Before you press the "Write" button, Check the box what you like to send high data first
4. Press the "Read" button to get data from DO
5. Press the "Enable" button to test WDT function
6. Press the "Disable" button when WDT enable to disable WDT
F75113 Layout Picture
Introduction
Base on 75113.Dll API as below list
F75113_DLL_API bool F75113_Init();
F75113_DLL_API BYTE F75113_GetDigital_Low_Input();
F75113_DLL_API void F75113_SetDigital_Low_Output(BYTE byteValue);
F75113_DLL_API BYTE F75113_GetDigital_High_Input();
F75113_DLL_API void F75113_SetDigital_High_Output(BYTE byteValue);
F75113_DLL_API void F75113_SetWDT_Enable(BYTE byteTimer);
F75113_DLL_API void F75113_SetWDT_Disable();