OLED / DHT22 / thnikspeak / OLED big font

Knihovna: https://github.com/ThingPulse/esp8266-oled-ssd1306/tree/e2286ba37b4454fd2e0e22697a522ac222ffadbc Užití: https://techtutorialsx.com/2019/03/09/esp32-arduino-ssd1306-changing-font-size/     Nutno jestě upravit – aktuálně zobrazuje pouze venkovní teplotu. #include <Wire.h> #include <DHT.h> #include <ESP8266WiFi.h> //#include <ACROBOTIC_SSD1306.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define OLED_RESET LED_BUILTIN Adafruit_SSD1306 display(OLED_RESET); // replace with your channel’s thingspeak API key, String apiKey = „yyyyyyy“; String apiKey2 = „xxxxxx“; const char* ssid = „Brno4“; const char* … Číst dál

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