Hello, how you can translate that code?, Mainly "(byte)"
java:
final byte txt_big[] = { 0x1b, 0x21, (byte) 0xb0, '-', '-', '-', '-', '-', 'H', 'e', 'l', 'l', 'o', '-', '-', '-', '-', '-', '-', '\n' };
B4A:
txt_big() = chr(0x1b) & chr(0x21) & ?????
Thanks and regards.
java:
final byte txt_big[] = { 0x1b, 0x21, (byte) 0xb0, '-', '-', '-', '-', '-', 'H', 'e', 'l', 'l', 'o', '-', '-', '-', '-', '-', '-', '\n' };
B4A:
txt_big() = chr(0x1b) & chr(0x21) & ?????
Thanks and regards.