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

Připojení k Wi-fi a OLED

Zobrazení stavu připojení k Wi-fi na  displeji OLED SSD1306 z ebay /* 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 … Číst dál