This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "esp_camera.h" | |
| #include <WiFi.h> | |
| #include <WebServer.h> | |
| #include "FS.h" | |
| #include "SD_MMC.h" | |
| #include "esp_wifi.h" | |
| #include <vector> | |
| // WiFi-Konfiguration | |
| const char* ssid = "your WIFI SSID"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WiFi.h> | |
| #include <WebServer.h> | |
| #include <HTTPClient.h> | |
| #include <ArduinoJson.h> | |
| #include <U8g2lib.h> | |
| #include <Wire.h> | |
| #include <ESP32Servo.h> | |
| #include <Preferences.h> | |
| #include <time.h> | |
| #include <DHTesp.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Servo.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_ST7735.h> | |
| #include <SPI.h> | |
| // Pin-Definitionen | |
| #define TFT_CS 10 | |
| #define TFT_RST 9 | |
| #define TFT_DC 8 | |
| #define SERVO_PIN 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WiFi.h> | |
| #include <WebServer.h> | |
| #include <DNSServer.h> | |
| #include <Preferences.h> | |
| #include <MD_MAX72xx.h> | |
| #include <SPI.h> | |
| #include <time.h> | |
| #include <math.h> | |
| #include <vector> | |
| #include <Adafruit_NeoPixel.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_GC9A01A.h> | |
| #include <SPI.h> | |
| #include <WiFi.h> | |
| #include <WebServer.h> | |
| #include <Preferences.h> | |
| #include <NTPClient.h> | |
| #include <WiFiUdp.h> | |
| #include <ArduinoJson.h> | |
| #include <HTTPClient.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WiFi.h> | |
| #include <Wire.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| #include <NTPClient.h> | |
| #include <TimeLib.h> | |
| #include <Preferences.h> | |
| #include <HTTPClient.h> | |
| #include <esp_sleep.h> // Für Deep Sleep | |
| #include <Adafruit_NeoPixel.h> // Für onboard WS2812 RGB LED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WiFi.h> | |
| #include <WebServer.h> | |
| #include <HTTPClient.h> | |
| #include <ArduinoJson.h> | |
| #include <U8g2lib.h> | |
| #include <Wire.h> | |
| #include <ESP32Servo.h> | |
| #include <Preferences.h> | |
| #include <time.h> | |
| #include <DHTesp.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Adafruit_NeoPixel.h> | |
| #include <ESP8266WiFi.h> | |
| #include <ESP8266WebServer.h> | |
| #include <EEPROM.h> | |
| #include <time.h> | |
| #define LED_PIN D4 | |
| #define LED_COUNT 128 | |
| #define MATRIX_WIDTH 16 | |
| #define MATRIX_HEIGHT 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define USER_SETUP_INFO "Custom 2.4\" ILI9341 + XPT2046" | |
| #define ILI9341_2_DRIVER | |
| #define TFT_WIDTH 240 | |
| #define TFT_HEIGHT 320 | |
| #define TFT_MOSI 13 | |
| #define TFT_MISO 12 | |
| #define TFT_SCLK 14 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WebServer.h> | |
| #include <TFT_eSPI.h> | |
| #include <XPT2046_Touchscreen.h> | |
| #include <SPI.h> | |
| #include <WiFi.h> | |
| #include <Preferences.h> | |
| #include <time.h> | |
| #include <ESP.h> | |
| #define SCREEN_WIDTH 320 |
NewerOlder