<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS) in Partner Integrations</title>
    <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011853#M961</link>
    <description>&lt;P&gt;now on github&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Paulsmitz/Arlo-Camera-ModeChangeServer" target="_blank"&gt;https://github.com/Paulsmitz/Arlo-Camera-ModeChangeServer&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Dec 2015 07:51:44 GMT</pubDate>
    <dc:creator>paulsmitz</dc:creator>
    <dc:date>2015-12-01T07:51:44Z</dc:date>
    <item>
      <title>Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1010864#M956</link>
      <description>&lt;P&gt;OK I am sick of waiting for IFTTT so I have decided to roll my own...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is where I am up to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Raspberry PI 2 running minibian on a 2gb sd card&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Selenium recording of the login and mode change (This works perfectly!) Exported in Python see below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re

class SetAllAlertsOn(unittest.TestCase):
    def setUp(self):
        self.driver = webdriver.Firefox()
        self.driver.implicitly_wait(30)
        self.base_url = "https://arlo.netgear.com/"
        self.verificationErrors = []
        self.accept_next_alert = True
    
    def test_set_all_alerts_on(self):
        driver = self.driver
        driver.get(self.base_url + "/#/login")
        driver.find_element_by_id("userId").clear()
        driver.find_element_by_id("userId").send_keys("&lt;EM&gt;&lt;STRONG&gt;***USERNAME***&lt;/STRONG&gt;&lt;/EM&gt;")
        driver.find_element_by_id("password").clear()
        driver.find_element_by_id("password").send_keys("&lt;EM&gt;&lt;STRONG&gt;***PASSWORD***&lt;/STRONG&gt;&lt;/EM&gt;")
        driver.find_element_by_id("loginButton").click()
        for i in range(60):
            try:
                if driver.find_element_by_xpath("//div[@id='footerButtonModes']/div").is_displayed(): break
            except: pass
            time.sleep(1)
        else: self.fail("time out")
        driver.find_element_by_xpath("//div[@id='footerButtonModes']/div").click()
        driver.find_element_by_xpath("//div[3]/div[2]/div").click()
        driver.find_element_by_xpath("//span").click()
    
    def is_element_present(self, how, what):
        try: self.driver.find_element(by=how, value=what)
        except NoSuchElementException, e: return False
        return True
    
    def is_alert_present(self):
        try: self.driver.switch_to_alert()
        except NoAlertPresentException, e: return False
        return True
    
    def close_alert_and_get_its_text(self):
        try:
            alert = self.driver.switch_to_alert()
            alert_text = alert.text
            if self.accept_next_alert:
                alert.accept()
            else:
                alert.dismiss()
            return alert_text
        finally: self.accept_next_alert = True
    
    def tearDown(self):
        self.driver.quit()
        self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
    unittest.main()&lt;/PRE&gt;&lt;P&gt;You may need to change this line:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;        driver.find_element_by_xpath("//div[3]/div[2]/div").click()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I guarantee it is easier to record your own on firefox:&amp;nbsp;(download here)&lt;/P&gt;&lt;P&gt;&lt;A href="http://release.seleniumhq.org/selenium-ide/2.9.0/" target="_blank"&gt;http://release.seleniumhq.org/selenium-ide/2.9.0/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then export using python webdriver and then add this bit in (waits for the mode button to appear)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;        for i in range(60):
            try:
                if driver.find_element_by_xpath("//div[@id='footerButtonModes']/div").is_displayed(): break
            except: pass
            time.sleep(1)
        else: self.fail("time out")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then saved this as ArloSetAllAlertsOn.py&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then on the raspberry Pi I logged in and ran:&lt;/P&gt;&lt;PRE&gt;apt-get install python-setuptools
pip install selenium
apt-get install xvfb
apt-get install iceweasel
Xvfb :99 -ac &amp;amp;
export DISPLAY=:99&lt;/PRE&gt;&lt;P&gt;I can now run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;python ArloCamerasAllOn.py and it will change the camera's mode! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;now all I need to do is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create a second script for my other mode&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create a secured webserver in python which calls that test&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;setup dyndns account and setup the raspberry pi to report my IP to that&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Forward the correct ports on my router&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create an IFTTT maker channel which calls that webserver when my thermostat detects we are away&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create an IFTTT maker channel which calls that webserver when my thermostat detects we are&amp;nbsp;home&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;not much more left to do really... perhaps another evening or 2 and it will be working the way I hoped in the beginning with &lt;STRONG&gt;***multi person***&lt;/STRONG&gt; Geofencing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2016 20:55:53 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1010864#M956</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2016-09-28T20:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011061#M957</link>
      <description>&lt;P&gt;so as before run this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;apt-get install python-setuptools
pip install selenium
apt-get install xvfb
apt-get install iceweasel
Xvfb :99 -ac &amp;amp;
export DISPLAY=:99&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I now have a webserver! and I am using Bottle for that which you can install with the command below &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;pip install bottle&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code: (Replace *** USERNAME *** and *** Password ***)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
from bottle import route, run, template
import unittest, time, re, os

@route('/&amp;lt;name&amp;gt;')
def index(name):
    os.environ["DISPLAY"] = ":99"
    driver = webdriver.Firefox()
    driver.implicitly_wait(5)
    base_url = "https://arlo.netgear.com/"
    accept_next_alert = True
    driver.get(base_url + "/#/login")
    driver.find_element_by_id("userId").clear()
    driver.find_element_by_id("userId").send_keys("*** USERNAME ***")
    driver.find_element_by_id("password").clear()
    driver.find_element_by_id("password").send_keys("***PASSWORD***")
    driver.find_element_by_id("loginButton").click()
    
    for i in range(10):
        try:
            if driver.find_element_by_xpath("//div[@id='footerButtonModes']").is_displayed():
                break
        except: pass
        time.sleep(1)
    else:
        return template('&amp;lt;b&amp;gt;Sorry {{name}}&amp;lt;/b&amp;gt;!', name=name)
    driver.find_element_by_xpath("//div[@id='footerButtonModes']").click()

    for i in range(3):
        time.sleep(1)

    if name == 'mode0':
        driver.find_element_by_xpath("//div[3]/div[2]/div").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode1':
        driver.find_element_by_xpath("//div[3]/div[2]/div[2]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode2':
        driver.find_element_by_xpath("//div[2]/div[3]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode3':
        driver.find_element_by_xpath("//div[4]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode4':
        driver.find_element_by_xpath("//div[5]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode5':
        driver.find_element_by_xpath("//div[6]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode6':
        driver.find_element_by_xpath("//div[7]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode7':
        driver.find_element_by_xpath("//div[8]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    elif name == 'mode8':
        driver.find_element_by_xpath("//div[9]").click()
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Hello {{name}}&amp;lt;/b&amp;gt;!', name=name)
    else:
        driver.find_element_by_xpath("//span").click()
        driver.quit()
        return template('&amp;lt;b&amp;gt;Sorry {{name}}&amp;lt;/b&amp;gt;!', name=name)


run(host='0.0.0.0', port=8080)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ok so... with this script you can change to any of the modes except schedule!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;http://ipaddress:8080/mode0&lt;/PRE&gt;&lt;P&gt;will select the first cell under schedule&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;http://ipaddress:8080/mode1&lt;/PRE&gt;&lt;P&gt;will select the second mode etc...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;http://ipaddress:8080/mode8&lt;/PRE&gt;&lt;P&gt;I&amp;nbsp;have defined all up to mode 8 as i only have 9 modes (we start from 0 don't forget, Programmer in me)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you get&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hello mode6&lt;/STRONG&gt;&lt;SPAN&gt;! etc then you have successfully changed the mode...&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you get&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Failed&amp;nbsp;mode6&lt;/STRONG&gt;&lt;SPAN&gt;! etc then something broke....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Now just to do the easy stuff like port forwarding and setting up the maker channel! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2015 18:23:59 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011061#M957</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-11-29T18:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011062#M958</link>
      <description>&lt;P&gt;one thing to note is it takes about 15 seconds or so to action... because it has to load firefox, go to arlo.netgear.com, wait for the modes button to appeear, wait for the arlo spinner to disappear, wait for the modes to appear, and then click the mode you want! &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; &amp;nbsp;But hey its better than nothing!&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2015 18:25:47 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011062#M958</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-11-29T18:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011084#M959</link>
      <description>&lt;P&gt;Done! looks to even work too! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Nov 2015 19:22:31 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011084#M959</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-11-29T19:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011645#M960</link>
      <description>&lt;P&gt;For those who don't want to buy and host a raspberry pi... you should be able to run a free tier Amazon AWS instance and get the whole shebang for free! anyone want to set up a vm image that is easy to spin up?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Nov 2015 22:19:43 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011645#M960</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-11-30T22:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011853#M961</link>
      <description>&lt;P&gt;now on github&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Paulsmitz/Arlo-Camera-ModeChangeServer" target="_blank"&gt;https://github.com/Paulsmitz/Arlo-Camera-ModeChangeServer&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 07:51:44 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1011853#M961</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-12-01T07:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1013722#M962</link>
      <description>&lt;P&gt;Nice solution. Thank you for sharing your work with us!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using your code one can also implement a button on the RasperryPi and manually switch between two modes (like all cameras on, all cameras off).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2015 16:34:05 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1013722#M962</guid>
      <dc:creator>elToro_</dc:creator>
      <dc:date>2015-12-04T16:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1013833#M963</link>
      <description>&lt;P&gt;yep button on the raspberry pi or by IFTTT compatible buttons &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2015 21:02:50 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1013833#M963</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-12-04T21:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019330#M964</link>
      <description>Does your thermostat use geofencing or motion detection? Seems like using thermostat motion detection to disable camera motion detection would be counterproductive. Just curious. I have ecobees and was excited to try this but I don't have geofencing set up</description>
      <pubDate>Thu, 17 Dec 2015 19:17:42 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019330#M964</guid>
      <dc:creator>Hdg</dc:creator>
      <dc:date>2015-12-17T19:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019333#M965</link>
      <description>So I have ifttt set up when it changes mode... It currently is geofenced but I also have a smartthings setup (hoping for proper support eventually so the cameras can do the motion detection for the lights...) which has proximity sensors so thinking I might move to that eventually... Just need to code the smartthings to do the integration between my tado and Arlo.&lt;BR /&gt;&lt;BR /&gt;The great thing about ifttt is that you can use anything that can create a trigger... So your supported devices and your imagination are key</description>
      <pubDate>Thu, 17 Dec 2015 19:26:21 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019333#M965</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-12-17T19:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019336#M966</link>
      <description>&lt;P&gt;ah.. my ecobees have IR motion detection and I figured if they detect motion, it might actually be an intruder, so i absolutely do NOT want to toggle arlo motion detection based on thermostat motion detection. &amp;nbsp;True geofencing makes sense and I read that tado has multi-user geofencing so now i understand your setup. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the excellent contribution. &amp;nbsp;I wish Netgear/Arlo would get their act together on the app.. it def could be better in a few specific ways. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 19:44:01 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019336#M966</guid>
      <dc:creator>Hdg</dc:creator>
      <dc:date>2015-12-17T19:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019340#M967</link>
      <description>I agree being an iOS developer myself it would only take a week to add all the features people are wanting apart from ifttt which looking at their api (I sniffed the apps comms) it looks like it is actually really good and ifttt would just talk to it directly! They would just need the oauth stuff which takes no time at all to add! I don't understand how it is taking them months to sort!</description>
      <pubDate>Thu, 17 Dec 2015 19:47:56 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1019340#M967</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-12-17T19:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021475#M968</link>
      <description>&lt;P&gt;Im attempting this myself tonight.. I am intrigued by the AWS option.. but I'm leaning toward using my desktop machine and a hyper-v VM/Internet Explorer/iis.. I see slenium has an IE driver. &amp;nbsp;am I wasting my time with that route?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2015 01:45:00 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021475#M968</guid>
      <dc:creator>Hdg</dc:creator>
      <dc:date>2015-12-23T01:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021479#M969</link>
      <description>&lt;P&gt;or should I just spin up a debian VM instead?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2015 01:50:18 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021479#M969</guid>
      <dc:creator>Hdg</dc:creator>
      <dc:date>2015-12-23T01:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021495#M970</link>
      <description>&lt;P&gt;now that I am reading more.. I see that arlo has mentioned geofencig and IFTTT support in a techhive review.. and I just got an email from arlo about an upcoming upgrade...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;maybe i shoult hold off&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2015 02:31:13 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021495#M970</guid>
      <dc:creator>Hdg</dc:creator>
      <dc:date>2015-12-23T02:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021542#M971</link>
      <description>Yes you can use an was micro vm for this... (Free tier) you just use the amazon vm and copy the commands. I haven't tried it on Windows but I guess it would work so long as you can get Python and pip working it is cross platform after all!</description>
      <pubDate>Wed, 23 Dec 2015 06:42:35 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1021542#M971</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2015-12-23T06:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1029684#M972</link>
      <description>&lt;P&gt;The update broke this and I haven't been able to fix it... seems that the project is dead!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 11:34:30 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1029684#M972</guid>
      <dc:creator>paulsmitz</dc:creator>
      <dc:date>2016-01-07T11:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1032924#M973</link>
      <description>&lt;P&gt;Pretty gonzo. &amp;nbsp;I guess it's not a shock that that the update broke it, given dependence on their&amp;nbsp;exact DOM, but hats off!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 21:30:43 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1032924#M973</guid>
      <dc:creator>platron</dc:creator>
      <dc:date>2016-01-12T21:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling my Own IFTTT integration... (WORK IN PROGRESS)</title>
      <link>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1086457#M974</link>
      <description>&lt;P&gt;We are excited to let the community know that IFTTT integration has been announced! For more information, take a look here: &lt;A href="https://community.netgear.com/t5/Announcements/Introducing-IFTTT-Integration/td-p/1086417" target="_blank"&gt;Introducing IFTTT Integration&lt;/A&gt;&lt;BR /&gt;
&amp;nbsp;&lt;BR /&gt;
JamesC&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2016 17:06:15 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Partner-Integrations/Rolling-my-Own-IFTTT-integration-WORK-IN-PROGRESS/m-p/1086457#M974</guid>
      <dc:creator>JamesC</dc:creator>
      <dc:date>2016-05-17T17:06:15Z</dc:date>
    </item>
  </channel>
</rss>

