AmbientWx 2.0.0
dotnet add package AmbientWx --version 2.0.0
NuGet\Install-Package AmbientWx -Version 2.0.0
<PackageReference Include="AmbientWx" Version="2.0.0" />
paket add AmbientWx --version 2.0.0
#r "nuget: AmbientWx, 2.0.0"
// Install AmbientWx as a Cake Addin #addin nuget:?package=AmbientWx&version=2.0.0 // Install AmbientWx as a Cake Tool #tool nuget:?package=AmbientWx&version=2.0.0
AmbientWx
A .Net Core SDK for AmbientWeather.net API
This SDK allows a .Net Core developer to use the API provided by AmbientWeather.net to retrieve weather results from their personal weather station. To use this SDK, you must create a file named AmbientWx.config and place it in the folder with the AmbientWx.dll file. The config file contents should look like this:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ApiKey" value="Your Api Key" />
<add key="ApplicationKey" value="Your Application Key" />
<add key="MacAddress" value="Your device MacAddress" />
<add key="BaseUrl" value="https://api.ambientweather.net" />
</appSettings>
</configuration>
Be sure to use your apiKey and applicationKey provided by AmbientWeather.net. See their API documentation page for more information. The MacAddress in the config file is optional. If it is not supplied here, you will have to provide it when making a DeviceDataRequest.
How to use the API
Search for AmbientWx on Nuget, then install the package. Since this is .Net Core, it is usable on Windows, Mac and Linux platforms. Example call: First, ensure you're AmbientWx.config is in place. Then, in your code, make this call:
List<UserDevice> request = UserDevicesRequest.GetUserDevices();
You can then iterate through your devices and the data for each one. See the source code tests for usage as well.
APIs implemented to date:
- UserDevices
- Device Data
APIs Coming Soon
- Real Time
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Newtonsoft.Json (>= 12.0.3)
- System.Configuration.ConfigurationManager (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Adding Device Data API.