Thanks for the help here. I now have scenes running off of the button press and the motion trigger.
One problem I cant figure out.
I would like to trigger the IR of the Doorbird with the Vera.
The API gives me the URL to do this. (http://<deviceip>/bha-api/light-on.cgi) I know the URL works as I have tested it in my browser.
http://www.doorbird.com/downloads/api_lan.pdf?rev=0.16I found the Loop code that should trigger a URL ( local status, result = luup.inet.wget("
http://www.yahoo.com", 5)) I replaced the yahoo address with the URL above so it looks like this. local status, result = luup.inet.wget("
http://XX.XX.XX.XX/bha-api/light-on.cgi", 5) With the X's being my IP of the Doorbird. I placed this loop code in the loop section in the scene.
http://wiki.micasaverde.com/index.php/Luup_Scenes_Events#Invoke_HTTP_URL_with_GET_request_.28Method_1.29I have created a virtual switch and a scene that triggers when the switch is on. I know the scene triggers.
The problem it seems is that the scene will not execute the Loop code or the loop code does not work.
Anyone know what I am doing wrong?