PhilipDaubmeier.NetatmoClient
1.9.0
dotnet add package PhilipDaubmeier.NetatmoClient --version 1.9.0
NuGet\Install-Package PhilipDaubmeier.NetatmoClient -Version 1.9.0
<PackageReference Include="PhilipDaubmeier.NetatmoClient" Version="1.9.0" />
paket add PhilipDaubmeier.NetatmoClient --version 1.9.0
#r "nuget: PhilipDaubmeier.NetatmoClient, 1.9.0"
// Install PhilipDaubmeier.NetatmoClient as a Cake Addin #addin nuget:?package=PhilipDaubmeier.NetatmoClient&version=1.9.0 // Install PhilipDaubmeier.NetatmoClient as a Cake Tool #tool nuget:?package=PhilipDaubmeier.NetatmoClient&version=1.9.0
NetatmoClient
NetatmoClient is a .NET Core class library with a wrapper for the Netatmo Cloud RESTful JSON web service. It encapsulates all authentication, retry and parsing logic and provides a strongly typed method interface of the Netatmo API.
NuGet
PM> Install-Package PhilipDaubmeier.NetatmoClient
Usage
You have to implement the interface INetatmoConnectionProvider
to provide the NetatmoWebClient
with all information necessary to authenticate at the API and establish a connection or use the existing NetatmoConnectionProvider
.
The minimal viable example for playing around with the client would be as follows:
var netatmoAuth = new NetatmoAuth("<username>", "<password>");
var netatmoConnProvider = new NetatmoConnectionProvider(netatmoAuth)
{
AppId = "<your_netatmo_connect_app_id>",
AppSecret = "<your_netatmo_connect_app_secret>",
Scope = "read_station read_presence access_presence"
};
Caution: in a productive use you may want to implement your own
INetatmoConnectionProvider
and load your app id and secret from a suitable vault and the user credentials should be entered by the user in some way and immediatelly discarded again. TheINetatmoAuth
object will contain a refresh token that can be used to re-authenticate at any time, which can be persisted by implementing a customINetatmoAuth
class. You can have a look at the respective classes inGraphIoT.Netatmo
as an example.
If you have the connection provider in place, you can create a NetatmoWebClient
and query station data and measurements:
var netatmoClient = new NetatmoWebClient(netatmoConnProvider);
// Find the id of the first base station of the logged in user
var weatherStation = await netatmoClient.GetWeatherStationData();
var baseStationId = weatherStation.Devices.First().Id;
// Get temperature values of the past 24 hours of the base station
var start = DateTime.Now.AddDays(-1);
var end = DateTime.Now;
var measureTypes = new Measure[] { MeasureType.Temperature };
var measures = await netatmoClient.GetMeasure(baseStationId, baseStationId,
measureTypes, MeasureScale.Scale1Hour, start, end);
// Print out all values
foreach (var measure in measures.First().Value)
Console.WriteLine($"timestamp: {measure.Key} temperature: {measure.Value} °C");
Platform Support
NetatmoClient is targeted for .NET 9.0 or higher.
License
The MIT License (MIT)
Copyright (c) 2019-2024 Philip Daubmeier
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
-
net9.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.9.0 - upgraded to target framework net9.0
1.8.0 - upgraded to target framework net8.0
1.7.0 - upgraded to target framework net5.0
1.6.1 - improved exception messages
1.6.0 - widened range of supported platforms by targeting netstandard2.1
1.5.0 - moved to System.Text.Json and removed dependency to Json.NET
1.4.1 - bugfix in CO2 dashboard data
1.4.0 - upgraded to target framework netcoreapp3.1
1.3.0 - included default implementation of INetatmoConnectionProvider
1.2.0-beta1 - added support for HttpClientFactory and Polly. Enabled non-nullable reference types.
1.1.0 - migrated to netcoreapp3.0
1.0.0 - Initial version with publishing version 1.0 of GraphIoT