ambient_weather_api
is a collection of functions for downloading current and historical data from the Ambient Weather API. It features built in support for choosing which devise you want to pull data from, and has safety measures built in to avoid hitting Ambient Weather's rate limits.
To learn more about how the Ambient Weather API works, and to obtain the required API and Application keys to use this creat, check out the Ambient Weather API Documentation.
In order to use this API, you will need to look over the list of device parameters that Ambient Weather offers. Not all device parameters may be used, so make sure you are calling one that is associated with your device.
Currently, this Rust crate is only capable of utilizing the Ambient Weather REST API. Support for their Realtime Socket.IO API will come at a later date.
To get started with pulling in the latest weather data from your Ambient Weather device, simply follow the example below:
```Rust use ambientweatherapi::*;
fn main() { let apicredentials = AmbientWeatherAPICredentials { apikey: String::from("Your API Key"), appkey: String::from("Your Application Key"), deviceid: 0, usenewapiendpoint: false, }; let latestdata = getlatestawdevicedata(apicredentials); println!("{}", latestdata["tempf"]); } ```