-
Notifications
You must be signed in to change notification settings - Fork 0
en Quick Start
YGlamazdin edited this page Nov 4, 2025
·
6 revisions
🌐 Русский | English
Welcome to the quick start guide for the se-grid-controller plugin for Space Engineers.
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.
- Install the plugin on your dedicated Space Engineers server.
- Configure Redis for storing telemetry and commands.
- Install the
secontrolclient library in your Python project.
- Connect to Redis.
- Create an instance of a device, such as a battery or cockpit.
- 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.