Wifi + OLED + serial + HTTP GET

Vyčte hodntoy z webu a zobrazí na OLED displeji:   /* 2017_10_17 Author: Makerbro + mhr2017 Platforms: ESP8266 Language: C++ File: HelloOLED.ino ———————————————————————— Description: Demo for OLED display showcasing writing text to the screen. ———————————————————————— Please consider buying products from ACROBOTIC to help fund future Open-Source projects like this! We’ll always put our best effort … Číst dál

Wifi + OLED + sériový monitor

Připojení k wifi + zobrazení na OLED + sériovém monitoru           /* 2017_10_17 */ #include <Wire.h> #include <ACROBOTIC_SSD1306.h> #include <ESP8266WiFi.h> const char* ssid = „Brno4“; const char* password = „*****“; void setup() { Wire.begin(); oled.init(); // Initialze SSD1306 OLED display oled.clearDisplay(); // Clear screen Serial.begin(115200); // Start Serial.println(); Serial.println(); Serial.print(„Connecting to … Číst dál

Čas pomocí NTP

Zobrazení NTP času přes seriový monitor   /******************** – www.geekstips.com – Arduino Time Sync from NTP Server using ESP8266 WiFi module – Arduino code example ********************/ #include <ESP8266WiFi.h> #include <WiFiUdp.h> char ssid[] = „Brno4“; // your network SSID (name) char pass[] = „*****“; // your network password unsigned int localPort = 2390; // local port … Číst dál