Printer.prototype.small = function(onOff){
    var commands = [27, 33, (onOff === true ? 1 : 0)];
    return this.writeCommands(commands);
};