Adaptor.prototype.analogRead = function(pin, callback) {
  this.connector.analogRead(pin, function(value) {
    this.respond("analogRead", callback, null, value, pin);
  }.bind(this));
};