You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

acr122u-websocket

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

acr122u-websocket

A webserver that connects to a acr122u and exposes it over websocket


Maintainers
1

Readme

ACR122U Websocket

PyPI - Version PyPI - License PyPI - Downloads PyPI - Python Version PyPI - Wheel

This project enables you to connect an usb ACR122U NFC card scanner to a computer and access it using Socket.IO.

Features

  • Read UUID from nfc cards and send them over Socket.IO.
  • Websocket messages to start and stop the polling for cards.
  • Websocket messages to give a confirmation or error beep and light signal.
  • Automatically reconnect to the reader when interrupted.

Installation

You can install this package from PyPI.

pip install acr122u-websocket

Usage

  1. Connect the ACR122U reader to the computer
  2. Run the app
    python -m acr122u_websocket.app
    

API

You can connect to the webserver using Socket.IO. These are the available events:

polling

Start or stop the polling.

Request
  • start to start the polling.
  • stop to stop the polling.
Reply
  • no card reader connected if no card reader is connected.
  • polling started if the polling has (already) started.
  • polling stopped if the polling has (already) stopped.
  • invalid message if the message is neither start nor stop.

status indicator

Set the status indicator.

Request
  • confim to play the confirming status.
  • error to play the error status.
Reply
  • no card reader connected if no card reader is connected
  • confirm status set if the confirm beep and light have been show
  • error status set if the error beep and light have been show
  • invalid message if the message is neither confirm nor error

card scanned

Broadcasts when a card has been scanned

Broadcast
  • {"uuid": [..]} - An object containing the uuid in the form of a list of integers.

Example

See an example webpage at test.html.

This page is also served on http://localhost:8080/test.

Keywords

FAQs


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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc