Artnet
The Artnet visualization device interface allows to connect any Artnet compatible controller
Connect your Artnet controller
Art-Net was created to overcome the channel restriction of DMX while still using its structure. Artnet is transported via ethernet and therefore you need to connect your Artnet controller to your raspberry pi with an ethernet cable.
Configuration
NOTE: This instruction just outlines the general approach on how to setup an artnet connection. easyvis.io will not guarantee its correctness and is not responsible for your setup. If you are in doubt on your setup, consult professional help from an electrical expert.
With the easyvis.io artnet output you can control multiple artnet universes. To configure your artnet device either use the easyvis.io console or directly the API.
You need to define the following (details):
- Network settings to which the artnet should output (IP, netmask)
- Outputs for artnet
Example Artnet Configuration
{
"id": "CrawXg-142119",
"label": "Testdevice",
"configuration": {
"outputConfiguration": {
"ip": "192.168.1.1",
"netmask": "255.255.255.0"
},
"outputs": [
{
"id": "light0",
"type": "ARTNET",
"config": {
"width": 15,
"height": 1,
"startX": 0,
"startY": 0,
"pattern": "ZIGZAG_INVERTED",
"orientation": 0,
"universe": 0
}
},
{
"id": "light1",
"type": "ARTNET",
"config": {
"width": 15,
"height": 1,
"startX": 0.3,
"startY": 0.3,
"pattern": "ZIGZAG",
"orientation": 0,
"universe": 1
}
}
]
}
},