Jump to content

Javi

Employees
  • Posts

    2071
  • Joined

  • Last visited

Everything posted by Javi

  1. Ok, if it happens again please send me a copy of the backup file with the issue. There is no way for the nodes to be deleted in UDM aside from the scenarios I mentioned. UDM uses the same database tables for all controllers so corruption would have affected everything not a single controller. So aside from accidental delete there could have been a bug which prevented loading.
  2. Not currently, but the Advanced Configurations will likely require an update soon due to some other changes, so I'll keep this in mind.
  3. Not sure, configurations can only be deleted in 2 scenarios. The first is user deletes, the second is during cleanup after synchronization, in which case the app prompts for backup prior to delete. Since the app will not delete on it's own then, It's possible there was a bug which prevented display of some nodes, however this would be the first report. Maybe a pocket delete? UDM > Settings > Insteon > Cancel Discovery.
  4. Was the Admin Console Restarted? Is it shown in UD Mobile?
  5. Does synchronization correct the issue?
  6. Please open a ticket and include your UUID. It is likely a calculation error somewhere, but I can't replicate on my side.
  7. Please open a ticket and include your UUID and firmware version. Also test when enabling only using the Local Connection in Controller Settings > Local Connection Settings. Be sure to press the test button to be sure the credentials/ip/etc are correct. Does this have the same issue? This test will help us determine if the issue is isolated to remote connection.
  8. Not currently as there is no position parameter in firmware. The Admin Console is also ordered alphabetically.
  9. Javi

    Trigger iBeacon

    Not directly, but if you have an application with can call a url you can use the Portal Geofencing Node Server. The following link is how UDM can work with the Portal Geofencing Node Server. The NS can also be triggered with a portal URL, which is how 3rd party Geofencing works with eisy. https://wiki.universal-devices.com/UD_Mobile#Occupancy_v2.0_Node_Server I have played with iBeacons in the past as presence detection but it was too unreliable to triangulate using signal strength, but it may work if only requiring detection instead of triangulation.
  10. Hi Bob, I don't follow exactly, but I think there is a simple solution. KPL buttons can not be controlled programmatically (unless it is the button with the load), they must be controlled from a scene. So, if I understand you want to issue a command to the scene, If this is true use type "Command" then for the command set the Scene to "ON". https://wiki.universal-devices.com/UD_Mobile#Favorite_Custom_Toggle With that said check out the 5.x fan example which simplifies KPL Buttons, so you only need 3 (high, med, low) and only one can be lit at a given time, pressing the lit button will turn the fan off. Then UD Mobile can control the fan module directly and the KPL Buttons will remain in sync. https://wiki.universal-devices.com/ISY994i:INSTEON_Device:FanLinc-KPL_FanLinc_KeypadLinc_Configuration
  11. Great, for reference the numbers 1:1,1 correspond to the module and port (blaster). Depending on your iTach version and number of ports and modules.
  12. "completeir,1:1,1" is a response from the iTach, where "1:1,1" corresponds to the command "sendir,1:1,1....". So the command is reaching the iTach.
  13. Thanks, Fixed open device dashboard for folders in both Android and iOS in next app version.
  14. Have you tried the iTach Node Server? See pinned topin in subforum below. https://forum.universal-devices.com/forum/324-itach-ir/ For Network Resource check port and termination "\r\n" at the end of the command
  15. The Z-Wave device may need to be factory reset. Then add using the QR Code which will automatically configure with security. The device may need to be close to the Z-Wave dongle during commissioning. Also some devices need the longer timeouts, see
  16. Glad you like the charts! Incorrect time is due to a bug in firmware, I think it is now fixed on our side for the next firmware release. So feature is still beta until firmware release.
  17. Node Def: <nodeDef id="MQSW" nls="SWITCH"> <editors/> <sts> <st editor="ONOFF" id="ST"/> </sts> <cmds> <sends> <cmd id="DON"/> <cmd id="DOF"/> </sends> <accepts> <cmd id="QUERY"/> <cmd id="DON"/> <cmd id="DOF"/> </accepts> </cmds> </nodeDef> Editor: <editors> <editor id="BOOL"> <range subset="0,1" uom="2"/> </editor> <editor id="ONOFF"> <range uom="78"/> </editor> <editor id="TEMPF"> <range max="176" min="-40" prec="2" uom="17"/> </editor> <editor id="HUM"> <range max="100" min="0" prec="2" uom="22"/> </editor> ........ </editors> Summary: Editor ID "ONOFF" is missing min/max or subset Added pull request for developer https://github.com/Trilife/udi-mqtt-pg3x/pull/16
  18. Local access should work, however it is highly dependent on the device. Many devices, especially Apple devices, will not route traffic to a WiFi Connection without internet. So even if you force it to connect to WiFi it will not send requests. https://wiki.universal-devices.com/UD_Mobile#WiFi_Connections_without_internet
  19. Perfect, Please post output of these 3 files: NodeDef, needed to get the editor ID from node def ID: http://192.168.XX.XX:8080/rest/profiles/family/10/profile/12/download/nodedef/nodedefs.xml Editor, needed to verify missing min/max or subset values: http://192.168.XX.XX:8080/rest/profiles/family/10/profile/12/download/editor/editors.xml Node: http://192.168.XX.XX:8080/rest/nodes/nodeAddress. where nodeAddress is the node address of any one of the nodes with the issue. Needed to get the Node Def ID
  20. Thanks what slots number is the mqtt plugin?
  21. Looks like the Node Server is missing a value. Please post the output of http://192.168.XX.XX:8080/rest/profiles/family/10/files. where 192.168.XX.XX is the local ip address
  22. I don't recommend this for 5.x. Using scenes, like the fan example, is the recommended way.
  23. I was referring to eisy, sometimes the battery parameter is included in a separate node
  24. Check out the 5.x Keypad and Fan scene example https://wiki.universal-devices.com/ISY994i:INSTEON_Device:FanLinc-KPL_FanLinc_KeypadLinc_Configuration#Firmware_5.x Scenes will work better than programs and KPL buttons can not be programmatically controlled, they require a scene (insteon limitation). A scene with the KPL button will need to be created to turn it on/off. Programs should only be used for corrections, like the "Note" section after the main scene in the example, as there are no "Wait" conditions. Sending many Insteon commands rapidly (i.e. from a program) may cause some commands to be dropped by the insteon network, so it may not work as expected without waits in between commands. Although this is even more tricky as "Wait" makes eisy programs act as a "While" instead of "IF" so the program may not finish executing if there is a wait without the main program triggering "Then" on another program.
  25. Not sure, is there sibling node with the battery level? The time is one of the reasons it's still beta, we had a formatting issue in the database. I think it should be fixed in the next firmware release, but not my specialty so I could be wrong . We also still need to implement a database purging as the database could become very large very quickly for some users.
×
×
  • Create New...