mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 17:50:37 +00:00
Nothing special (no recipes yet); just add the stuff necessary to the reST to pull it from source and add it to the diagrams
25 lines
560 B
Plaintext
25 lines
560 B
Plaintext
/* vim: set et sw=4 sts=4: */
|
|
|
|
digraph classes {
|
|
graph [rankdir=TB];
|
|
node [shape=rect, style=filled, color="#298029", fontname=Sans, fontcolor="#ffffff", fontsize=10];
|
|
edge [arrowhead=onormal, style=dashed];
|
|
|
|
RGBLED->LED;
|
|
RGBLED->PWMLED;
|
|
LEDBoard->LED;
|
|
LEDBoard->PWMLED;
|
|
LEDBarGraph->LED;
|
|
LEDBarGraph->PWMLED;
|
|
|
|
ButtonBoard->Button;
|
|
|
|
TrafficLightsBuzzer->TrafficLights;
|
|
TrafficLightsBuzzer->Buzzer;
|
|
TrafficLightsBuzzer->Button;
|
|
|
|
Robot->Motor;
|
|
Motor->DigitalOutputDevice;
|
|
Motor->PWMOutputDevice;
|
|
}
|