Giter Site home page Giter Site logo

php-netatmocameraapi's Introduction

php Netatmo Camera API

This API allow full control of your Netatmo Presence/Welcome cameras

The following operations are currently supported:

Presence Cameras:

  • Get and Set Camera Monitoring (on, off).
  • Get and Set Camera floodlight intensity.
  • Get and Set Camera floodlight mode (auto, on, off).
  • Get and Set Camera floodlight auto mode (always, people, cars, animals, other).
  • Get and Set Camera Smart-Zones.
  • Get and Set alerts and recording (ignore, record, record and notify) for humans, vehicle, animal, other.
  • Get and Set alerts hours (from, to).
  • Get outdoor events (filtered by type or not).
  • Get camera(s) status.

Welcome Cameras:

  • Get and Set Camera Monitoring (on, off).
  • Get and Set persons at home / empty home.
  • Get person status.
  • Get and Set alerts and recording for persons, unknown faces, motion.
  • Get and Set alerts for alarm.
  • Set known person gone after time.
  • Get indoor events (filtered by type or not).
  • Get camera(s) status.

Warning
How to
Get settings
Change settings
IFTTT
Version history

This isn't an official API | USE AT YOUR OWN RISK! This API is reverse-engineered, provided for research and development for interoperability.

Feel free to submit an issue or pull request to add more.

Warning

This API will connect to your Netatmo account. Regarding your account option, each connection (script execution) may send you an email alert telling that someone connected to your account!

To avoid this:

  • On the web interface, go to user settings (top right).
  • Go to e-mail settings.
  • Turn off e-mail on new connection.

Or:

  • Create a new account on Netatmo website.
  • Disable connection notification for this new account.
  • From your original account, invite the new account.
  • Use this second account for the API!

How-to

  • Download the class/NetatmoCameraAPI.php on your server.
  • Include it in your script.
  • Start it with your Netatmo account login and password.

Connection

$Netatmo_user = 'myNetatmoLogin';
$Netatmo_pass = 'myNetatmoPass';
require($_SERVER['DOCUMENT_ROOT'].'/path/to/NetatmoCameraAPI.php');
$_NAcams = new NetatmoCameraAPI($Netatmo_user, $Netatmo_pass);
if (isset($_NAcams->error)) die($_NAcams->error);

If you have several houses on your Netatmo account, you can specify home name:

require($_SERVER['DOCUMENT_ROOT'].'/path/to/NetatmoCameraAPI.php');
$_NAcams = new NetatmoCameraAPI($Netatmo_user, $Netatmo_pass, 'myTinyHouse');
if (isset($_NAcams->error)) die($_NAcams->error);

Get settings:

Change camera name by yours!

//get home settings, with alerts/recording settings, cameras, persons:
echo "<pre>", json_encode($_NAcams, JSON_PRETTY_PRINT), "</pre><br>";
//or just cameras:
echo "<pre>", json_encode($_NAcams->_cameras, JSON_PRETTY_PRINT), "</pre><br>";
//global settings (alerts/recording settings):
echo "<pre>", json_encode($_NAcams->_home, JSON_PRETTY_PRINT), "</pre><br>";
//persons:
echo "<pre>", json_encode($_NAcams->_persons, JSON_PRETTY_PRINT), "</pre><br>";

//get camera settings:
$settings = $_NAcams->getCameraSettings('myCamera');
echo "<pre>settings:<br>".json_encode($settings, JSON_PRETTY_PRINT)."</pre><br>";
//for Presence you can check:
echo $settings ['light_mode_status'].'<br>';
echo $settings ['light']['intensity'].'<br>';

//get camera ftp settings:
$ftp = $_NAcams->getFtpConfig('myCamera');
echo "<pre>ftp:<br>".json_encode($ftp, JSON_PRETTY_PRINT)."</pre><br>";

//get Presence smart zones:
$smartZones = $_NAcams->getSmartZones('myCamera');
echo "<pre>smartZones:<br>".json_encode($smartZones, JSON_PRETTY_PRINT)."</pre><br>";

//get last 10 outdoors events (from Presence) of all type.
//You can request All, or only human, animal, vehicle, movement
$answer = $_NAcams->getOutdoorEvents('All', 10);
echo "<pre>answer:<br>".json_encode($answer, JSON_PRETTY_PRINT)."</pre><br>";

//get Presence camera timelapse.
//Without second argument, it will return filename of the mp4 timelapse, located in API folder:
$timelapse = $_NAcams->getTimeLapse('myCamera');
echo "<pre>timelapse:<br>".json_encode($timelapse, JSON_PRETTY_PRINT)."</pre><br>";
//or do $_NAcams->getTimeLapse('myCamera', '.'); to put timelapse in your script folder, for example.

//get last 10 indoors events (from Welcome) of all type.
$answer = $_NAcams->getIndoorEvents(10);
echo "<pre>answer:<br>".json_encode($answer, JSON_PRETTY_PRINT)."</pre><br>";

//get John settings:
$john = $_NAcams->getPerson('John');
echo "<pre>john :<br>".json_encode($john, JSON_PRETTY_PRINT)."</pre><br>";

//who is at home:
$athome = $_NAcams->getPersonsAtHome('John');
echo "<pre>athome :<br>".json_encode($athome , JSON_PRETTY_PRINT)."</pre><br>";

//is home empty:
$empty = $_NAcams->isHomeEmpty()

Change settings:

Change camera name by yours!

//set Camera monitoring on/off
$monitoring = $_NAcams->setMonitoring('myCamera', 'on');
//You can always echo answer to check result ok, or error:
echo "<pre>monitoring:<br>".json_encode($monitoring, JSON_PRETTY_PRINT)."</pre><br>";

//set Camera ftp state (true/false)
$_NAcams->setFTPenable('myCamera', true);

//set Presence floodlight mode (auto, on, off):
$_NAcams->setLightMode("myCamera", "auto");

//set Presence floodlight intensity:
$_NAcams->setLightIntensity('myCamera', 100);

//set when Presence floodlight should turn on in auto mode:
//in order: always, person, vehicle, animal, movement
$_NAcams->setLightAutoMode('myCamera', false, true, false, false, true);

//set Presence alert level for human detection:
//0: ignore, 1: record, 2: record and notify
$_NAcams->setHumanOutAlert(1);
//and:
$_NAcams->setAnimalOutAlert(1);
$_NAcams->setVehicleOutAlert(1);
$_NAcams->setOtherOutAlert(1);

//set Presence alert time from 10h15 (always use hh:mm)
$_NAcams->setOutAlertFrom('10:15');

//set Presence alert time to 22h00
$_NAcams->setOutAlertTo('22:00');

/*set Presence SmartZones:
- Define zones as array(x, y, width, height)
- Send at least one zone
- The API check for overlapping zones and don't send them to camera if so.
*/
$zone1 = array(0, 140, 455, 938);
$zone2 = array(457, 99, 880, 979);
$zone3 = array(1339, 569, 545, 509);
$zone4 = array(1339, 158, 580, 409);
$smartZones = $_NAcams->setSmartZones('myCamera', $zone1, $zone2, $zone3, $zone4);
echo "<pre>smartZones:<br>".json_encode($smartZones, JSON_PRETTY_PRINT)."</pre><br>";

//___Welcome:
//set John away from home:
$_NAcams->setPersonAway('John');

//set someone away from home after 120mins:
$_NAcams->setAwayHomeAfter(120);

//set home empty:
$_NAcams->setHomeEmpty();

//set Welcome alerts for unknown faces ('nobody' or 'always'):
$_NAcams->setUnknownFacesInAlert('nobody');

//set Welcome alerts for motion detection ('never', 'nobody', 'always'):
$_NAcams->setMotionInAlert('nobody');

//set Welcome recording for motion detection ('never', 'nobody', 'always'):
$_NAcams->setMotionInRecord('nobody');

//set Welcome alert when someone known is seen ('never', 'arrive'):
$_NAcams->setPersonInRecord('John', 'arrive');

//set Welcome alerts when someone known is seen (0 for disable, 1 for enable):
$_NAcams->setPersonArriveAlert('John', 0);

//set time for John alerts (always use 'hh:mm'):
$_NAcams->setPersonInAlertFromTo('John', '00:00', '23:59');

//set Welcome alarm detection ('never', 'nobody', 'always'):
$_NAcams->setAlarmInDetected('nobody');

IFTTT

You can create an endpoint url for triggering changes from IFTTT.

Basically, you create a php script that will get url parameters and trigger actions regarding these parameters. So in IFTTT, you can trigger same script with different parameters.

See IFTTTactions.php as an example.

Version history

v1.02 (2017-05-25)

  • New: getFtpConfig($CameraName) return hostname, login, port, path, state, video quality
  • New: setFTPenable($CameraName, $state), true / false

v1.0 (2017-05-24)

  • Repository name changed from php-NetatmoPresenceAPI to php-NetatmoCameraAPI.
  • Now support Netatmo Presence and Welcome cameras.
  • Some functions names have changed to support Welcome, please check your existing script!

v0.5 (2017-04-02)

  • Code breaking! Some functions names where confusing, read how-to!
  • New: getHome() return home alerts
  • New: getCamera('my camera') return camera and light settings
  • Changes setLightMode(), setLightIntensity(), setLightAutoMode()

v0.2 (2017-03-16)

  • New setSmartZones

v0.1 (2017-03-15)

  • First public version.

License

The MIT License (MIT)

Copyright (c) 2017 KiboOst

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.

php-netatmocameraapi's People

Contributors

kiboost 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.