File: input_device_hierarchy.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 (28 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
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
27
28
digraph classes {
    graph [rankdir=RL];
    node [shape=rect, style=filled, fontname=Sans, fontsize=10];
    edge [];

    /* Mixin classes */
    node [color="#c69ee0", fontcolor="#000000"]

    

    /* Abstract classes */
    node [color="#9ec6e0", fontcolor="#000000"]

    GPIODevice;
    SmoothedInputDevice;

    /* Concrete classes */
    node [color="#2980b9", fontcolor="#ffffff"];

    Button->DigitalInputDevice;
    DigitalInputDevice->InputDevice;
    DistanceSensor->SmoothedInputDevice;
    InputDevice->GPIODevice;
    LightSensor->SmoothedInputDevice;
    LineSensor->SmoothedInputDevice;
    MotionSensor->SmoothedInputDevice;
    SmoothedInputDevice->InputDevice;
}