blob: 9ecf34cebc7e72a466a183cecab273f888d733ec (
plain)
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
|
#include <FastLED.h>
#include <Adafruit_Sensor.h>
#include <DHT.h>
#define DHTPIN 2 // what digital pin we're connected to
#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321
DHT dht(DHTPIN, DHTTYPE);
const int analogInPin = A0; // Analog input pin that the LDR is attached to
#define NUM_LEDS 1
#define DATA_PIN 11
#define CLOCK_PIN 12
CRGB leds[NUM_LEDS];
CHSV temp;
byte counter;
void setup()
{
FastLED.addLeds<APA102, DATA_PIN, CLOCK_PIN>(leds, NUM_LEDS );
}
void loop()
{
delay(2000);
int ldrValue = analogRead(analogInPin);
int humidity = dht.readHumidity();
if (ldrValue > 1012) {
temp.val = 0;
} else {
temp.val = 255;
}
if( humidity < 35 ) {
temp.hue = HUE_RED;
} else if(humidity > 60) {
temp.hue = HUE_BLUE;
} else {
temp.hue = map(humidity, 35, 60, HUE_RED, HUE_AQUA);
}
temp.s = 255;
leds[0] = temp;
FastLED.show();
}
|