Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bishosba_honeywell-barcode-reader

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bishosba_honeywell-barcode-reader

A barcode reader for Honeywell handheld devices like Honeywell EDA52 (tested)

  • 1.0.19
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by26.67%
Maintainers
0
Weekly downloads
 
Created
Source

React Native Honeywell Barcode Reader

This package works with Honeywell devices that have an integrated barcode scanner, like the Honeywell EDA50K and EDA51 (tested).

This version fixed the event will fire twice.

This version is a fork from https://github.com/duytq94/react-native-honeywell-barcode-reader

Installation

npm i bishosba_honeywell-barcode-reader
react-native link bishosba_honeywell-barcode-reader
  1. In app\build.gradle add
implementation project(':bishosba_honeywell-barcode-reader')
  1. In settings.gradle add
include ':bishosba_honeywell-barcode-reader'
project(':bishosba_honeywell-barcode-reader').projectDir = new File(rootProject.projectDir, '../node_modules/bishosba_honeywell-barcode-reader/android')
  1. In MainApplication.java

Add this line to import package

import com.duytq94.HoneywellBarcodeReader.HoneywellBarcodeReaderPackage;

and add this line to getPackages()

new HoneywellBarcodeReaderPackage()

Usage

First you'll want to check whether the device is a Honeywell scanner:

import HoneywellBarcodeReader from "bishosba_honeywell-barcode-reader";

HoneywellBarcodeReader.isCompatible; // true or false

The barcode reader needs to be "claimed" by your application; meanwhile no other application can use it. You can do that like this:

HoneywellBarcodeReader.startReader().then((claimed) => {
  console.log(claimed ? "Barcode reader is claimed" : "Barcode reader is busy");
});

To get events from the barcode scanner:

HoneywellBarcodeReader.onBarcodeReadSuccess((event) => {
  console.log("Received data", event);
});

HoneywellBarcodeReader.onBarcodeReadFail(() => {
  console.log("Barcode read failed");
});

To free the claim and stop the reader, also freeing up resources:

HoneywellBarcodeReader.stopReader().then(() => {
  console.log("Freedom!");
});

To stop receiving events:

HoneywellBarcodeReader.offBarcodeReadSuccess();
HoneywellBarcodeReader.offBarcodeReadFail();

Keywords

FAQs

Package last updated on 23 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc