Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/KireinaHoro/id-card-reader
- Owner: KireinaHoro
- Created: 2018-12-26T15:21:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-01T03:40:14.000Z (about 6 years ago)
- Last Synced: 2024-08-02T01:25:31.975Z (6 months ago)
- Language: C++
- Size: 162 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```