Adaptor.prototype.connect = function(callback) {
  this.serialPort.open(function() {
    this.emit("connect");
    callback(null);
  }.bind(this));