e_drone 22.6.2

Rust library for BYROBOT Drones.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate e_drone;

use e_drone::{*};


fn main() {
    let mut eb: file::EncryptedBinary = file::EncryptedBinary::new();

    eb.read("fw_drone_4_drone_p6_20.8.13_20200818.eb");

    println!("{:?}", eb.header);
}