Envisalink Unique Entities

Hi, I was working on my Envisalink Integration. I was wondering if someone could point me in a direction for how to add in unique entity ID’s to the Envisalink configuration.

So far i have followed the default configuration here and have been able to see the binary sensors added to the lovelace UI.

Problem…
I am unable to use any of these sensors that are showing data in the Lovelace UI for any additional Automation (trying through UI). turning on lights etc…

I have referenced these two topics as well and so far i have not been able to get an understanding as to what my options are for using these sensors now that they are connected.

https://community.home-assistant.io/t/customizing-entity-on-ui-envisalink-honeywell-vista-20p-panel/214418/2make

i even tried to just throw unique id in there to no avail.

Thanks in advance

Here is my config.yaml for reference.

envisalink:
 # security.test
  host: 10.0.0.31
  user_name: !secret envisa_username
  password: !secret envisa_password
  panel_type: DSC
  code: !secret envisa_code
  port: 4025
  evl_version: 4
  keepalive_interval: 60
  zonedump_interval: 10
  timeout: 10
  zones:
    1:
      name: "1 - DriveWay SideDoor"
      type: "opening"
    2:
      name: "2 - Center Door"
      type: "opening"
    3:
      name: "3 - Patio Door"
      type: "opening"
    4:
      name: "4 - Garage Door"
      type: "opening"
    5:
      name: "5 - Detached Garage Door"
      type: "opening"
    6:
      name: "6 - Barn Entry Motion"
      type: "Motion6"
    7:
      name: "7 - Basement Bath"
      type: "opening"
    8:
      name: "8 - Garage Motion"
      type: "Motion"
    9:
      name: "9 - House Heat Detector"
      type: "opening"
    10:
      name: "10 - Game Room Door"
      type: "opening"
    11:
      name: "11 - Master Bedroom Door"
      type: "opening"
    12:
      name: "12 - Living Room Door"
      type: "opening"
    13:
      name: "13 - Game Room Motion"
      type: "motion"
    14:
#Verified
      name: "14 - Sitting Room"
      type: "motion"
    15:
      name: "15 - Living Room Motion"
      type: "opening"
    16:
      name: "16 - Garage Low Temp"
      type: "opening"
    17:
      name: "17 - Front Door"
      type: "opening"
  partitions:
    1:
      name: "Home Alarm"
    2:
      name: "Front Garage"
1 Like

You ask the developer to add support to the integration.

What I bet money you’re trying to do (because it was literally the second thing I tried to do when I added my Envisalink) is show doors like doors and windows like windows? Look up using customize.yaml to customize device_class. :wink:

1 Like

Thank you for pointing me in a direction. I will look into that.

Hey, do you have any sample code you can share for the customize.yaml I was trying to add in a unique ID but was only able to duplicate the sensor not add an id.
Thanks in advance

Most of my security is doors only. The end goal is to try to use it to create some automations with motion sensors and some Caseta lights

1 Like

So I was able to solve this by using the state automation where I was able to select what I was looking for.

can you share your code for state automation?

This is a screenshot hopefully that works, if not here is the YAML

description: “”
mode: single
trigger:

  • platform: state
    entity_id:
    • binary_sensor.12_living_room_door
      from: “off”
      to: “on”
      for:
      hours: 0
      minutes: 0
      seconds: 5
      condition: []
      action: []
      alias: New Automation

What made me confused originally was selecting the state field but needing to leaving some fields empty

@Elliptic6435 Are you saying that you worked around the unique_id issue by implementing state automations? You still were not able to assign a unique_id to the panel or the zones correct?