GithubHelp home page GithubHelp logo

Librería para Ionic about lector_android HOT 1 CLOSED

cedulacr avatar cedulacr commented on September 29, 2024
Librería para Ionic

from lector_android.

Comments (1)

jeudywr avatar jeudywr commented on September 29, 2024

Nevermind. El barcode scanner de Ionic/phonegap funciona. Así queda el decode para typescript:

public array = new Uint8Array(17);

    this.array[0] = 0x27;
    this.array[1] = 0x30;
    this.array[2] = 0x04;
    this.array[3] = 0xA0;
    this.array[4] = 0x00;
    this.array[5] = 0x0F;
    this.array[6] = 0x93;
    this.array[7] = 0x12;
    this.array[8] = 0xA0;
    this.array[9] = 0xD1;
    this.array[10] = 0x33;
    this.array[11] = 0xE0;
    this.array[12] = 0x03;
    this.array[13] = 0xD0;
    this.array[14] = 0x00;
    this.array[15] = 0xDF;
    this.array[16] = 0x00;    

  private decode(data) {
    this.cedula = '';
    let j = 0;

    for (let i = 0; i < data.length; i++) {
        if (j == 17) {
            j = 0;
        }

        this.cedula += String.fromCharCode(data.charCodeAt(i) ^ this.array[j]);

        j ++;
    }    

    this.cedula = this.cedula.substring(0, 9);
  }

Eso funciona pra sacar la cédula y por ende para el resto.

Muchas gracias por este proyecto!

from lector_android.

Related Issues (10)

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.