#ifndef MAIN_H_
#define MAIN_H_

#define ROWS 320
#define COLUMNS 240
#define BOX_ROWS 10
#define BOX_COLUMNS 10
#define HORIZONTAL_BOXES 32
#define VERTICAL_BOXES 24

#define PIXEL_DIFFERENCE_THRESHOLD 4096 /* For single pixel = 16, double = 4096 (currently established at 3000) */
#define ERROR_PERCENTAGE_THRESHOLD 10 /* 10 = less issues after, 5 = more */

#define MAX_CHAR_VALUE 255

/* Function Prototypes */
void detectMotion();

#endif /*MAIN_H_*/
