Adding a sleep to the pronserve startup. Seems to be fixing an intermittent bug where the printer wouldn't respond to temperature requests

master
D1plo1d 2013-04-10 23:04:52 -04:00
parent b9a358a6a6
commit 7264c5e1c6
1 changed files with 2 additions and 0 deletions

View File

@ -231,6 +231,8 @@ class Pronserve(pronsole.pronsole):
print "Pronserve is starting..."
pronserve = Pronserve()
pronserve.do_connect("")
time.sleep(0.2)
pronserve.run_sensor_loop()
if __name__ == "__main__":