
bmercier
Employees-
Posts
101 -
Joined
-
Last visited
Everything posted by bmercier
-
Please PM me your uuid
-
Hello Everyone, Maintenance has completed. Enjoy! Benoit
-
Feature request: generic multiplexed devices in ISY portal
bmercier replied to apnar's topic in Amazon Echo
@nadler & @apnar, the above documentation applies to Alexa Custom Skill. Smart Home skills don't have that capability. We can't retrieve the deviceId in a smart home skill. -
This should not have any impact. The preferred ISY is still on the user profile. The only changes are a new field on the user profile, and the GH/Echo integration which now supports multiple ISYs. Benoit.
-
Multi-ISY Support is coming next sunday:
-
Hello everyone, We will have a maintenance next Sunday 11-25-2018 at 5:00 AM PDT which will last for up to 1 hour. During this period, ISY portal will be down. New features: Multi-ISY Support for Amazon Echo Multi-ISY Support for Google Home Amazon Echo: The live update button has been removed. It will be enabled automatically if the skill is enabled. Notes: In "My Profile", you will have an option to include your preferred ISY or all ISYs in the account. Duplicate spokens: Make sure your spokens are unique across your ISYs. There is a validation when you save your spokens, but this only checks that it is unique for the current ISY. If using all ISYs in the account, the "Send to Google Home", will send all spokens from all ISYs in account. Not just the spokens in the current ISY dialog. Benoit
-
Feature request: generic multiplexed devices in ISY portal
bmercier replied to apnar's topic in Amazon Echo
Thanks for the suggestion. Unfortunately, there is no echo device ID or anything else that allows to identify from which echo a request has been made. If you see documentation that says otherwise, please let me know. I looked at the actual payload sent by Amazon when making a request such as turn on/off, and there was nothing that would allow to identify from which echo device a request has been made from. Benoit -
Sorry I should have been more explicit. You can use programs to control a variable exposed as a motion sensor, which can triggers Alexa Routines which sends announcements. Program1, when the door is open, repeatedly trigger program2 every 5 minutes. Program2, in the then statement, just turn on the state variable to the motion detected value, wait 10 seconds then another value (no motion). In your Alexa routine, send the announcement whenever there is motion. Benoit
-
No. But you could accomplish this using programs.
-
Yes, I think that would be a good idea. The "ping" would need to be a valid request. If there are no devices for which we can send a status, then, the only valid request we could send is a sync request. The same as when clicking the "Send spokens to Google Home". Benoit
-
Alexa does not know state variables. I however knows about motion and contact sensors. Have you configured an Alexa Motion or Contact sensor using the state variable, in ISY Portal? Have you then run a device discovery (Alexa, discover my devices)? Benoit
-
Excellent, thanks for the feedback! Benoit
-
Try to disable the skill, and re-enable it. It is likely to fix the problem. Benoit. Sent from my iPhone using Tapatalk
-
Did you turn on Live Update in ISY Portal?
-
Are you exposing state variables as an Alexa sensor? Are you perhaps exposing the same state variable as multiple Alexa sensors (using different values)? Benoit
-
About the delays, I can tell you that the detection is debounced with a delay of 30 seconds, as per Amazon specs. If the sensor changes come too rapidly, some will be skipped. In other words, the Alexa sensor will always stay in the open or closed state for at least 30 seconds. So let's take an example: Sensor is initially Closed (since at least 30 seconds). At t=0s, sensor is Open -> Alexa Sensor will change to open immediately At t=10s, sensor is Close -> Alexa Sensor will stay open (Up to t=30s) At t=12s, sensor is Open -> -> Alexa Sensor will stay open (Up to t=30s) --> This one is skipped At t=22s, sensor is Close -> Alexa Sensor will stay open (Up to t=30s) At t=30s, Alexa Sensor will change to closed At t=40s, sensor is Open -> Alexa Sensor will stay closed (Up to t=70s (40s + 30s)) --> This one is skipped At t=50s, sensor is Close -> Alexa Sensor will stay closed (Up to t=70s) At t=70s, Alexa sensor stays closed (The physical sensor is closed) Benoit
-
I'm not aware of native Google Home support for multiple homes. Can you share what you have seen? For now, the only method I know you could use is ISY to ISY communication using Rest commands & network resources, but it's rather tedious. This involves Alexa controlling a program, which runs a network resource which talks to the other ISY through ISY Portal.
-
When you have a device as a controller in a scene, it will only turn on/off the scene when physically activated, not remotely. This is how insteon works. Somehow, it looks like Mobilinc reads the scene, and activates the scene when it sees one of the member being controlled. Here's a way to do the same thing with Echo: Create a program like this: IF Device is not off Then Turn on Scene Else Turn off scene Expose that program as a Light. You will be able to control your scene using Alexa, and it will hold a status (The true/false status of the program). Obviously it can't be dimmed, but at least, you will have a status. One of the drawback to the above is the additional Insteon communication that will occur. Whenever the scene will be turned on, the member device will turn on, which will trigger the program, which will trigger the scene. The propram will be triggered only once, because once the device is on or off, it will stay in that state, and not trigger the program.
-
Alexa Skill: "ISY" and/or "ISY Optimized for Smart Home V3?
bmercier replied to dbwarner5's topic in Amazon Echo
The original "ISY" skill has been sunset and no longer works. Please disable the "ISY" skill. Benoit -
I would try a different room name. This message meands that the group name is similar to another group, or to one of the devices. Benoit
-
Possibly. I don't know why it would not appear.
-
Good point, I had forgotten to set init too. Benoit
-
Please look at ISY Portal, Connectivity | Amazon Echo. Is the "device" you are trying to control an ISY device, or an ISY Scene? You can't assume that because it's under lights, it's an ISY device. You can have an ISY scene appear as a light in the Alexa app. Benoit
-
1. In the admin console, create a state variable 2. Create a program If sensor=detected then variable=1 else variable=0 3. Create Alexa spoken using the state variable you created. Expose it as a sensor, with a motion detected value of 1. The idea is that your state variable will follow the state of your sensor, except that the state will be persistent. Benoit
-
An ISY scene can be exposed as a light, which would make it appear in the list of Alexa devices. Benoit