Registriert seit: 14. Mär 2003
Ort: Osnabrück
244 Beiträge
Delphi 2009 Professional
|
Re: Auslesen der Pins 10-13 des LPT Anschlusses mit io.dll??
11. Mai 2005, 07:59
Also ich würde tippen das dir das Byte das du zurück bekommst per Binärcode aufschluss geben wird...
Also würd ich das mal mit Bitshiften versuchen
zB:
Delphi-Quellcode:
function GetBit(BitNr:byte):boolean;
var InByte:Integer;
begin
InByte := PortDWordIn({evtl Parameter});
result := ((InByte shr (BitNr-1)) mod 2) = 1;
end;
Also ich kenn die io.dll nich aber sowas in der richtung sollte das werden denk ich mal
Greetz
Boombuler
"Look at you, Hacker. A pathetic creature of meat and bone, panting and sweating as you run through my corridors. How can you challenge a perfect, immortal machine?"
SwapIt Highscore:
|