Newer
Older
Card9-Skyworks / software / utils / ProtocolBinarify.js
@王邈 王邈 on 11 Feb 2015 188 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]);
	},
};