Honeywell Z-wave thermostat-fan mode control?

@Chase84 Its been awhile… I used a virtual switch with the On State being labeled as Fan Circ and the Off State being Fan Auto. I then used a smartapp to change the thermostat.setThermostatFanMode between “circulate” and “auto” based on if the virtual switch was in the on or off position.

if (MasterV ==“off” ){
thermostat.setThermostatFanMode(“auto”)
if (MasterV ==“on” ){
thermostat.setThermostatFanMode(“circulate”)

I wish I could have toggled between off/auto/circ but I couldn’t figure out how to do that.

I’d share the code via github, but I’m not sure how to do that at the moment.