summaryrefslogtreecommitdiff
path: root/durt/nodes/(-2084,9,918).lua
blob: ae8e76f1cdfef7a2e49353804eeeb1275097b450 (plain)
1
if event.type=="digiline" then
	if event.channel ~= "trainctl" then return end
	if event.msg == "send" then
		setstate(POS(-2085,11,918),"green")
		if atc_id and atc_arrow then
			atc_send("B5S5")
		elseif atc_id and atc_arrow == false then
			atc_send("B0S0WRS5")
		end
		interrupt(10,"clear_signal")
		return
	elseif event.msg == "open" then
		setstate(POS(-2085,11,918),"green")
		return
	elseif event.msg == "close" then
		setstate(POS(-2085,11,918),"red")
		return
	end
	return
end
if event.type=="int" then
	if event.msg=="clear_signal" then
		setstate(POS(-2085,11,918),"red")
	end
	return
end