File: value_processing.dot

package info (click to toggle)
gpiozero 2.0.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,192 kB
  • sloc: python: 15,355; makefile: 246
file content (19 lines) | stat: -rw-r--r-- 462 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 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];

    output [label="Output device"]
    input [label="Input device"]

    /* functions */
    node [shape=oval, style=filled, color="#9ec6e0", fontcolor="#ffffff"];

    gen [label="custom generator"]

    input -> gen -> output;
}