B4R Question B4R sending characters to In-line C

james_sgp

Active Member
Licensed User
Longtime User
Hi,
I`m using In-Line C to print text onto an LCD display (which works), but banging my head against the wall on how to change this so I can send different text messages from the B4R code?

C++:
void writetext(B4R::Object* unused)
{
  tft.setCursor(0, 0, 2);
  tft.setTextColor(TFT_GREEN,TFT_BLACK);
  tft.setTextFont(4);
  tft.println("HELLO");
}
 
Top