1
0
Fork 0
The documentation repository for the software projects developed for the 'Return to Ritherdon Project' by Nicola Ellis. http://www.nicolaellis.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

21 lines
468 B

digraph overview {
subgraph cluster0 {
label = "Main System";
fontname=Arial;
fontsize=20;
node [style=filled,color=white,fontname=Arial];
style=filled;
color=lightblue;
l1 -> Server -> r1;
l2 -> Server -> r2;
r1 -> Server;
r2 -> Server;
l1 [label = "Light Meter 1"];
l2 [label = "Light Meter 2"];
r1 [label = "Relay 1"];
r2 [label = "Relay 2"];
}
e -> Server;
Server -> e;
e [label = "Eyes and Ears",fontname=Arial;];
}