ESPeasy rules //GIO14 == Relay 1 = blauw //GPIO12 == Relay 2 = geel //GPIO13 == Relay 3 = oranje on IGNITION do // Close relays contacts gpio,14,1 gpio,13,1 timerSet 1,1 // 1 second delay Publish,/fireplace/status,event,IGNITION endon On Rules#Timer=1 do ///Open relays contacts gpio,14,0 gpio,12,0 gpio,13,0 endon on FIRE_OFF do // Close relays contacts gpio,14,1 gpio,12,1 gpio,13,1 timerSet 1,1 // 1 second delay Publish,/fireplace/status,event,FIRE_OFF endon on SECONDBURNER_ON do // Close relays contacts gpio,14,1 gpio,12,1 timerSet 1,1 // 1 second delay Publish,/fireplace/status/centerfire,event,SECONDBURNER_ON endon on SECONDBURNER_OFF do // Close relays contacts gpio,12,1 gpio,13,1 timerSet 1,1 // 1 second delay Publish,/fireplace/status/centerfire,event,SECONDBURNER_OFF endon on INCREASE_FIRE do // Close relays contacts gpio,14,1 timerSet 1,3 // 1 second delay endon on DECREASE_FIRE do // Close relays contacts gpio,13,1 timerSet 1,3 // 1 second delay endon