Jump to content

larryllix

Members
  • Posts

    14889
  • Joined

  • Last visited

Everything posted by larryllix

  1. When was the last time you factory reset the MS II? What is your UI version? I don't see you pinging UDI using the forum notification method. They aren't mind readers. If you are only using scenes with the MS II then ISY is not involved. Have you read any of the responses here?
  2. You would have to notify them or do something to get their attention. Not every post is read. Try the '@'+nickname method in a post.
  3. larryllix

    Digital I/O

    The WC8 supports up to 16 x 1-Wire devices. Early WC8 models had some trouble with this feat but this has been reported to be resolved mostly. Some experimenting with the 1wire transmission line terminations may be required to make it work properly with multiple 1wire devices. Mine has a resistor and capacitor installed at the board. Other users here report 16 probes successfully with ISY. My older WC8 board has worked with 2 x 1-wire temperature probes for several years while it counts pulses from my anemometer, calculating wind speeds and wind gusts, while sending 8 Webset packets to my ISY every 20 seconds, no problem. I was sending 8 Webset packets to ISY every 10 seconds but wanted to lengthen my sample period for the wind calculations. ISY has no problems handling a Webset packet from the WC8 every second while it performs many other tasks simultaneously, like PolyGlot plus NodeLink and several other home brew RPi projects updating variables.
  4. I still get my reports at 8:00 AM every morning. Helps me track HVAC usage and Cold Cellar ventilation. With our high humidity here, in the summer it is hard to keep the walls from weeping and molds out.
  5. There are a few ways to do this that I know of - Use io_guy's software on a RPi or other CPU - Use totally ISY software to keep track of run times without any real time logging. ….found it! - Use mwareman's technique mostly built inside ISY and using an external browser
  6. Yes! There will be coloured oval cornered rectangles beside each device containing a "1011" code to indicate trying to write binary to the device(s).
  7. Are you using European frequencies with North American Insteon?
  8. Factory reset each one, and then restore it. You better get some methods in place to prevent this from going through your house in the future. It sounds like the lightning got into your wiring. This may get costly and annoying, and not just for Insteon. If you do not understand electrical discharge phenomenon, look for a sharp electrician.
  9. Nice. Justa suggestion: Put Wait 2 Seconds between each Set line. You are writing data to each device's eProm and it can take a lot of Insteon comm talk time. This may tie up your other HA communications and flood ISY's caching, causing some operations to be dropped, devices to be marked as 'comm failure', or mess up program timing in other programs. Most Insteon operations are fairly quick and don't tie up much comm line time but updating eProms in devices can take much longer. This seems like background process anyway without any urgency.
  10. You likely have battery Insteon devices waiting to be put into linking mode so that ISY can finish writing updates to them. That can bog ISY down attempting to write updates every time that device has any action. A factory reset of ISY with a follow up Restore may clear things out also.
  11. larryllix

    Digital I/O

    import urllib.request import base64 # Server (this CPU) IP address server_IP = '192.168.0.175' server_port = 8000 # ISY parameters to be defined by user ISY_username = 'zzzzzzz' ISY_password = 'xxxxxxxx' ISY_IP = '192.168.0.161' # Heartbeat to ISY variable ISY_HBpage = 2 # 1=Integer, 2=State ISY_HBaddr = 83 # ISY heartbeat variable ISY_HBperiod = 90 # In seconds. toggles ISY flag variable ISY_HBlast_sent = 0.0 # Write ISY handshake variable via REST i/f def write_ISY(data): ISY_rest = "/rest/vars/set/%s/%s/%s" % (ISY_HBpage, ISY_HBaddr, data) get_url = urllib.request.Request('http://' + ISY_IP + ISY_rest) #format the URL ISY_authorise = base64.b64encode((ISY_username+":"+ISY_password).encode('utf-8')) #encode it get_url.add_header("Authorization", 'Basic %s' % ISY_authorise.decode('utf-8')) try: r = urllib.request.urlopen(get_url) returned = r.read() r.close() except: report("NRBridge: ISY heartbeat send failed!***") return
  12. Most problems I have seen here are solved by disconnecting the Alexa skill from your UDI account, and then reconnecting them. It seems to take a fresh data grab and all is fixed again
  13. larryllix

    Random "ons"

    Mine didn't.
  14. larryllix

    Random "ons"

    I had a random problem with lights turning themselves on for about a year. Finally I recognised the pattern as one of my scenes. After digging through programs each occurrence for months I found errors in the error log after some Humidifier On (a OnOff plug-in module) commands. I unplugged the module and plugged it back in and it hasn't done it for about two years now. It seems my OnOffLinc module was sending out a scene On command (well noise, interpreted as a scene on) instead of an ACK occasionally. The module was not in any scene at all.
  15. larryllix

    Digital I/O

    For the CAI Webcontrol board you don't need a RPi at all. See my screenshot (above) as the WC8 board has it's own I/o interface designed to support ISY's Rest interface without any further hardware.
  16. larryllix

    Digital I/O

    The Network Module can send almost any style of Ethernet packet out. The Rest interface inside ISY can receive formatted Ethernet packets to control programs, variables, scenes etc.. The CAI WC8 board would fit your bill perfectly. it would take only a few lines of code and rest interface commands installed into it's table to write to ISY from the logic inputs on the WC8 board.
  17. What ISY firmware and UI are you using? They must match.
  18. @k0d3g3ar Welcome to the UDI forums! Great entrance you made! Thanks from all of us!
  19. I have none now but... Can you use "switched" instead? Can you use "Off"? Can you use < 1% ? Why so many decimal places? I suspect ISY is showing you a rounded off value and never really matched 0.0000% BTW: Your AND specifies you must have both off. This will not work with "Switched" triggering. Two devices are never triggered at the same time with ISY logic.
  20. Always welcome. We live to solve problems here. Sent using Tapatalk
  21. Click on the Devices page/Tab. Slide down to the bottom and you will find "Delete All" After that is done ask Alexa "Discover" or click the discover button on the app. It will find everything in the ISY Portal that you set up. Multiple instances of devices and edits you made since the beginning will be cleaned out.
  22. This may be a slip of the tongue but sending codes to the KPL is not controlling the FanLinc. You are tapping the wrong person's shoulder. Not a good process to attempt without ISY, agreed, but it sounds like it should have worked. This seems to present that ISY made an assumption and didn't go by actual status of the device. Usually a "Query" will correct the status error.
  23. Have you used the Alexa app on a mobile device to "delete all" devices and then used "Discover" again? I got messed about for months, by using their webpage app and then an Android v4.x mobile app. They just make things not work magically without warning. My Win 10 Edge Browser webpage app makes my routines all disappear into generic triggers. Just some thoughts.
  24. What is your exact vocal syntax you are using to control this device?
  25. I have to wonder if they changed the port number on the newer hubs. The port number was changed once before early in their development. Try finding a packet sniffer and monitor some packets from the app. The sniffer must run on the same cpu as the app as switches don't pass packets to uninvolved devices. Sent using Tapatalk
×
×
  • Create New...