APA102 – sude, liche

Bikání na střídačku (sudé, liché).   #include <APA102.h> // Define which pins to use. const uint8_t dataPin = 11; const uint8_t clockPin = 12; APA102<dataPin, clockPin> ledStrip; // ledCount = počet LED na pásku const uint16_t ledCount = 30; rgb_color colors[ledCount]; void setup() { //reset pasku ledStrip.startFrame(); for(uint16_t i = 0; i < ledCount; i++) … Číst dál

APA102 – HAD

1 ledka obíhá dokola   /* This example shows how to make an LED pattern with a large * dynamic range using the the extra 5-bit brightness register in * the APA102. * * It sets every LED on the strip to white, with the dimmest * possible white at the input end of the … Číst dál

APA102 – modrý maják

Blikající efekt ala “ modrý maják“ . Střídavé zesílení a zeslabení svítivosti (alfy).   /* This example shows how to make an LED pattern with a large * dynamic range using the the extra 5-bit brightness register in * the APA102. * * It sets every LED on the strip to white, with the dimmest … Číst dál

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

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

Zobrazení grafiky na OLED (I2C)

Ukázka vykreslení na OLED displej SSD1306 z ebay přes I2C   OLED displej je na adrese 0x3C   Zdroj: http://learn.acrobotic.com/tutorials/post/esp8266-oled-display-using-i2c   Web na převod z GIF na PROGMEM: http://www.majer.ch/lcd/adf_bitmap.php   /* 06/01/2016 Author: Makerbro Platforms: ESP8266 Language: C++ File: DrawLogo.ino ———————————————————————— Description: Drawing an image in the OLED display. The image date was generated using … Číst dál