From a7d2a83aba276f213ae3d1e36c6a7d39de865956 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Mon, 22 Dec 2025 09:42:08 -0800 Subject: [PATCH] Document indexing conventions in example config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Universe: 0-indexed (net.subnet.universe) - Channels: 1-indexed (1-512), matching DMX convention 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- config.example.toml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/config.example.toml b/config.example.toml index 7339c4e..e359ed8 100644 --- a/config.example.toml +++ b/config.example.toml @@ -5,15 +5,20 @@ # from: universe[:channels] - range specifies which channels to read # to: universe[:channel] - single channel specifies where to start writing # +# Universe: "net.subnet.universe" or plain number (all 0-indexed, 0-127.0-15.0-15) +# Channels: 1-indexed (1-512), matching DMX convention +# # From examples: -# "0.0.1" - all channels (1-512) -# "0.0.1:50" - channel 50 only -# "0.0.1:50-" - channels 50-512 -# "0.0.1:50-100" - channels 50-100 +# "0.0.1" - universe 1, all channels (1-512) +# "0.0.1:50" - universe 1, channel 50 only +# "0.0.1:50-" - universe 1, channels 50-512 +# "0.0.1:50-100" - universe 1, channels 50-100 +# 1 - universe 1, all channels +# "1:50-100" - universe 1, channels 50-100 # # To examples: -# "0.0.1" - starting at channel 1 -# "0.0.1:50" - starting at channel 50 +# "0.0.1" - universe 1, starting at channel 1 +# "0.0.1:50" - universe 1, starting at channel 50 # Remap entire universe [[mapping]]