Home QDmx ql console Developer
Introduction Guide Admin tool Observer Qt API Java API Command Line Interface Download
This page give you examples on how to use the Command Line Interface.
To be continued...
qdmx startserver
qdmx stopserver
qdmx ping
qdmx setupqdmxsv /path/to/qdmxsv
qdmx list
qdmx configure artnet:192.168.0.255:0:OUT
qdmx get dummy:0
qdmx startuniv 1 - or - qdmx startuniv artnet:192.168.0.255:0:OUT
qdmx setactive 1 12 - or - qdmx setactive artnet:192.168.0.255:0:OUT 12
qdmx setchannel 1 0 255 128 255 32 - or - qdmx setchannel artnet:192.168.0.255:0:OUT 0 255 128 255 32
qdmx stopuniv 1 - or - qdmx stopuniv artnet:192.168.0.255:0:OUT
#!/bin/bash UNIV="artnet:192.168.0.255:0:OUT" # Ensure that universe is configured qdmx get $UNIV if [ $? -ne 0 ]; then echo "Unable to configure !" exit 1 fi # Start universe : DMX will be send from this point qdmx startuniv $UNIV # Defines how many channels are used (to prevent transmiting 508 empty channels for nothing) qdmx setactive $UNIV 4 # Set channel1=128 channel2=255 channel3=255 channel4=128 qdmx setchannel $UNIV 0 128 255 255 128 sleep 1 qdmx setchannel $UNIV 0 255 255 128 128 sleep 1 qdmx setchannel $UNIV 0 255 128 128 255
(c) Copyright 2006, 2009 Julien Etelain. All rights reserved. - Icons (c) Copyright Everaldo.com