Working deps

This commit is contained in:
Ian Gulliver
2026-01-28 21:39:48 -08:00
parent 9ecdd991b0
commit f4bc70363b
3 changed files with 16 additions and 9 deletions

View File

@@ -1,17 +1,19 @@
# DMX148 port 1: wash1
[[mapping]] [[mapping]]
from = "artnet:32.0.0" from = "artnet:50.0.10"
to = "sacn:32" to = "sacn:148"
# DMX148 port 2
[[mapping]] [[mapping]]
from = "artnet:34.0.0" from = "artnet:50.0.11"
to = "sacn:34" to = "sacn:150"
# lighting-1 port 1 # lighting-1 port 1
[[target]] [[target]]
universe = "artnet:0.0.0" universe = "sacn:1"
address = "10.50.1.64" address = "10.50.1.64"
[[target]] [[target]]
universe = "artnet:0.0.1" universe = "sacn:2"
address = "10.50.1.64" address = "10.50.1.64"
# lighting-1 port 2 # lighting-1 port 2
@@ -173,7 +175,7 @@ to = "artnet:0.0.14:1"
# 2P1 # 2P1
[[mapping]] [[mapping]]
from = "sacn:64:361-450" from = "sacn:64:361-450"
to = "artnet:0.0.0:1" to = "sacn:1:1"
# 2P2 # 2P2
[[mapping]] [[mapping]]

7
go.mod
View File

@@ -5,7 +5,10 @@ go 1.25.6
require ( require (
github.com/BurntSushi/toml v1.6.0 github.com/BurntSushi/toml v1.6.0
github.com/gopatchy/artnet v0.0.0-20260128203426-0a3e9b1daf66 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
)

2
go.sum
View File

@@ -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/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 h1:QZrypvWOUbZeJsFRRx8UXf+MUbvkF/WR2KvNUynWFTM=
github.com/gopatchy/artnet v0.0.0-20260128203426-0a3e9b1daf66/go.mod h1:V/D32mh1xfK/llCKbrqI2jxw4xL4hf6Ge2yLiIrp9/4= 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 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o=
golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8= golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8=
golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ= golang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=