Re: Auswahl mitt Drehgeber Kategorie: Programmierung (von MarkusNRW - 11.08.2005 15:23) | ||
Als Antwort auf Re: Auswahl mitt Drehgeber von Patrick - 11.08.2005 11:25 | ||
| ||
hallo Patrick! Ich bin leider noch ziemlich frisch in der Materie der C-Control und deshalb habe ich dein Schema nicht ganz verstanden... Hier ein Programm wie ich es vorher hatte, da wurde hat auto/man durch die Auswahl von 1 oder 2 gestartet... Vielleicht kannst du dein kleines Scheme noch etwas vervollständigen??? MfG Markus int auto; lcdext.init (); lcdext.goto(2,0); lcdext.print("1=man.2=auto 1"); while not inkremental.getPushKey() { position=inkremental.get_position(); if position < position_alt-5 { position_alt=position; wert1=wert1-1; if wert1==min-1 wert1=max; lcdext.goto(2,cur); // LCD Zeile/ Cursorposition lcdext.ziff(wert1); //Ausgabe von "wert" lcdext.cursorleft(); //cursor nach links } else if position > position_alt+5 { position_alt=position; wert1=wert1+1; if wert1==max+1 wert1=min; lcdext.goto(2,cur); // LCD Zeile/ Cursorposition lcdext.ziff(wert1); //Ausgabe von "wert" lcdext.cursorleft(); //cursor nach links } } | ||
Antwort schreiben Antworten: |