Everything posted by bmercier
-
Door locks and Echo
True. But echo has an auto-discover that runs every 1-2 hours. So, most users should see those appear automatically. Sent from my iPad using Tapatalk
-
Door locks and Echo
They are totally independant. The only thing they share is the configuration UI in ISY Portal. They share the same set of spokens,
-
Door locks and Echo
The New ISY smart home skill will support that, starting tomorrow. You will be able to ask: Alexa, is front door locked? Sent from my iPhone using Tapatalk
-
Door locks and Echo
Yes, you can disable the custom skill. In the web app (echo.amazon.com), click "skills" then "your skills" at the top right, select the ISY skill. Click Disable skill.
-
Door locks and Echo
We currently are not planning any change for the custom skill. IMHO, we should just remove it. It still has a few features that the smart home skill has, but they are hard to use, and having both causes confusion Sent from my iPhone using Tapatalk
-
Door locks and Echo
The commands listed there on the wiki are for the ISY Smart Home skill. Some of these commands will only be live this coming Sunday. This includes locks support and some thermostat queries. When you use tell izzy to, you are referring to the ISY custom skill. This already supports locks, and has been so from the beginning. Starting sunday, the ISY custom skill will not be too relevant anymore, as most of the functionnality will now be available through the ISY smart home skill.
-
Is portal down ? Can't login and Alexa not working for automation
LOL
-
Is portal down ? Can't login and Alexa not working for automation
I'm an anti-procrastinator Benoit.
-
Is portal down ? Can't login and Alexa not working for automation
Hi, I found out the issue. It would happen both in Safari and Chrome whenever we are using private/incognito mode. This is now fixed, and will be in production on the next update. Benoit.
-
Firefox Update 52 - no npapi
Hi Stu, I installed Firefox v52 ESR for testing, but it seems to work correctly. Do you get an error message or something? What does it do exactly? Are you using 64 or 32 bit? Thanks, Benoit
-
Is portal down ? Can't login and Alexa not working for automation
Portal login should work from an iPad. Benoit
-
Is portal down ? Can't login and Alexa not working for automation
No it's not. Try resetting your password.
-
Alexa now supports Lock as a command, but it does not work on my locks
Hello John, When you say "Alexa, tell isy to lock the .....", you are talking to the ISY custom skill. This has been working since the first implementation. Now, smart home skills (Alexa, lock ...) also support this since late February. This is currently developed and will be available on the next ISY Portal update. Note that you can only lock a door, or query the status. You cannot unlock. Alexa smart home skills do not support this for security reasons. Benoit
-
Using groups in Alexa smart home
Hello Stu, My apologies if I was not clear, I was not suggesting any of this. Brighten to X and Dim to X works, but it's the same as saying turn on to x. It sets to an absolute value. So of course absolute values does not work with scenes. The solution proposed is to set a state variable to the intended dim level, then use a program to set that level to the devices that we want. More details here for brandon: 1. Create a state variable in admin console (Programs->Variables->State) 2. In ISY Portal, Select tools->Connectivity->Amazon Echo, click on Add Variable, and choose a spoken for your variable. Optionnally, you could set a turn on value to 100. That will be the dim level use if you just "Turn on" without specifying a value. 3. Then create a program like this: If $MyState is not 1000,00000000 Then Set 'MyDevice1' On '$MyState %' Set 'MyDevice2' On '$MyState %' Set 'MyDevice3' On '$MyState %' Else - No Actions - (To add one, press 'Action') The program will trigger each time the state var is change, and will always evaluate to true (Dim level will never be 1000%). In the then statement, you basically set the dim level of your devices to the same value as the state variable. TIP: In the admin console, when you are on the line to your device, click twice on the arrow just below the percent box. Note: I believe this requires firmware level 5.x Benoit.
-
Using groups in Alexa smart home
It's a tricky one. In order to avoid groups, your alternatives are ISY scenes, programs or state variables. A scene would be the easiest. You can do things like dim or brighten. However, you can't set it to a specific percentage. What you could do is use a state var as a container to your percentage. In ISY Portal, you can assign a spoken to a state variable. On ISY, you could have a program that reacts to the state variable, and adjust the level of lights accordingly. Alexa turn on <my spoken> to <x> percent Will set your state var to the value x. Your program will take the value and set the lights accordingly. Benoit.
-
Google Home compatible with ISY994
Hi Javi, There is currently no plans to do parsing within ISY Portal. We use conversation actions with API.AI. We use their slot filling and webhooks to ISY Portal to perform the action and return the result. Benoit.
-
New Node Server Selections in ISY Portal
Hi Michael, To avoid support calls, there is a popup if 5.0.9 is not installed. Pilot users like yourself do not have this check so you can continue using 5.0.8T1. Benoit.
-
New Node Server Selections in ISY Portal
No. The bug here is stricly related to node servers accessing ISY through the portal connection. Requests being made by ISY Portal through the permanent socket are not supposed to require authentication, but in 5.0.8, it did for some specific REST APIs. Benoit
-
New Node Server Selections in ISY Portal
Yes and no. A node server is basically an extension to an ISY. Properties are updated by the node server. (Example thermostat temperature) Controls can initiated by the ISY. (Changing a thermostat setpoint) So, this can be 2-way, or just 1-way. In the case of this new occupancy feature it's 1-way. Occupancy is reported as a node property that you can use in a program. Benoit
-
New Node Server Selections in ISY Portal
I investigated the logs. You are right, this will not work with 5.0.8. I just recalled I had that problem with 5.0.8. Testing was done with 5.0.8T1 (5.0.8 with a temporary fix) 5.0.9 will be required. Benoit.
-
New Node Server Selections in ISY Portal
You can try it with 5.0.8+, it does work. There is a known bug that may happen when adding/removing mobile devices. If it happens, just retry it after a few minutes. This is likely to be fixed in 5.0.9. When your mobile devices are created successfully, it's stable. Benoit
-
Play Spotify through Onkyo amplifier
I don't think it's possible with Amazon Echo. This does not answer you questions, but FYI, you can do that with Google Home, with the help of Chromecast audio. Benoit
-
Alexa issue with State Variables
Can you confirm what you are saying to Alexa? Is it: 1. "Alexa, tell izzy to turn on test"? (This is for the ISY skill) 2. "Alexa, turn on test"? (This is for the smart home skill) These are 2 totally different things. The error message that you get seems to refer to the custom skill (option 1). Try option 2. Benoit
-
Export without Import
It was created initially at the request of a forum user. I believe the purpose was to document the list of spoken, probably for a chart to help users build it. An export was easy to do, as it is simply a dump of the spoken table in the correct format. An import could certainly be done, but requires more development efforts. We need to implement validations, and provide an import error log to the user. This is currently not in the plans. Benoit.
-
Amazon Echo Device Name
Hi Larry, Please make a search for "every". It should find it. Having an empty name, which is the first column, is precisely the bug that was solved. When the name is not there, the UI should still show the line, but using the spoken as the name. If you still have difficulty with this entry after doing a search, please PM me your uuid. Other bugs: Variables used are not highlighted in the pulldown menu list, as other categories are. This is on purpose. This allows you to enter multiple spokens for the same variable, but with different turn on values. Duplication displays "Device already has a spoken" instead of "Scene already has a spoken" Thanks, this is now fixed. Displaying 100 entries, when returning to the list screen, displays off the top of the webpage and it is not accessible or scrollable to access titles or items in that section. Which browser are you using? Please PM me a screenshot. Thanks, Benoit.