From f4bc70363b4ec5cc5ce57e3caeafb56295e12947 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Wed, 28 Jan 2026 21:39:48 -0800 Subject: [PATCH] Working deps --- config.toml | 16 +++++++++------- go.mod | 7 +++++-- go.sum | 2 ++ 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/config.toml b/config.toml index 8a95245..39ec7e2 100644 --- a/config.toml +++ b/config.toml @@ -1,17 +1,19 @@ +# DMX148 port 1: wash1 [[mapping]] -from = "artnet:32.0.0" -to = "sacn:32" +from = "artnet:50.0.10" +to = "sacn:148" +# DMX148 port 2 [[mapping]] -from = "artnet:34.0.0" -to = "sacn:34" +from = "artnet:50.0.11" +to = "sacn:150" # lighting-1 port 1 [[target]] -universe = "artnet:0.0.0" +universe = "sacn:1" address = "10.50.1.64" [[target]] -universe = "artnet:0.0.1" +universe = "sacn:2" address = "10.50.1.64" # lighting-1 port 2 @@ -173,7 +175,7 @@ to = "artnet:0.0.14:1" # 2P1 [[mapping]] from = "sacn:64:361-450" -to = "artnet:0.0.0:1" +to = "sacn:1:1" # 2P2 [[mapping]] diff --git a/go.mod b/go.mod index 5c946a7..8ac2460 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,10 @@ go 1.25.6 require ( github.com/BurntSushi/toml v1.6.0 github.com/gopatchy/artnet v0.0.0-20260128203426-0a3e9b1daf66 - golang.org/x/net v0.49.0 + github.com/gopatchy/sacn v0.0.0-20260129053634-d5ca321a4c1b ) -require golang.org/x/sys v0.40.0 // indirect +require ( + golang.org/x/net v0.49.0 // indirect + golang.org/x/sys v0.40.0 // indirect +) diff --git a/go.sum b/go.sum index d5612d5..113d53f 100644 --- a/go.sum +++ b/go.sum @@ -2,6 +2,8 @@ github.com/BurntSushi/toml v1.6.0 h1:dRaEfpa2VI55EwlIW72hMRHdWouJeRF7TPYhI+AUQjk github.com/BurntSushi/toml v1.6.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= github.com/gopatchy/artnet v0.0.0-20260128203426-0a3e9b1daf66 h1:QZrypvWOUbZeJsFRRx8UXf+MUbvkF/WR2KvNUynWFTM= github.com/gopatchy/artnet v0.0.0-20260128203426-0a3e9b1daf66/go.mod h1:V/D32mh1xfK/llCKbrqI2jxw4xL4hf6Ge2yLiIrp9/4= +github.com/gopatchy/sacn v0.0.0-20260129053634-d5ca321a4c1b h1:NwIoFlXTUZc+WuvBpoYBgu2hBp0maWL8vdXFXpXG88g= +github.com/gopatchy/sacn v0.0.0-20260129053634-d5ca321a4c1b/go.mod h1:mFF+CN4mU8ITvXxldfyUFvS17jXiMJgR393Owfwh3gI= golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o= golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8= golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=