Enerwave RSM2 Zwave Relay status update issue

Hi,

I am running HASS on RPi3 with Aeon Z-Stick Gen 5. I used All in one installer to setup Hass.

I have Enerwave RSM2 Relays and each relay is handling 2 loads. This relay are wired to manual wall switches as well in order to switch the load on/off manually.

Every thing is working but there is one issue. When I turn the load on or off using manual wall switch the status on Hass UI is not updated.I tried polling interval & polling intensity but nothing works. It still shows the last known status.

For example when I switch on the light with manual switch Hass UI shows the light is still off.

Below is my configuration.yaml:

homeassistant:
  # Name of the location where Home Assistant is running
  name: Home
  # Location required to calculate the time the sun rises and sets
  latitude: 20
  longitude: 77
  # Impacts weather/sunrise data (altitude above sea level in meters)
  elevation: 491
  # metric for Metric, imperial for Imperial
  unit_system: metric
  # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  time_zone: Asia/Kolkata
  customize:
    switch.mb_switch_1_switch_2_0:
      hidden: true
      polling_intensity: 1
    switch.mb_switch_1_switch_2_0_3:
      friendly_name: MB Fan
      polling_intensity: 1
    switch.mb_switch_1_switch_2_0_2:
      friendly_name: MB Light 1
      polling_intensity: 1
    media_player.master_bedroom_home:
      friendly_name: Google Home
    media_player.denon_avrx1200w:
      friendly_name: Denon AVR x1200
    media_player.bedroom:
      friendly_name: Mi Box

# Show links to resources in log and frontend
#introduction:

# Enables the frontend
frontend:

# Enables configuration UI
config:

http:
  # Uncomment this to add a password (recommended!)
  # api_password: PASSWORD
  # Uncomment this if you are using SSL or running in Docker etc
  # base_url: example.duckdns.org:8123

# Checks for available updates
updater:

# Discover some devices automatically
discovery:

# Allows you to issue voice commands from the frontend in enabled browsers
conversation:

# Enables support for tracking state changes over time.
history:

# View all events in a logbook
logbook:

# Track the sun
sun:

# Weather Prediction
sensor:
  platform: yr

# Text to speech
tts:
  platform: google

mqtt:
  broker: 127.0.0.1
  port: 1883
  client_id: home-assistant-1
  username: pi
  password: raspberry

media_player:
  - platform: cast


zwave:
  usb_path: /dev/ttyACM0
  config_path: /srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/libopenzwave-0.3.2-py3.4-linux-armv7l.egg/config
  polling_interval: 40000

group:
  default_view:
    view: yes
    entities:
      - group.master_bedroom
  master_bedroom:
    name: Master Bedroom
    entities:
      - switch.mb_switch_1_switch_2_0_2
      - switch.mb_switch_1_switch_2_0_3
      - media_player.bedroom
      - media_player.denon_avrx1200w
      - media_player.master_bedroom_home

Can someone please help me in correcting my configuration so I can resolve this issue.

I resolved this with the help of community. Thanks all who helped.

Please refer to my last post on the below thread for resolution.

Thanks !! HA community rocks …