nfc

Crates.io

Rust bindings for the libnfc library.

For raw FFI bindings for libnfc, see nfc-sys.

Installation

Install libnfc (e.g. Debian/Ubuntu, brew install libnfc using Homebrew on Mac OSx, or on other systems).

Cargo.toml

[dependencies]
libc = "0.2.0"
nfc = "0.1.4"

Example Usage

// main.rs

extern crate nfc;

use nfc::version;

fn main() {
    println!("libnfc version: {}", version());
}

Implemented/TODO

Library initialization/deinitialization methods:

nfcregisterdevice -> register_device

nfc_init -> init

nfc_exit -> exit

NFC Device/Hardware manipulation methods:

nfc_open -> open

NFC Initiator methods:

-

NFC Target methods:

-

Error Reporting methods:

nfc_strerror -> strerror

nfcdevicegetlasterror -> device_get_last_error

Special Data Accessors methods:

-

Properties Accessors methods:

-

Miscellaneous methods:

nfc_version -> version

To-string Converters methods:

strnfcbaud_rate -> str_baud_rate

strnfcmodulation_type -> str_modulation_type

Contributing

I'm brand new to Rust so any help or constructive information would be really appreciated. Thanks in advance!

License

MIT