OK, here's what I have. I only care about the arms and the head. I don't really care about the hands, but have left them in just in case I add motion to those in the future. As a reminder, I am using this to program lifesize skeleton animatronic props. They are static except for the arms and the heads. The bodies are clamped to stands, so there no way for them to move their legs, torso, the dorsal area, or anything else other than the two arms and 3 axis motion of the head (and their jaw, but that is being handled in a different way).
I will post what I did to modify the xml file, and would ask that someone verify that it would indeed work, or if I removed too much of the main structure and would cause it to crash.
I also have questions about the IP address embedded in the xml file. Is that supposed to be an address in my local system? Is is supposed to be the address of the device running blender, or the Pi? I ask because it looks like a local network address, but it is certainly not my local network address.
My final question is do I name this file something unique, and save it to the notochord/bin directory? I don't know the SSH command to move or copy files, so I would need that. Once in the correct directory, I assume I would follow those numbered directions in my previous post from yesterday and use the -c command just modifying it to reflect the new filename I create. Does all that sound right?
Here is the modified xml file I created
This is the text from it, in case it didn't show up in a readable format:
<!-- Chordata.xml -->
<Chordata version="0.1.0">
<Configuration>
<KC_revision> 2 </KC_revision>
<Communication>
<Adapter>
/dev/i2c-1
</Adapter>
<Ip>
192.168.85.123
</Ip>
<Port>
6565
</Port>
<Log>
stdout,file
</Log>
<Transmit>
osc
</Transmit>
<Send_rate>
50
</Send_rate>
<Verbosity>
0
</Verbosity>
</Communication>
<Osc>
<Base>
/Chordata
</Base>
</Osc>
<Fusion>
<Beta_start>
1.0
</Beta_start>
<Beta_final>
0.2
</Beta_final>
<Time>
5000
</Time>
</Fusion>
</Configuration>
<Armature>
<Mux Name="main" id="0">
0x73
<Branch Name="left_arm" id="1">
CH_1
<K_Ceptor Name="l-forarm" id="2">
0
<K_Ceptor Name="l-arm" id="2">
1
<K_Ceptor Name="l-hand" id="2">
2
</K_Ceptor>
</K_Ceptor>
</K_Ceptor>
</Branch>
<Branch Name="body" id="1">
CH_2
<K_Ceptor Name="head" id="2">
2
</K_Ceptor>
</Branch>
<Branch Name="right_arm" id="1">
CH_3
<K_Ceptor Name="r-forarm" id="2">
0
<K_Ceptor Name="r-arm" id="2">
1
<K_Ceptor Name="r-hand" id="2">
2
</K_Ceptor>
</K_Ceptor>
</K_Ceptor>
</Branch>
</Mux>
</Armature>
</Chordata>
Thank you!