-
Notifications
You must be signed in to change notification settings - Fork 1
/
COLOR-FALL.ino
140 lines (127 loc) · 2.63 KB
/
COLOR-FALL.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include <Servo.h>
#include <Adafruit_TCS34725.h>
#include <ColorConverterLib.h>
#include <Wire.h>
// Objetos
Adafruit_TCS34725 tcs = Adafruit_TCS34725(TCS34725_INTEGRATIONTIME_50MS, TCS34725_GAIN_1X);
Servo servoColor;
Servo servoRampa;
String color;
// variables
#define sC 39
#define sR 38
void setup()
{
Serial.begin(9600);
servoColor.attach(sC);
servoRampa.attach(sR);
if (!tcs.begin())
{
Serial.println("Error al iniciar TCS34725");
while (1) delay(1000);
}
}
void loop()
{
iniciar();
color = medirColor();
if(color.equals("Rojo")){
servoRampa.write(30);
delay(500);
servoColor.write(73);
delay(500);
}else if(color.equals("Azul")){
servoRampa.write(70);
delay(500);
servoColor.write(73);
delay(500);
}else if(color.equals("Negro")){
servoRampa.write(110);
delay(500);
servoColor.write(73);
delay(500);
}/*else if(color.equals("Negro")){
servoRampa.write(150);
delay(500);
servoColor.write(73);
delay(500);
} */
delay(1000);
}
void iniciar(){
servoColor.write(175);
delay(1000);
}
String medirColor(){
uint16_t clear, red, green, blue;
servoColor.write(115);
delay(1500);
tcs.setInterrupt(false);
delay(500); // Cuesta 50ms capturar el color
tcs.getRawData(&red, &green, &blue, &clear);
tcs.setInterrupt(true);
// Hacer rgb medición relativa
uint32_t sum = clear;
float r, g, b;
r = red; r /= sum;
g = green; g /= sum;
b = blue; b /= sum;
// Escalar rgb a bytes
r *= 256; g *= 256; b *= 256;
// Convertir a hue, saturation, value
double hue, saturation, value;
ColorConverter::RgbToHsv(static_cast<uint8_t>(r), static_cast<uint8_t>(g), static_cast<uint8_t>(b), hue, saturation, value);
// Mostrar nombre de color
return printColorName(hue * 360);
}
String printColorName(double hue)
{
if (hue < 100)
{
Serial.println(hue);
Serial.println("Rojo");
return "Rojo";
}
/*else if (hue < 45)
{
Serial.println(hue);
Serial.println("Naranja");
return "Naranja";
}*/
/*else if (hue < 95)
{
Serial.println(hue);
Serial.println("Amarillo");
return "Amarillo";
}*/
/*else if (hue < 150)
{
Serial.println(hue);
Serial.println("Verde");
return "Verde";
}*/
else if (hue < 180)
{
Serial.println(hue);
Serial.println("Negro");
return "Negro";
}
else if (hue < 270)
{
Serial.println(hue);
Serial.println("Azul");
return "Azul";
}
/*else if (hue < 330)
{
Serial.println(hue);
Serial.println("Magenta");
return "Magenta";
}*/
/*else
{
Serial.println(hue);
Serial.println("NC");
return "NC";
}*/
}