Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/KireinaHoro/id-card-reader

Check in with NFC ID
https://github.com/KireinaHoro/id-card-reader

Last synced: 2 months ago
JSON representation

Check in with NFC ID

Awesome Lists containing this project

README

        

# Id-card-reader

The reader is split into two parts: a scanner (the device with NFC reader) and a controller (that sends scan commands to the scanner). The two roles communicate over the Nanomsg protocol.

## Dependencies

- common dependency:
- `nanomsg`
- `nanomsgxx`
- scanner:
- `libnfc`
- controller:
- Boost

## Build Instructions

Scanner:

```
cd scanner
make
```

Controller:

```
cd controller
make build && cd build
cmake ..
make
```