Custom button-card - Service to increase/decrease (cycle) fan speed based on current speed

I have a Levoit Air Purifier which is nicely integrated via the VeSync

Using the Custom Button Card I’ve created the card below which displays

  • Off
  • Auto
  • Fan Speed 1,2,3 (33%, 66%, 100%)
  • Air Quality

image
image
image

The Custom Button Card allows you to call Services via the ‘tap_action’

tap_action:
     action: call-service
     service: fan.increase_speed
     target:
     entity_id: fan.levoit_smart_true_hepa_air_purifier

I’ve tested both of these below in the Dev Tools > Services.
Both work.

However, I’m wanting to make the ‘tap_action’ increase the speed until 100%, then if at 100% when you press, it’ll lower until turning off. Once off, pressing will increase to 33% and so on…

service: fan.increase_speed
data: {}
target:
  entity_id: fan.levoit_smart_true_hepa_air_purifier
service: fan.decrease_speed
data: {}
target:
  entity_id: fan.levoit_smart_true_hepa_air_purifier

Has anyone done anything like this?