Everything posted by Jimbo.Automates
-
How to create a Tasker program using Mobilinc plugin as the state?
Sorry, life gets in the way of reading forums sometimes :-/ Yes that should work. I don't remember, but I don't think pushover Android app is free. I tried to use pushbullet, but Tasker doesn't have access to what is in the message, but you probably could use it to make a specific sound when one is received. Sent from my Nexus 7 using Tapatalk
-
How to create a Tasker program using Mobilinc plugin as the state?
Email to pushover and Tasker can act on it, I have a tablet that uses text to speech to read some pushover notifications. I use network module to talk to pushover api, but you could use emails. Sent from my Nexus 7 using Tapatalk
-
Null Sensor Status Causes Program Error
Use if control instead of status like Xathros mentioned in post #4
-
Using the Wait command.
Like Stu said, the if runs only when it is switched On, so nothing stops the program from running. I think if you add an if is not switched off, it will restart the program when an off is received and evaluate to false.
-
Null Sensor Status Causes Program Error
The write device updates only works when the device wakes up. I use a state variable to track the status of all my open/close sensors just for this reason. Each time the status changes a program sets the state variable, along with the init to value. Sent from my Nexus 7 using Tapatalk
-
Tasker to run an ISY program through mobilinc?
Thanks, it's on my list of things to try, but haven't had time.
-
Tasker to run an ISY program through mobilinc?
Have you tried the RESTask for Tasker? Just curious if it helps with that issue.
-
Programming Issues
Or if the scene has a controller, like a KPL button, then check the status of that controller. So if you manually turn off the scene or another scene turns off the KPL it still works. Sent from my Nexus 7 using Tapatalk
-
Tasker to run an ISY program through mobilinc?
Thanks, and yes, always best to set the init values for important variables like that. Sent from my Nexus 7 using Tapatalk
-
Tasker to run an ISY program through mobilinc?
Hey oberkc, I have never used programs for status, does the ISY retain the last status after a reboot? Sent from my Nexus 7 using Tapatalk
-
Tasker to run an ISY program through mobilinc?
There is an writeup by MWareman on the wiki for using the rest interface directly, but that should help get you going. If not, let us know what part of the setup you have issues with. Sent from my Nexus 7 using Tapatalk
-
Tasker to run an ISY program through mobilinc?
Make the Tasker profile run a program to set a variable to true as the entry task, and false as the exit task, then use that variable in your door notification trigger. Sent from my Nexus 7 using Tapatalk
-
Triggering Events to send messages
If you only want the then/else to run at 9pm then one way is to move everything except the time is 9pm to a separate program that is disabled, and run that program at 9pm. Sent from my Nexus 7 using Tapatalk
-
Incorrect set of actions show for a z-wave device in a scene
You can use the http port 80 to test, and since this is all internal to your network do you really need https? Sent from my Nexus 7 using Tapatalk
-
Can't link ISY994 to 2477D
When you say the scene goes off then on, what is changing the scene? A program, manually at the switch, toggling the scene in the Admin Console or from mobilinc or? Sent from my Nexus 7 using Tapatalk
-
Incorrect set of actions show for a z-wave device in a scene
Thanks Xathros, that was the one I was looking for.
-
Incorrect set of actions show for a z-wave device in a scene
Someone posted about having a program to set user codes on schlage's in the last few weeks but I don't remember the specifics. For now I just have the codes always there and have notifications sent when they are used.
-
How Would You Do It?
Here is my program. The s.MS.FRO.Dark is 1 when I want the light to come on, Also, the door sensor is a open/close sensor with the jumper removed (2 scene mode) so it only turns the scene on, not off, and I have a separate timer program to turn the light off. The only issue with this that I have found is if it's light and I do turn the light on, the sensors will turn the light off. I'm trying to perfect the programs, but not quite there yet... AL FRO Enable Auto On - [ID 0008][Parent 0017] If $s.MS.FRO.Dark is not 0 Then In Scene 'Z-Motion / FamilyRoomOutsideMS-Senso' Set 'Outside / BackYard / FamilyRoomDoorOutside' 100% (On Level) In Scene 'DoorsAndGates / FamilyRoomDoor-Opened' Set 'Outside / BackYard / FamilyRoomDoorOutside' 100% (On Level) Else In Scene 'Z-Motion / FamilyRoomOutsideMS-Senso' Set 'Outside / BackYard / FamilyRoomDoorOutside' 0% (On Level) In Scene 'DoorsAndGates / FamilyRoomDoor-Opened' Set 'Outside / BackYard / FamilyRoomDoorOutside' 0% (On Level)
-
How Would You Do It?
In the adjust scene, select the sensor in the top selection, not the scene itself. I can post a pic when I'm at my computer. Sent from my Nexus 7 using Tapatalk
-
How Would You Do It?
When you adjust the scene it doesn't need to update the sensor, only the device that it controls. I know it works because that's how I do it.
-
How Would You Do It?
I prefer a scene because I want it on instantaneously, then use a program to adjust the device on value to zero in the scene when I don't want it to turn on. I can post my programs if you are interested. But this would be easier if we could disable a device in a scene: http://udi.ideascale.com/a/dtd/Allow-disabling-a-device-in-a-program/83037-32911
-
Why do i get both unlock and lock notifications?
I thought you did get unlocked notification for each lock? There may be difference with how the 2 different brands report. You'll have to watch the event log to see what they report.
-
Why do i get both unlock and lock notifications?
If both are unlocked and one of them is then locked the if will be true.
-
Motion Senor Disable
Allowing a program to disable a device would be a good feature that I've always wanted, so I created a request here: http://udi.ideascale.com/a/dtd/Allow-disabling-a-device-in-a-program/83037-32911
-
All On All Off not consistent when using mini remote
Why not put them all in a scene and turn the scene on and off?