void main() {
  setup_robot(1, 15);
  while (1) {
    if (get_ir())
      beep();
    if (digital(15))
      printf("*****");
    sleep(.1);
  }
}
