mirror of
				https://github.com/KevinMidboe/python-gpiozero.git
				synced 2025-10-29 17:50:37 +00:00 
			
		
		
		
	...along with the other necessary changes required, to allow them to optionally be used with non-PWM-capable pins
		
			
				
	
	
		
			23 lines
		
	
	
		
			534 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			534 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;
 | |
| 
 | |
|     TrafficLightsBuzzer->TrafficLights;
 | |
|     TrafficLightsBuzzer->Buzzer;
 | |
|     TrafficLightsBuzzer->Button;
 | |
| 
 | |
|     Robot->Motor;
 | |
|     Motor->DigitalOutputDevice;
 | |
|     Motor->PWMOutputDevice;
 | |
| }
 |