/*----------------------------------------------------------------------------
**
**	Sensors.h
**	
**--------------------------------------------------------------------------*/

#ifndef SENSORS_H
#define SENSORS_H

void ProcessSensors(void);

enum
{
    RIGHT_WAY_UP,
    UPSIDE_DOWN
};
    

extern char WhichWayUp;


#endif