diff --git a/node/tessel-export.js b/node/tessel-export.js index 91f3a35..b1a7332 100644 --- a/node/tessel-export.js +++ b/node/tessel-export.js @@ -554,7 +554,7 @@ Tessel.Pin.prototype.removeAllListeners = function(event) { Tessel.Pin.prototype.addListener = function(mode, callback) { if (typeof Tessel.Pin.interruptModes[mode] !== 'undefined') { if (!this.interruptSupported) { - throw new Error('Interrupts are not supported on pin ' + this.pin); + throw new Error('Interrupts are not supported on pin ' + this.pin + '. Pins 2, 5, 6, and 7 on either port support interrupts.'); } if ((mode === 'high' || mode === 'low') && !callback.listener) {