1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/* vim: set et sw=4 sts=4: */
digraph {
graph [rankdir=RL];
edge [arrowhead=normal, style=solid];
/* Devices */
node [shape=rect, style=filled, color="#2980b9", fontname=Arial, fontcolor="#ffffff", fontsize=10];
Robot
left [label="Left potentiometer"]
right [label="Right potentiometer"]
/* functions */
node [shape=oval, style=filled, color="#9ec6e0", fontcolor="#ffffff"];
zip
scaled_1 [label="scaled"]
scaled_2 [label="scaled"]
left -> scaled_1;
right -> scaled_2;
scaled_1 -> zip;
scaled_2 -> zip;
zip -> Robot;
}
|