Search found 2 matches

by razor_trash
Sun Aug 18, 2024 12:54 pm
Forum: General Discussion
Topic: esp 32 cam wrover v1.5 module
Replies: 1
Views: 611

esp 32 cam wrover v1.5 module

#include "esp_camera.h" #include <WiFi.h> // // WARNING!!! PSRAM IC required for UXGA resolution and high JPEG quality // Ensure ESP32 Wrover Module or other board with PSRAM is selected // Partial images will be transmitted if image exceeds buffer size // // You must select partition scheme from t...
by razor_trash
Sat Jan 06, 2024 10:49 am
Forum: ESP8266
Topic: just esp8266
Replies: 0
Views: 13030

just esp8266

#include <Arduino.h> // Define the LED pin const int ledPin = D2; // Change D2 to the appropriate pin for your setup void setup() { // Set the LED pin as an output pinMode(ledPin, OUTPUT); } void loop() { // Turn on the LED digitalWrite(ledPin, HIGH); delay(1000); // 1-second delay // Turn off the ...