Displaying Remaining Timer Value On Sitemap

Hi :slight_smile:

I want to display the remaining time left on a countdown timer on my sitemap.
Is there a way to display the delayTimer shown in my rule?

rule "Nilan Humidity OFF Forseret"
	when
        	Item Nilan_Control_VentSet changed from 2 to 4 

	then
		
 		delayTimer = createTimer(now.plusMinutes(20)) [|
  		sendCommand(Nilan_Control_VentSet, 2)
  		sendCommand(Smarthouse_Motorventil, OFF)
 		delayTimer = null 
 	        ]
end