Hallo mprobo,
Du kannst Dir eine PrintInt-Funktion machen:

void PrintInt(int wert)
{
char text[6]=" ";
itoa(wert,text,10);
SerWrite(text,5);
}

Gruß,
stochri