Z-Wave: customize: throwing an invalid config error

I’ve been having some trouble with GoControl LB602. After searching the forums it looks like others have had the same problem and found a solution.

However when I make the recommended changes to the configuration.yaml file it fails a validation check.

 zwave:
      usb_path: /dev/ttyACM0
      network_key: "_**MY KEY**_"
      customize:
        light.office_light_level:
          polling_intensity: 1
          refresh_value: true

This is the error I am receiving when running a configuration validation

 Failed config
          zwave: 
            customize: None
          light.office_light_level:
     [source/config/configuration.yaml:73]
              polling_intensity: 1
              refresh_value: True
            network_key: _**my key**_
            usb_path: /dev/ttyACM0

      General Errors: 
        - Setup failed for zwave: Invalid config.

I am running hass.io and the above posts predate hass.io if that changes anything.

There should be the actual error just above that piece you posted.

Also, you can enable polling through the control panel these days, so that might be easier.

What version are you on? customize is now device_config so if you are on a recent version you need to update that.

Yep that was it. Looked a bit further up the error log and I found:

2017-12-31 11:56:26 ERROR (MainThread) [homeassistant.config] Invalid config for [zwave]: [customize] is an invalid option for [zwave]. Check: zwave->zwave->customize. (See /config/configuration.yaml, line 69). Please check the docs at https://home-assistant.io/components/zwave/

Changing the line from customize: to device_config cleared the error.

Thanks for the insight.