Welcome to 2021¶

Shutdown -- the Right Way¶

New Python Code Editor¶


#!/bin/python3

# Our team's simple test module

from gpiozero import Robot
import time

robby = Robot(left=(7, 8), right=(9, 10))

robby.forward()
time.sleep(20)
robby.stop()

Thinking In Python (little-by-little)¶


# Our team's simple test module
a = 1 # this is also a comment
'''
this is also comment
that fits on multiple
lines 

:)
'''

Thinking In Python (little-by-little)¶


# Our team's simple test module
from gpiozero import Robot
import time
robby = Robot(left=(7, 8), right=(9, 10))
robby.forward()
time.sleep(20)
robby.stop()

In [ ]: