I just installed a new Jasco Z-Wave Plus Fan Control 14314 / ZW4002. There is no speed control from the controller in my Home Assistant. The Device page shows the correct model but there is no way of adjusting the speed from the Card or dashboard. I have used these in HE and the driver provided the means to control speed from the dashboard. Any info appreciated.
Your screenshot shows the same fan entity I highlighted (under the Controls box). You can control on/off and fan speeds with it.
The device page is a basic collection of all the entities. If you want different controls, you can explore the various types of cards and build your dashboard. Dashboards - Home Assistant
1 Like
Thank you…I am a HE refugee and still learning the system. It is a real treat with so many options.
1 Like
Did you find a working solution? I had these set to buttons setting the basic fan speed entity that is now gone…
type: custom:button-card
color_type: null
color: null
show_state: true
size: 40%
icon: mdi:fan-speed-2
styles:
icon:
- color: |
[[[
if (states['number.family_room_fans_basic'].state == 60.0) return 'darkmagenta'; return 'slategrey';
]]]
tap_action:
action: call-service
service: number.set_value
service_data:
entity_id: number.family_room_fans_basic
value: 60
I am sure the color test and the tap action section were hosed. But can’t find any examples from after the update.