"""
<describe what this module has/does>

Created on Sep 29, 2016.
Written by: david.
"""

class ArduinoRoseBot(object):
    """
    Allows direct access to Arduino:
      -- set pin
      -- read pin
      -- ???
    """


def main():
    """ Calls the   TEST   functions in this module. """
    pass


#-----------------------------------------------------------------------
# If this module is running at the top level (as opposed to being
# imported by another module), then call the 'main' function.
#-----------------------------------------------------------------------
if __name__ == '__main__':
    main()