DELIB API reference |
Seite
78
return;
}
// Zum Testen - ein Ping senden
// ----------------------------------------------------
printf("PING\n");
anz=10;
for(i=0;i!=anz;++i)
{
data=DapiPing(handle, i);
if(i==data)
{
// OK
printf(".");
}
else
{
// No answer
printf("E");
}
}
printf("\n");
// ----------------------------------------------------
// Einen Wert auf die Ausgänge schreiben
data = 255;
DapiWriteByte(handle, 0, data);
printf("Schreibe auf Adresse=0 daten=0x%x\n", data);
// ----------------------------------------------------
// Einen Wert auf die Ausgänge schreiben
data = 255;
DapiWriteByte(handle, 1, data);
printf("Schreibe auf Adresse=0 daten=0x%x\n", data);
// ----------------------------------------------------
// Einen Wert auf die Ausgänge schreiben
data = 255;
DapiWriteByte(handle, 2, data);
printf("Schreibe auf Adresse=2 daten=0x%x\n", data);
// ----------------------------------------------------
// Einen Wert von den Eingängen lesen
data = (unsigned long) DapiReadByte(handle, 0);
printf("Gelesene Daten = 0x%x\n", data);
// ----------------------------------------------------
// Einen A/D Wert lesen
chan=11; // read chan. 11
data = DapiReadWord(handle, 0xff chan*2);
printf("Adress=%x, ret=%x volt=%f\n", chan, data, ((float) data) / 1024*5);//
Bei 5 Volt Ref
// ----------------------------------------------------
// Modul wieder schliessen
DapiCloseModule(handle);
printf("TASTE für weiter\n");
getch();
return ;
}
Содержание ETH-TTL-64
Страница 1: ...Hardware Description Juli ETH TTL 64 2019 ...
Страница 5: ...I Introduction Seite 5 Introduction ...
Страница 7: ...II Hardware description Seite 7 Hardware description ...
Страница 13: ...Hardware description Seite 13 2 4 Overview screen ETH TTL 64 ...
Страница 17: ...Hardware description Seite 17 problem is solved ...
Страница 19: ...III Software Seite 19 Software ...
Страница 29: ...Software Seite 29 Choose the option create VIs for DLL and press continue ...
Страница 30: ...Software Seite 30 In the next window choose the path to the delib h and delib dll and press continue ...
Страница 31: ...Software Seite 31 Press continue again The Header File will now be analized Afterwards press continue ...
Страница 32: ...Software Seite 32 Follow the instructions and configurate the name and the saving location for the VIs ...
Страница 33: ...Software Seite 33 In the new window choose Easy error correction in the drop down menu and press continue ...
Страница 39: ...Software Seite 39 ...
Страница 40: ...IV Hardware Seite 40 Hardware ...
Страница 46: ...Hardware Seite 46 Geben Sie hier den Text ein ...
Страница 47: ...V DELIB API reference Seite 47 DELIB API reference ...
Страница 79: ...VI Appendix Seite 79 Appendix ...