A small rust lib for getting live heartrate data
Currently only supports pulsoid, will add more when i find more services to get data from.
Simple example:
#[tokio::main]
async fn main(){
let mut pulse = pulse_lib::pulsoid(env::var("WIDGET_ID").unwrap()).await.unwrap();
loop {
dbg!(pulse.poll().await.unwrap());
}
}