Giter Club home page Giter Club logo

Comments (2)

racoononmoon avatar racoononmoon commented on September 26, 2024

Following the EPSON Command Reference, the printer simply goes OFFLINE when paper is not present.

TM-T88VII:
Paper sensor status (n = 1, 49)
When the roll paper end sensor detects a paper-end, the printer goes offline and does not execute this command. Therefore, bits 2 and 3 of the paper sensor status do not transmit a paper-end status.
https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=124

you can implement different status queries checking the paper low status and cash drawer status separately.
the difference to the execute() function is that you don't destroy the socket connection immediately after sending data but first wait for some status bytes to receive from the printer.

call it in the app code like
let printerStatus = await printer.status();

e.g. in core.js add:

async status() {
    let paper = await this.Interface.status("PAPER");
    let drawer = await this.Interface.status("DRAWER");
    let prst = await this.Interface.status("PRINTER");
    return {paper, drawer, printer: prst};
  }

in network.js add:

async status(which) {

    let buffer;

    if (which == "PAPER"){
      buffer = Buffer.from([0x1D, 0x72, 0x01]);  //03 = paper low, 00 = paper OK
    }else if(which = "DRAWER") {
      buffer = Buffer.from([0x1D, 0x72, 0x02]); //00 = drawer open, 01 = drawer closed
    }else if(which = "PRINTER") {
      buffer = Buffer.from([0x10, 0x04, 0x02]);  //00 = drawer open, 01 = drawer closed
    }
    

    return new Promise((resolve, reject) => {
      let name = this.host + ":" + this.port;
      var printer = Net.connect(
        {
          host: this.host,
          port: this.port,
          timeout: 3000
        },
        function () {
          printer.write(buffer, null, function () {
          });
        }
      );
  
      printer.on('data', function (data) {
        resolve(data.toString("hex"));
        printer.destroy();
      });

      printer.on('error', function (error) {
        resolve("ERROR");
        printer.destroy();
      });
  
      printer.on('timeout', function () {
        resolve("OFFLINE");
        printer.destroy();
      });
    });
  }

from node-thermal-printer.

Klemen1337 avatar Klemen1337 commented on September 26, 2024

I implemented expermiental getStatus with the new v4.3.0 release

from node-thermal-printer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.