
EW1
Members-
Posts
16 -
Joined
-
Last visited
Everything posted by EW1
-
I added some devices to my daughter’s apartment in NY (keypads, switches, etc). However, I was surprised to find no ground wires. All the boxes are metal and the wire is in metal conduit. Are the boxes and conduit the ground? Should I be tapping into that? Nothing preexisting seems to be wired to the boxes or conduit.
-
Actually, adding the wait 1 hour is a mistake. Although the sunset time is showing an hour early, the next scheduled run time is correct (i.e. one hour later than what is showing as sunset time).
-
On 5.7.0_5 also, and same issue. For now, I just added a Wait 1 hour to my sunset programs.
-
Same issue with all programs disabled and sunrise/sunset an hour early. I'm on 5.7.0 Has anyone opened a ticket?
-
Started today for me. In the App, under notifications/settings, you can scroll down to groups and customize which users get which notifications. I just turned off System Notifications for everyone. This isn't really a fix, but at least stopped all of the notifications. This is a useful feature though - my wife only needs the Push notifications, not System, UD or PG3.
-
When migrating from ISY to EISY, does anyone know if the node numbers assigned to scenes will be the same? I use the REST API for my iOS apps and they are all hardcoded (e.g., /rest/nodes/27302/cmd/DON/).
-
Thanks for posting. I've been using an Insteon Hidden Door Sensor, but I'm not 100% happy with it, so nice to know there are other options.
-
Using all those keypad buttons seems like a lot of work. If you want wall-based vs. phone base control, perhaps just put an i-pad Mini on the wall with a Luxe port case and use the Sonos app. Then you can repurpose those buttons for your 12 favorite playlists or something else.
-
There are other alternatives that give you all the same functionality and more. In my case, the wife would only allow a standard doorbell button - no ring, blink, etc. I use a standard button linked to a Mobotix Q26 mounted in the front porch ceiling.
-
I don't have any yolink devices either. However, I do use a standard doorbell button to trigger the chime, video call to house phones and push notification to an app for camera/speaker/microphone/access control. I found that lighted doorbell buttons had issues being sensed when not pushed long enough. I switched to a non-lighted button and it has worked flawlessly since.
-
The serial PLM should come with the RJ45 to DB9 cable, so should only need the DB9 to USB cable (at least they used to come with it).
-
I access my HomeWorks system from Isy via telnet. A link to the Lutron integration protocol is below. https://assets.lutron.com/a/documents/040249.pdf
-
Thanks for the help. Just knowing that it was possible got me on the right track. Sonos has pretty good documentation of their API and there is a DesiredVolume control. Pasted below in case any others are using the old school network resources instead of a node server. <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><s:Body><u:SetVolume xmlns:u="urn:schemas-upnp-org:service:RenderingControl:1"><InstanceID>0</InstanceID><Channel>Master</Channel><DesiredVolume>20</DesiredVolume></u:SetVolume></s:Body></s:Envelope>
-
I have an ISY994 and Sonos 2.0.8 running on a rpi. I haven't actually used the node server yet - my programs are old and done with network resources. An example is below. I'm only seeing volume up/down options with the node server I have. I suppose I could send enough volume down commands that even from 100% it would go to zero, and then send a few volume up commands to get to desired volume, but this doesn't seem very elegant. Also, I don't think I can wire shark the set volume to desired percentage given the app doesn't seem to have this option either, just up/down. POST /MediaRenderer/AVTransport/Control HTTP/1.1 Host: 192.168.0.252:1400 Connection: Close Content-Type: text/xml; charset="utf-8" Content-Length: 267 SOAPACTION: "urn:schemas-upnp-org:service:AVTransport:1#Play" <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><s:Body><u:Play xmlns:u="urn:schemas-upnp-org:service:AVTransport:1"><InstanceID>0</InstanceID><Speed>1</Speed></u:Play></s:Body></s:Envelope>
-
I have a couple rooms with a single keypad button used to set sones to a preselected favorite for the room and play or pause. I also have a couple rooms where the primary light switch fast on and fast off triggers sonos to play/pause a favorite channel. This generally works well, except when the last person to use sonos in the room has adjusted the volume very high or low using the app. Is there a way to send a fixed volume percentage command vs just volume up/down commands?