diff options
-rw-r--r-- | fernbedienung.lpr | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/fernbedienung.lpr b/fernbedienung.lpr index e83e7be..a3907e1 100644 --- a/fernbedienung.lpr +++ b/fernbedienung.lpr @@ -13,24 +13,31 @@ uses sysutils, lowlevelunit, irdecoderunit; var - irDecoder: tIRDecoder; - inputDatei: string; - cnt: longint; - watte: boolean; + irDecoder: tIRDecoder; + inputDatei: string; + cnt: longint; + watte,debug: boolean; begin inputDatei:=''; watte:=false; + debug:=false; for cnt:=1 to paramcount do begin if paramstr(cnt)='-W' then begin watte:=true; continue; end; + if paramstr(cnt)='-D' then begin + debug:=true; + continue; + end; if inputDatei<>'' then raise exception.create('Mehr als eine inputDatei angegeben!'); inputDatei:=paramstr(1); end; - irDecoder:=tIRDecoder.create(inputDatei,extractfilepath(paramstr(0))+'befehle.konf',watte); + + +irDecoder:=tIRDecoder.create(inputDatei,extractfilepath(paramstr(0))+'befehle.konf',watte,debug); repeat repeat |