#ifndef __PHOTORESISTOR_H__
#define __PHOTORESISTOR_H__

// photo resistor settings
#define PR_AVERAGES  10
#define PR_THRESHOLD 10

// photo resistor functions
int is_dark();
void sleep_8s();
unsigned int get_random_seed();

#endif
