Difference between revisions of "Digiline HV reactor monitor"

From Pandorabox
Jump to navigation Jump to search
m
 
Line 41: Line 41:
 
[[Category:Digiline]]
 
[[Category:Digiline]]
 
[[Category:Lua controller]]
 
[[Category:Lua controller]]
 +
[[Category:Code Snippet]]

Latest revision as of 15:37, 29 March 2025

Overview

Howto for a Digiline controlled HV Reactor monitor. Polls a Node detector periodically and sets a green or red lightstone if the reactor is on or off.

Lua Controller

if event.type == "interrupt" then
 digiline_send("sensor", "GET")
 interrupt(5)
end

if event.type == "program" then
 interrupt(1)
end

if event.type == "digiline" and event.channel == "sensor" then
 if event.msg == "technic:hv_nuclear_reactor_core_active" then
  port.a = false
  port.c = true
 else
  port.a = true
  port.c = false
 end
end

Setup

The Node detector has a range of 3 blocks and listens on the channel "sensor"