User Tools

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
eos [2024/01/26 22:28] – [missing] ssm2017eos [2026/01/19 19:31] (current) – removed sxh ssm2017
Line 364: Line 364:
  
 ===== effects ===== ===== effects =====
 +usefull macro : "effect 1 Learn Time Sample BPM"
 ==== stop effect ==== ==== stop effect ====
  
Line 395: Line 395:
   * effect 2 : circle (attributes reverse / green arrow left down (mirror hor + mirror vert)   * effect 2 : circle (attributes reverse / green arrow left down (mirror hor + mirror vert)
   * macro 1 :   * macro 1 :
-<sxh>+<code>
 group 1 effect 1 group 1 effect 1
 group 2 offset reverse effect 2 group 2 offset reverse effect 2
-</sxh>+</code>
 === version bg === === version bg ===
 using same effects, need to set "Axis -10" to be very symetrical using same effects, need to set "Axis -10" to be very symetrical
-<sxh>+<code>
 Offset Num_Groups 2 Offset Num_Groups 2
 Next Effect 4 Next Effect 4
 Next Offset Reverse Effect 5 Next Offset Reverse Effect 5
-</sxh>+</code> 
 + 
 +=== version mega <del>bg</del> shlag === 
 +only working for 4 fixtures..... it is better to use version bg... 
 +source : https://youtu.be/JagsTbVKXPI?si=Ra53JlNqQgec5tjK 
 + 
 +<code> 
 +hardkey : tab 12 
 +chan 1 t 4 type ayrton eurus s basic 
 +-> panel augmented3d 
 +chan 1 thru 4 position */*/5 
 +chan 1 thtu 4 position */4/ 
 +chan 1 thru 4 position -4/*/thru 4/*/ 
 +hardkey esc 
 +chan 1 thru 4 record group 1 
 +group 1 @ full 
 +mouse : in augment3d tab, left click and maintain on the lead singer position until the machines are in place 
 +record focus palette 1 
 +effect effect 
 +901 copy to 901.1 
 +effect 901.1 reverse steps 
 +hardkey : esc 
 +g 1 a f f 
 +group 1 offset chan per group 2 
 +next 
 +group 1 offset chan per group 2: chan 1 thru 2 effect 901 
 +next 
 +group 1 offset chan per group 2: chan 3 thru 4 effect 901.1 
 +effect 901.1 axis -15 
 +record preset 10 plus fx 
 +ctrl+g+o+i+0 
 +g 1 alt+p 10 
 +</code>
 ===== a revoir ===== ===== a revoir =====
  
-  * block+  * <del>block</del>
   * autoblock   * autoblock
-  * assert+  * <del>assert</del>
  
 ===== missing ===== ===== missing =====
Line 419: Line 451:
   * small faders on big screen   * small faders on big screen
   * locked on "syntax error"   * locked on "syntax error"
-  * out*2 = out time 0 (same as full*2)+  * out out = out time 0
  
 ===== OSC ===== ===== OSC =====
 +[[https://www.etcconnect.com/WebDocs/Controls/EosFamilyOnlineHelp/en/Content/23_Show_Control/08_OSC/Using_OSC_with_Eos/OSC_Eos_Control.htm|Online doc]]
 ==== Tests ==== ==== Tests ====
-<sxh python>+<code python>
 client.send_message("/eos/cmd", "Tilt @ +0.1#") client.send_message("/eos/cmd", "Tilt @ +0.1#")
-</sxh>+</code>
 ==== Show Control ==== ==== Show Control ====
-<sxh python>+<code python>
 pip install python-osc pip install python-osc
 from pythonosc import udp_client from pythonosc import udp_client
Line 434: Line 467:
 client.send_message("/eos/cmd", "Event 1 _sACN 1 / 1#") client.send_message("/eos/cmd", "Event 1 _sACN 1 / 1#")
 client.send_message("/eos/cmd", "Event 1 Show_Control_Action Level_By_Address 1 / 1#") client.send_message("/eos/cmd", "Event 1 Show_Control_Action Level_By_Address 1 / 1#")
-</sxh>+</code> 
 +<code python> 
 +from pythonosc import udp_client 
 + 
 +input_universe = 1 
 +output_universe = 2 
 +event_list = "2" 
 +desk_ip = "192.168.0.100" 
 +client = udp_client.SimpleUDPClient(desk_ip,8000) 
 +client.send_message("/eos/cmd", "Delete Event " + event_list+ " /#") 
 +client.send_message("/eos/cmd", "Event " + event_list+ " /#") 
 +client.send_message("/eos/cmd", "Event " + event_list+ " / Network_Inputs#"
 +client.send_message("/eos/cmd", "Event " + event_list+ " / External Enable#"
 +for id in range(1,513): 
 +    input_address = str(((input_universe - 1) * 512) + id) 
 +    output_address = str(((output_universe - 1) * 512) + id) 
 +    client.send_message("/eos/cmd", "Event " + event_list+ " / " + input_address+ " _sACN "+ input_address+ "#"
 +    client.send_message("/eos/cmd", "Event " + event_list+ " / " + input_address+ " Show_Control_Action Level_By_Address "+ output_address +"#"
 +</code>
 ==== Faders ==== ==== Faders ====
 To use faders, we need to define a "virtual" fader page for osc containing a fixed number of faders and then use them to control real faders. To use faders, we need to define a "virtual" fader page for osc containing a fixed number of faders and then use them to control real faders.
 source : https://community.troikatronix.com/topic/5351/tutorial-how-to-do-fader-communication-with-etc-eos-lighting-desk-using-osc source : https://community.troikatronix.com/topic/5351/tutorial-how-to-do-fader-communication-with-etc-eos-lighting-desk-using-osc
-<sxh>+<code>
 /eos/fader/1/config/10 /eos/fader/1/config/10
 /eos/user/2/fader/1/1 = 0.5 /eos/user/2/fader/1/1 = 0.5
-</sxh>+</code>

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also, you acknowledge that you have read and understand our Privacy Policy. If you do not agree, please leave the website.

More information