Skip to content

en Quick Start

YGlamazdin edited this page Nov 4, 2025 · 6 revisions

🌐 Русский | English

🧩 Quick Start

Welcome to the quick start guide for the se-grid-controller plugin for Space Engineers.

What is se-grid-controller?

The se-grid-controller plugin allows you to control devices on grids in Space Engineers via Redis and the secontrol client library. This includes device telemetry and command sending.

Installation

  1. Install the plugin on your dedicated Space Engineers server.
  2. Configure Redis for storing telemetry and commands.
  3. Install the secontrol client library in your Python project.

Basic Usage

  1. Connect to Redis.
  2. Create an instance of a device, such as a battery or cockpit.
  3. Read telemetry and send commands.

Example code:

from secontrol import BatteryDevice

# Create device
battery = BatteryDevice(device_id="battery_1", redis_client=redis)

# Read telemetry
telemetry = battery.telemetry

# Send command
battery.set_mode("auto")

For more detailed information, see API Description.

Clone this wiki locally