Giter Club home page Giter Club logo

pharonetatmoapi's Introduction

Pharo Netatmo API

image

Pharo Netatmo API implementation for Legrand Netatmo products.

Supported products :

  • Weather station products
  • Healthy HomeCoach / Aircare product

Connexion and OAuth2 authentication

You cannot access data directly from the devices : Netatmo not provide that for the moment. The only way to access the data and the devices is via Netatmo servers. You need to be connected to Internet to get datas from your devices.

The access require an OAuth2 authentication to get an access token. This token should be refresh in time with another authentication request. For more details about the security see the link to official Netatmo documentation at the bottom of this page.

OAuth2 authentication is working in this project using Zinc and can be used for desktop or web applications.

When your token is recover, use the api with it during the token validity time.

Installing

Metacello new
   baseline: 'NetatmoAPI';
   repository: 'github://labordep/PharoNetatmoAPI:main';
	onConflictUseIncoming;
	ignoreImage;
   load.

Prerequisites

Create an application access with your Netatmo connect account to get your client_id and client_secret datas. See the bottom section to use the OAuth2 authentication in this project.

For more details see the official guidelines.

How to authenticate

This section describes how to authenticate and get an access token. This step is not mandatory if you get manually a token, for example directly by a Netamo account website or another providing library. When you get a token you can use the API, see next section to have some examples.

First, instanciate a new NetatmoAPIAuthentificator with your client_id and client_secret datas. You need to specifiy the scope of your datas, for examples : thermostat temperature, humidity, etc. If your are not sure or if you need all use NetatmoScopeEnum allReadScopes to get all can be read datas.

authenticator := NetatmoAPIAuthentificator 
	clientId: 'myClientId' 
	clientSecret: 'myClientSecret' 
	scopes: (NetatmoScopeEnum allReadScopes).

Now create a new session to request the authentication. This method return a ZnOAuth2Session which provide OAuth2 connexion process.

session := authenticator createOAuth2Session. 

If this is the first try to get a token, the session is not live. Call the requestUserAuthentication method to open your web browser and validate the authentication using the Netatmo online form.

session isLive ifFalse:[
	authenticator requestUserAuthentication.
].

At this step your default web browser open the online Netatmo authentication form :

image

Check and accept if you are agree. A basic result page is display to confirm the good authentication, close this page when it appears :

image

Getting your token :

token := session liveAccessToken.

How to use the API to get datas

Instanciante NetatmoAPI to have to request datas from the API. Use a token to setup the connection.

| api |
api := NetatmoAPI new.
api token: 'yourAccess|tokenHere'

Use "api" category methods to request datas.

Get availables devices

Get all devices, return a list of NetatmoDevice. The list can change depending session authorization.

| devices |
devices := api getDevices.

Get Weather station datas

Get all device, return a list of NetatmoStation devices.

| devices |
devices := api getStationDevices.

Get specific device from mac address (id), return a list of NetatmoStation devices.

| devices |
devices := api getStationDevice:: '01:23:45:67:89:ab'.

Get Healthy Home Coach datas

Get all device, return a list of NetatmoHealthyHomeCoach devices.

| devices |
devices := api getHealthyHomeCoachDevices.

Get specific device from mac address (id), return a list of NetatmoHealthyHomeCoach devices.

| devices |
devices := api getHealthyHomeCoachDevice: '01:23:45:67:89:ab'.

Get measures from a device

Use the API to get measure from a device, return a list of NetatmoMeasure measures. Each NetatmoMeasure contains data (for example 56), type (for example 'humidity'), unit (for example '%'), data unit (for example Number) and a DateTime of the measure. When requested a measure from the API use types: to choose data type by passing a list of NetatmoMeasureType.

Get one type of data from a device.

| measures |
measures := api getMeasures: (device id) 
                types: NetatmoMeasureType humidity.

Get multiples types of data from a device.

| measures |
measures := api getMeasures: (device id) 
                types: (OrderedCollection 
                           with: NetatmoMeasureType temperature 
                           with: NetatmoMeasureType humidity).

It is possible to request a date time interval of measure, with a scale for the sample. Example : get temperature each days at the current time in the last week.

| measures |
measures := api getMeasures: (device id) 
                types: NetatmoMeasureType temperature 
                scale: 1 day 
                dateTimeBegin: (DateAndTime now - 7 day) 
                dateTimeEnd: DateAndTime now.

More examples

The package NetatmoAPI-Examples contains some API uses examples with basics user interfaces using Spec and Roassal.

A list of availables devices (with sub devices) :

image

A list of last 7 days Healthy Home Coach measures :

image

A Weather Station dashboard :

image

A Weather Station last 7 days indoor and outdoor humidity :

image

Etc.

Legals and privacy

Using Netatmo Connect APIs you will have access to very sensitive information. This is particularly true if your app accesses our Cameras (live stream or videos). Make sure you respect user's privacy and have a strong privacy policy.

Netatmo Connect APIs Terms of Use

Legrand Netatmo API documentation

This ressources are my reference to implement this API. There are two API product groups : Weather/Security/Energy and HomeCoach/Aircare.

Weather, Security and Energy products

General Netatmo documentation

More specific produtcs API :

Healthy HomeCoach / Aircare product

Netatmo Aircare API Documentation

Licence

This project is a personnal work, I'm not affilied with Legrand.

This project is licensed under the MIT License - see the LICENSE file for details.

pharonetatmoapi's People

Contributors

labordep avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.