Zitat Zitat von peterfb Beitrag anzeigen
achso okay top.
ja ich habe eine roboter bib aus arduino mit cpp die ich nun auf mbed importieren will als c bib.
punkt c.txt
punkt h.txt
Ich hoffe du hast das gemeint mit code in Textform
nein
poste bitte den korrekten vollständigen Sourcecode in normaler Textform, so wie hier...!

Code:
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd (0x20,16,2);
void setup()
{
   lcd.init();
   lcd.backlight();
}
void loop()
{
   lcd.setCursor(0,0);
   lcd.print("Hello,world");
   lcd.setCursor(0,1);
   lcd.print("LCD I2C");
}


aber C++ Libs auf ANSI C runter-portieren .... na dazu viel Glück...!