i try :
byte[] Data = { 0xA3, 0x34, 0x33, 0x33, 0x00};
but at "0xA3" it said "required byte found int",so what's problem here ?
0xA3 is 163 which is out of bounds for byte which I think can be -128 -> +127.
You can find more details here
byte[] Data = { (byte)0xA3, 0x34, 0x33, 0x33, 0x00};
bytes range from -128 to 127.0xA3is 163.