Created
April 24, 2021 13:53
-
-
Save makersenses/230f6b56e197cc5fef9f0a8078d3fb34 to your computer and use it in GitHub Desktop.
wifi_esp32_SHTC3_conditional_NeoPixel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Senses_wifi_esp32.h" | |
#include "Adafruit_SHTC3.h" | |
#include <Adafruit_NeoPixel.h> | |
int led_pin = 27; | |
int numPixels = 1; | |
int pixelFormat = NEO_GRB + NEO_KHZ800; | |
Adafruit_NeoPixel *pixels; | |
int control_port = 1; | |
const char *ssid = "your-wifi-network-name"; | |
const char *passw = "your-wifi-password"; | |
const char *userid = "your-senses-user-id"; | |
const char *key = "your-device-key"; | |
String response; | |
float t, h; | |
Senses_wifi_esp32 myiot; | |
Adafruit_SHTC3 shtc3 = Adafruit_SHTC3(); | |
void setup() { | |
Serial.begin(115200); | |
pixels = new Adafruit_NeoPixel(numPixels, led_pin, pixelFormat); | |
pixels->begin(); | |
if (! shtc3.begin()) { | |
Serial.println("Couldn't find SHTC3"); | |
while (1) delay(1); | |
} | |
Serial.println("Found SHTC3 sensor"); | |
response = myiot.connect(ssid, passw, userid, key); | |
Serial.println(response); | |
} | |
void loop() { | |
response = ""; | |
sensors_event_t humidity, temp; | |
shtc3.getEvent(&humidity, &temp); | |
t = temp.temperature; | |
h = humidity.relative_humidity; | |
Serial.println("Temperature is " + String(t) + " celcuis"); | |
Serial.println("Humidity is " + String(h) + " %RH"); | |
Serial.println("----------------------------------------"); | |
response = myiot.send(1, t); | |
Serial.println(response); | |
response = myiot.send(2, h); | |
Serial.println(response); | |
response = myiot.getDigitalControl(control_port); | |
Serial.println(response); | |
if (response == "on") | |
{ | |
pixels->setPixelColor(0, pixels->Color(255, 0, 0)); pixels->show(); delay(500); | |
} | |
else if (response == "off") | |
{ | |
pixels->clear(); pixels->show(); | |
} | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment