#!/usr/bin/python
import pibrella
import time

pibrella.output.e.on()

while True:
  if pibrella.input.a.read():
    print "I saw you move!"
  else:
    print "No movement."
  time.sleep(0.25)
