Final Project files for mBed development.

Dependencies:   m3pi mbed

control.h

Committer:
lsaristo
Date:
2014-11-15
Revision:
10:94b068b2ce1d
Child:
14:41fa8b95a9ab

File content as of revision 10:94b068b2ce1d:

/**
 * @file    control.h
 * @brief   Header file specific to control algorithms.
 * @author  John Wilkey
 */
 
#ifndef _CONTROL_H
#define _CONTROL_H

#include <vector>
#define _CANVAS_FILE "/local/canvas.ps"

/**
 * @brief               Get the formatted file contents from local file.
 * @param[out]  moves   A pointer to the character array of moves
 */
void get_ps_file(char* moves);
 
/** 
 * @brief   A main loop for robot control. Main algorithm for control
 *          should start here
 */
void robot_loop(); 

#endif