Für dieses Forum muß Javascript im Browser aktiviert werden!
Kommentar: Einfügen von HTML im Kommentar: Link einfügen: <a href="LINKURL" target="_blank">LINKTITEL</a> Bild einfügen: <img src="BILDURL"> Text formatieren: <b>fetter Text</b> <i>kursiver Text</i> <u>unterstrichener Text</u> Kombinationen sind auch möglich z.B.: <b><i>fetter & kursiver Text</i></b> C2 Quellcode formatieren: <code>Quellcode</code> ASM Quellcode formatieren: <asm>Quellcode</asm> (Innerhalb eines Quellcodeabschnitts ist kein html möglich.) Wichtig: Bitte mache Zeilenumbrüche, bevor Du am rechten Rand des Eingabefeldes ankommst ! > Hallo André,<p> > > 1. Kannst Du Dein Test-Proggie ins Forum posten? > > <pre class="sourcecode"><code> > <font color="#003399"><i>//---------------------------</i></font> > function print ( string s ) > <font color="#003399"><i>//---------------------------</i></font> > { > lcd.print(s, str.length(s)); > wait lcd.ready(); > } > > <font color="#003399"><i>//-----------</i></font> > thread main > <font color="#003399"><i>//-----------</i></font> > { > <b>int</b> iinput; > <b>float</b> finput; > string ausgabe; > > lcd.clear(); > > loop > { > iinput = ports.adc(0); > finput = iinput * 0.004; > ausgabe = <font color="#9933CC">"f="</font>; > str.putfloat(ausgabe,finput); > lcd.<b>goto</b>(1, 0); > print(ausgabe); > lcd.clreol(); > } > > quit 1; > } > > </code></pre> > <p> > > 2. Benutze am besten das OS_OPT_V2 von Eric Hospel. > > .. habe ich gestern nicht gemacht. Ich muss es auch damit nochmal versuchen. Ich habe es halt erst mal mit der offiziellen Version von Conrad probiert...<p> > Ich werde das optimierte System mal versuchen, dass kann aber eine Weile dauern, weil es ein Wochenendprojekt ist und ich nächste Woche erst mal im Urlaub bin. Vielleicht kannst Du ja aber aus dem einfach Code doch schon was erkennen?<p> > Vielen Dank und schöne Grüße, Mario Noack