mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 17:50:37 +00:00
20 lines
457 B
Plaintext
20 lines
457 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->PWMLED;
|
|
LEDBoard->LED;
|
|
LEDBoard->PWMLED;
|
|
LEDBarGraph->LED;
|
|
LEDBarGraph->PWMLED;
|
|
|
|
TrafficLightsBuzzer->TrafficLights;
|
|
TrafficLightsBuzzer->Buzzer;
|
|
TrafficLightsBuzzer->Button;
|
|
|
|
Robot->Motor;
|
|
}
|