#ifndef BOUNDARY_CHECK_HEADERFILE
#define BOUNDARY_CHECK_HEADERFILE

#include "Sensor.h"

bool is_it_higher_than_learned_boundary(Sensor* sensor, int score, int boundary);
bool is_it_higher_than_hardcoded_boundary(Sensor* sensor, int score, int boundary);

bool is_it_lower_than_learned_boundary(Sensor* sensor, int score, int boundary);
bool is_it_lower_than_hardcoded_boundary(Sensor* sensor, int score, int boundary);

bool is_it_higher_than_boundary(Sensor* sensor, int score, int boundary);
bool is_it_lower_than_boundary(Sensor* sensor, int score, int boundary);

#endif