hi
weiss jemmand ne möglichkeit mit c die lpt,com oder
usb schnitstelle anzusteuern?
thx Borgelite
www.borgelite.de
weiss jemmand ne möglichkeit mit c die lpt,com oder
usb schnitstelle anzusteuern?
thx Borgelite
www.borgelite.de
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main()
{
HANDLE hComm;
hComm = CreateFile( \"Com1\",
GENERIC_READ | GENERIC_WRITE,
0,
0,
OPEN_EXISTING,
FILE_FLAG_OVERLAPPED,
0);
if (hComm == INVALID_HANDLE_VALUE)
printf(\"Fehler\");
return (0);
}