Labs
Programming Languages Labs
Project: Base Code Hello
root@board:~# cd TheIoTLearningInitiative/InternetOfThings101
root@board:~/TheIoTLearningInitiative/InternetOfThings101# root@board:~/TheIoTLearningInitiative/InternetOfThings101# vi main.py#!/usr/bin/python
import time
if __name__ == '__main__':
while True:
print "Hello Internet of Things 101"
time.sleep(5)
# End of FileProject: Signal Handler
Last updated