from machine import Pin
from time import sleep

#recibir datos del sensor de movimiento 
PIR = Pin(12, Pin.IN, Pin.PULL_UP)

while True:
  Valor_PIR = PIR.value()
  print(PIR.value())
  sleep (1)