Сообщения

ESP32cam V3 OV2640 , ESP32cam v1.2 OV5640

#include <WiFi.h> #include <WebServer.h> #include "esp_camera.h" #include "soc/rtc.h" #include <esp_mac.h> #include <Preferences.h> Preferences prefs; char WiFi_HostName [ 64 ] = "ESP32cam" ; // const char* char WiFi_SSID [ 64 ]     = "internet" ; char WiFi_Password [ 64 ] = "internet" ; char www_Login [ 64 ]     = "root" ; char www_Password [ 64 ]  = "root" ; WebServer server ( 80 ) ; // PIN ESP32cam v1.2 -> OV5640 #define CAM_PWDN    - 1 #define CAM_RESET   5 #define CAM_XCLK     15 #define CAM_SIOD     22 #define CAM_SIOC     23 #define CAM_D0       2 #define CAM_D1       14 #define CAM_D2       35 #define CAM_D3       12 #define CAM_D4       27 #define CAM_D5       33 #define CAM_D6       34 #define CAM_D7       39 #define CAM_VSYN...

Arduino + DMSG-020 = Blow

// C++ , Arduino , DMSG-020 , SSD1306 , Blow #include <EEPROM.h> const int EEPROM_ADDR = 0 ; // Строка должна быть ТУТ, до setup! bool License = false ;      // И эта строка тоже тут #include <SPI.h> #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define RELAY_PIN A0 #define Sensor_PIN A1 // Коричневый провод датчика #define Sensor_GND A2 // Синий провод датчика (делаем из него минус) #define switch_Delay_1 2 #define switch_Delay_2 3 #define switch_Delay_3 4 #define switch_Delay_4 5 #define switch_Delay_5 6 #define switch_Blow_1 7 #define switch_Blow_2 8 #define switch_Blow_3 9 #define switch_Blow_4 10 #define switch_Blow_5 11 #define switch_ON 12   bool RePlay = false ;   bool Sensor = false ;   bool Relay = false ;   float Delay = 0.0 ;   float Blow = 0.0 ;   // Declaration for an SSD1306 display connected to I2C (SDA, SCL pins) // The pins...