Removed Nix and the sample-main, added a CI/CD pipeline and updated the README.md
Check, format and test / build (push) Failing after 49s
Check, format and test / build (push) Failing after 49s
This commit is contained in:
@@ -1,8 +1,60 @@
|
||||
# R701 🦀
|
||||
<div align="center">
|
||||
|
||||
# R701 🕰️
|
||||
|
||||
[](https://www.rust-lang.org)
|
||||
[](https://brainmade.org)
|
||||
[](https://choosealicense.com/licenses/agpl-3.0)
|
||||
[](https://buymeacoffee.com/nicolabelluti)
|
||||
<br>
|
||||
[](https://git.nicolabelluti.me/nicolabelluti/r701/actions/?workflow=check-format-and-test.yaml)
|
||||
|
||||
</div>
|
||||
|
||||
> A reverse-engineered library to communicate with the
|
||||
> [R701](https://ipsattendant.it/rilevatore-presenze-r701/) by [I.P.S.
|
||||
> Informatica](https://ipsinformatica.info/) via TCP, written in Rust
|
||||
> Informatica](https://ipsinformatica.info/), written in Rust
|
||||
|
||||
If you want to read about this reverse engineering attempt you can check out
|
||||
If you want to read about this reverse engineering attempt, check out
|
||||
<https://nicolabelluti.me/series/attendance-reader/>.
|
||||
|
||||
1. Add the library to you project:
|
||||
|
||||
```shell
|
||||
cargo add r701 --git https://git.nicolabelluti.me/nicolabelluti/r701.git
|
||||
```
|
||||
|
||||
2. Use the library in you project:
|
||||
|
||||
```rust
|
||||
use r701::R701;
|
||||
|
||||
fn main() {
|
||||
let mut r701 = R701::connect("127.0.0.1:5005").unwrap();
|
||||
|
||||
println!("No\tMchn\tEnNo\t\tName\t\tMode\tIOMd\tDateTime\t");
|
||||
r701.into_record_iter()
|
||||
.unwrap()
|
||||
.collect::<Vec<_>>()
|
||||
.iter()
|
||||
.rev()
|
||||
.enumerate()
|
||||
.for_each(|(id, record)| {
|
||||
let name = r701
|
||||
.get_name(record.employee_id)
|
||||
.unwrap()
|
||||
.unwrap_or(format!("user #{}", record.employee_id));
|
||||
|
||||
println!(
|
||||
"{:0>6}\t{}\t{:0>9}\t{: <10}\t{}\t{}\t{}",
|
||||
id + 1,
|
||||
1,
|
||||
record.employee_id,
|
||||
name,
|
||||
35,
|
||||
record.clock as u8,
|
||||
record.datetime.format("%Y/%m/%d %H:%M:%S"),
|
||||
);
|
||||
});
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user