Printer.prototype.barcodeHeight = function(h) {
    if(h > 255 || h < 0) {
        throw new Error('Height must be 0 < height > 255');
    }
    var commands = [29, 104, h];