Skip to content

Instantly share code, notes, and snippets.

@kcranley1
Last active August 29, 2015 13:57
Show Gist options
  • Save kcranley1/9408012 to your computer and use it in GitHub Desktop.
Save kcranley1/9408012 to your computer and use it in GitHub Desktop.
My version of monitor_ultrasonic.py
#! /usr/bin/env python
# monitor_ultrasonic.py
import time
import pibot
bot = pibot.PiBot()
while True:
print "Distance is", bot.getUltrasonicDistance()
time.sleep( 0.1 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment