OpenSensors - Expanding OpenComputers Capabilities
This modification introduces sensor blocks and interchangeable sensor cards that significantly broaden the informational capabilities of OpenComputers, allowing them to gather diverse data about the surrounding environment.
Currently, the world sensor is available - the primary device for obtaining environmental indicators and information about the game world.
Using simple commands, you can obtain various types of data:
component.open_sensor.info("biome",64,64) - determines the biome type at coordinates x:64, y:64 info("lightlevel",64,64,35) - shows the light level in block x:64, y:64, z:35 info("raining") - indicates whether it's raining (true/false) info("thundering") - detects the presence of thunderstorm (true/false) info("daytime") - shows whether it's currently daytime (true/false) info("moonphase") - provides the current moon phase info("celestialangle") - returns the celestial angle info("dimension") - determines the dimension identifier info("temperature",64,64) - measures the biome temperature at coordinates x:64, y:64 info("highhumidity",64,64) - checks high humidity of the biome at point x:64, y:64 info("humidity",64,64) - determines the biome humidity level at coordinates x:64, y:64