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!
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");
}