Re: C Neuling sucht Hilfe Kategorie: Programmierung (von Sascha - 5.04.2005 6:29) | ||
Als Antwort auf C Neuling sucht Hilfe von Sascha - 5.04.2005 5:39 | ||
| ||
ich nochmal.... mist, jetzt habe ich ganz andere Probleme..... hab mein os aktualisiert und auch die Programmierumgebung, einige Module habe ich schon geschafft selber umzubenennen..... Allerdings finde ich nicht alles..... hier mal mein Programm.....unten stehen dann die Fehlermeldungen.... thread thr1 { run 5; while station_io.getkey(); Station_io.LEDon (7); station_io.LEDoff(6); } thread main { run 5; string s; byte port; byte read; station_io.init(); lcd.init(); float U; int adcval; int oldval; int ExtPort; int keycode; int getkey; long code; long zahl; sleep 2000; /*******************************************/ /******** ANSTEUERUNG LCD *************/ /*******************************************/ lcd.print(" C-CONTROL II");sleep 2000; lcd.clear(); lcd.print("Solarmessung 1");sleep 2000; lcd.line2(); lcd.print ("p") ; sleep 100; lcd.print ("r"); sleep 100; lcd.print ("o"); sleep 100; lcd.print ("g"); sleep 100; lcd.print (" "); sleep 100; lcd.print ("b"); sleep 100; lcd.print ("y"); sleep 100; lcd.print (" "); sleep 100; lcd.print ("S"); sleep 100; lcd.print ("a"); sleep 100; lcd.print ("s"); sleep 100; lcd.print ("c"); sleep 100; lcd.print ("h"); sleep 100; lcd.print ("a"); sleep 1000; lcd.clear(); lcd.print("Status:");sleep 500; lcd.print(" R"); sleep 300; lcd.print("U"); sleep 300; lcd.print("N"); sleep 1000; lcd.clear(); /*******************************************/ //** Abfrage ADC 0 (Solarakku) */ /*******************************************/ lcd.print("Solarakku 240Ah"); station_io.LEDon(6); run thr1; loop { lcd.line2(); U=0.004*ports.adc(0)*3.702; str.putfloatf(s,U,3); lcd.print(s); s="Volt "; sleep 300; } } unknown identifier "station_io" unknown identifier "line2" Danke für Eure Hilfe...... | ||
Antwort schreiben Antworten: Re: C Neuling sucht Hilfe (von Sascha - 5.04.2005 9:17) Re: C Neuling sucht Hilfe (von guido - 5.04.2005 19:08) |