Created
December 8, 2011 16:48
-
-
Save ramalho/1447561 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from jrelogio import Relogio | |
| rel = Relogio() | |
| rel.start() | |
| from java.awt import * | |
| rel.mostrador.foreground = Color.RED | |
| print rel.mostrador.text | |
| from time import sleep | |
| while True: | |
| if rel.mostrador.text.endswith('0'): | |
| print 'PING', rel.mostrador.text | |
| sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment