NodeMCU / 2x DTH / 1x OLED / Thinkspeak

Načítá teploty ze 2 čidel, posílá na thinkspeak a zobrazuje na OLED displeji   #include <Wire.h> #include <DHT.h> #include <ESP8266WiFi.h> #include <ACROBOTIC_SSD1306.h> // replace with your channel’s thingspeak API key, String apiKey = „DTQ**********“; String apiKey2 = „HE5**********“; const char* ssid = „Brno4“; const char* password = „**********“; const char* server = „api.thingspeak.com“; #define DHTPIN … Číst dál

2x DHT 22 / NodeMCU

2x čídlo DHT 22 s odeslání do 2 channelů na thingspeak   #include <DHT.h> #include <ESP8266WiFi.h> // replace with your channel’s thingspeak API key, String apiKey = „DTQNRNBI0LZ9641J“; String apiKey2 = „HE5YAU8QBYWZV4UH“; const char* ssid = „Brno4“; const char* password = „Zakosteli63“; const char* server = „api.thingspeak.com“; #define DHTPIN D2 // D1 pin on Nodemcu … Číst dál

DTH22 + thingspeak

Odeslání na známý server: #include <DHT.h> #include <ESP8266WiFi.h> // replace with your channel’s thingspeak API key, String apiKey = „DTQNRNBI0LZ9****“; const char* ssid = „Brno****“; const char* password = „Za*******“; const char* server = „api.thingspeak.com“; #define DHTPIN 4 // D2 pin on Nodemcu DHT dht(DHTPIN, DHT22, 11); WiFiClient client; void setup() { Serial.begin(115200); delay(10); dht.begin(); … Číst dál

DTH22 + serial port

DTH je čislo teploty a vlhkosti. Já ho mám jako variantu AM2302 (napájenou na destičce s odporem…)     INSTALACE KNIHOVNY DTH 1) DHT sensor library 2) Adafruit Unifield Sensor Sériový monitor je potřeba manstavit na 9600kbps   /** * Example for reading temperature and humidity * using the DHT22 and ESP8266 * * Copyright … Číst dál