GE 26931 Motion Switch Automation capabilities

My use case for this sensor is as a switch for a hallway, that I would like to operate only during the night. As such, I would need an automation in HA that allows me to change the operating mode of the switch (from occupancy mode to manual mode) during the day. Is the operating mode open to HA?

I know the motion sensor is local and does not report back its status to HA so wondering if there are additional limitations that would prevent me from implementing my use case

cheers

Yeah, this was a feature request from the wife, been working great for months now.

automation.yaml

- id: '1533422661664'
  alias: Tasks executed at sunset
  trigger:
  - event: sunset
    platform: sun
  condition: []
  action:
  - data:
      node_id: 9
      parameter: 3
      value: Occupancy
    service: zwave.set_config_parameter
- id: '1533422763949'
  alias: Tasks executed at sunrise
  trigger:
  - event: sunrise
    offset: +01:00:00
    platform: sun
  condition: []
  action:
  - data:
      node_id: 9
      parameter: 3
      value: Manual
    service: zwave.set_config_parameter