ebyte-e32-ui 0.5.0

CLI + GUI for interacting with EByte E32 LoRa modules
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Context;
use clap::StructOpt;
use ebyte_e32_ui::{arguments::Args, create, run};

fn main() -> anyhow::Result<()> {
    let args = Args::parse();
    let ebyte = create(&args).context("Failed to run app")?;
    run(&args, ebyte).context("Failed to run")
}