-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab03-Master.ino
78 lines (65 loc) · 1.83 KB
/
Lab03-Master.ino
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include <Wire.h>
const int tempSensor = A0;
const int lightSensor = A1;
const int angleSensor = A3;
int tempRead = 0;
int lightRead = 0;
int angleRead = 0;
int lastTempRead = -1;
int lastLightRead = -1;
int lastAngleRead = -1;
int lightReadMinValue = 1023; //Start on max
int lightReadMaxValue = 0; //Start on min
float temperature = 0;
int light = 0;
int angle = 0;
void setup() {
// Start Wire Connection
Wire.begin();
// Calibrate Light Sensor
// Calibration During the First Three Seconds
while (millis() < 3000) {
lightRead = analogRead(lightSensor);
// Record the Maximum Value Read
if (lightRead > lightReadMaxValue) {
lightReadMaxValue = lightRead;
}
// Record the Minimum Value Read
if (lightRead < lightReadMinValue) {
lightReadMinValue = lightRead;
}
}
}
void loop() {
// Temperature
tempRead = analogRead(tempSensor); // Read Temperature
if (lastTempRead != tempRead) {
temperature = (((tempRead / 1024.0) * 5.0 ) - 0.5) * 100;
Wire.beginTransmission(8);
Wire.write("T");
Wire.write((int)temperature);
Wire.endTransmission();
lastTempRead = tempRead;
}
// Light
lightRead = analogRead(lightSensor); // Read Light
if(lastLightRead != lightRead) {
light = map(lightRead, lightReadMinValue, lightReadMaxValue, 255, 0); // Convert Analog Value
light = constrain(light, 0, 255);
Wire.beginTransmission(8);
Wire.write("L");
Wire.write(light);
Wire.endTransmission();
lastLightRead = lightRead;
}
// Potentiometer
angleRead = analogRead(angleSensor); // Read Angle
if (lastAngleRead != angleRead) {
angle = map(angleRead, 0, 1023, 0, 180); // Map Read Value to Angle
Wire.beginTransmission(8);
Wire.write("A");
Wire.write(angle);
Wire.endTransmission();
lastAngleRead = angleRead;
}
}