android 串口通信,蓝牙通信等需要输出十六进制数据的方法

byte[] datagram = new byte[2];
datagram[0] = (byte) 0xaa;
datagram[1] = (byte) 0x55;

你可能感兴趣的:(android,安卓)