Skip to content
/ airinfo Public

A library to read battery and status info from Airpods and Beats

Notifications You must be signed in to change notification settings

lex148/airinfo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Airinfo

A library to read battery and status info from Airpods and Beats

Example

use airinfo::find_pods;

#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let pods = find_pods().await?;
    for pod in pods {
        println!("POD: {:#?}", pod);
    }
    Ok(())
}

About

A library to read battery and status info from Airpods and Beats

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages