mirror of
				https://github.com/KevinMidboe/python-gpiozero.git
				synced 2025-10-29 17:50:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			440 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			440 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from gpiozero import LEDBoard, MotionSensor
 | 
						|
from gpiozero.pins.pigpio import PiGPIOFactory
 | 
						|
from signal import pause
 | 
						|
 | 
						|
ips = ['192.168.1.3', '192.168.1.4', '192.168.1.5', '192.168.1.6']
 | 
						|
remotes = [PiGPIOFactory(host=ip) for ip in ips]
 | 
						|
 | 
						|
leds = LEDBoard(2, 3, 4, 5)  # leds on this pi
 | 
						|
sensors = [MotionSensor(17, pin_factory=r) for r in remotes]  # remote sensors
 | 
						|
 | 
						|
for led, sensor in zip(leds, sensors):
 | 
						|
    led.source = sensor.values
 | 
						|
 | 
						|
pause()
 |