Bridges CC: Tweaked computers with the Dyson Cube Project — monitor and automate your Dyson Sphere via Lua.
Place a Dyson Data Connector next to a Ray Receiver or EM Rail Ejector and connect it to any CC: Tweaked computer. The block exposes all live Dyson Sphere statistics as Lua functions, enabling full monitoring.
setSphereId() for multi-sphere setupslocal conn = peripheral.find("dyson_data_connector")
-- or: peripheral.wrap("right")
conn.getSphereId() --> "sphere-0" (nil if not linked)
conn.setSphereId("sphere-0") -- manual override
conn.clearSphereId() -- back to auto-detect
conn.getSails() --> 1500 (launched Solar Sails)
conn.getBeams() --> 200 (Structural Beams)
conn.getMaxSails() --> 2000 (capacity at current beams)
conn.getProgress() --> 0.75 (0.0 – 1.0)
conn.getStoredPower() --> 1200000 (FE)
conn.isGeneratingPower() --> true
conn.getGenerationRate() --> 30000 (FE/t)
conn.getAllSphereIds() --> { "sphere-0", "sphere-1" }
Add a polished block model created with unique textures, and fix known bugs.