forked from fredlowe/HomeAutomationPrePaidElectricity1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLightSensor.cpp
More file actions
40 lines (31 loc) · 777 Bytes
/
LightSensor.cpp
File metadata and controls
40 lines (31 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//Include ArduPi library
#include "arduPi.h"
//Include the Math library
#include <math.h>
#define TH 690
/*********************************************************
* IF YOUR ARDUINO CODE HAS OTHER FUNCTIONS APART FROM *
* setup() AND loop() YOU MUST DECLARE THEM HERE *
* *******************************************************/
/**************************
* YOUR ARDUINO CODE HERE *
* ************************/
int main (){
setup();
while(1){
loop();
}
return (0);
}
void setup(void) {
}
void loop(void){
float analogReadingArduino;
analogReadingArduino = analogRead(5);
if(analogReadingArduino > TH){
printf("Getting lighter\n");
} else {
printf("Getting darker\n");
}
delay(3000);
}