Newer
Older
Card9-Skyworks / software / utils / ProtocolBinarify.js
@王邈 王邈 on 11 Feb 2015 186 bytes 一些助手性的程序
module.exports = {
	command: function(type){
		return new Buffer([0xA1, 0x01, 0x01, 0x00, type]);
	}
	response: function(type){
		return new Buffer([0xA1, 0x03, 0x01, 0x00, type]);
	}
};