B4R Question Pass parameter to inline C

Hypnos

Active Member
Licensed User
Longtime User
Can anyone teach me how to pass a parameter (text) from B4R to inline C code?

The following code can work but I want to change the println text ("Hello") by B4R
Thanks!

B4X:
RunNative("Print1", Null)


void Print1(B4R::Object* o)
{
  M5.Lcd.println("Hello");
}
 
Top