Hi,
How do i display the tag number with serout2 command to an LCD 2x16?
You don't..... you use LCDOUT. If you had a serial LCD (or back-pack) then you'd use SEROUT but since you have the LCD wired to your PIC in parallel 4-bit mode mode you use LCDOUT just like you're already doing in the code. And the STR modifier works with LCDOUT as well
Code:
LCDOUT $FE,$C0, "Tag: ", STR buf
/Henrik.