Mini proiect (24) - Programarea ESP32 CAM folosind Arduino uno - Configurarea a doua taskuri folosind biblioteca FreeRTOS

Programarea ESP32 CAM folosind Arduino uno - Configurarea a doua taskuri folosind biblioteca FreeRTOS

În acest articol descriu în detaliu configurarea și programare plăcii ESP32 CAM folosind Arduino UNO. În sketch-ul de test am folosit libraria FreeRTOS pentru a defini 2 taskuri de test în care activez intermitent blițul camerei foto.



ESP32 CAM este un modul de camera de dimensiuni reduse, cu consum redus de energie, bazat pe ESP32.Este dotat cu o camera OV2640 si ofera slot pentru carduri TF la bord.

ESP32 CAM poate fi utilizat pe scara larga in aplicatii IoT inteligente, cum ar fi monitorizarea video wireless, incarcarea de imagini WiFi, identificarea QR, etc.

Specificatii ESP32 CAM

  • WIFI module: ESP-32S
  • Processor: ESP32-D0WD
  • Built-in Flash: 32Mbit
  • RAM: Internal 512KB + External 4M PSRAM
  • Antenna: Onboard PCB antenna
  • WiFi protocol: IEEE 802.11 b/g/n/e/i
  • Bluetooth: Bluetooth 4.2 BR/EDR and BLE
  • WIFI mode: Station / SoftAP / SoftAP+Station
  • Security: WPA/WPA2/WPA2-Enterprise/WPS
  • Output image format: JPEG (OV2640 support only), BMP, GRAYSCALE
  • Supported TF card: up to 4G
  • Peripheral interface: UART/SPI/I2C/PWM
  • IO port: 9
  • UART baudrate rate: default 115200bps
  • Power supply: 5V
  • Transmitting power:
    • 802.11b: 17 ±2dBm(@11Mbps)
    • 802.11g: 14 ±2dBm(@54Mbps)
    • 802.11n: 13 ±2dBm(@HT20,MCS7)
  • Receiving sensitivity:
    • CCK,1Mbps: -90 dBm
    • CCK,11Mbps: -85 dBm
    • 6Mbps(1/2 BPSK): -88 dBm
    • 54Mbps(3/4 64-QAM): -70 dBm
    • HT20,MCS7(65Mbps, 72.2Mbps): -67 dBm
  • Power consumption:
    • Flash off: 180mA@5V
    • Flash on and brightness max: 310mA@5V
    • Deep-Sleep: as low as 6mA@5V
    • Modern-Sleep: as low as 20mA@5V
    • Light-Sleep: as low as 6.7mA@5V
  • Operating temperature: -20 ℃ ~ 85 ℃
  • Storage environment: -40 ℃ ~ 90 ℃, <90%RH
  • Dimensions: 40.5mm x 27mm x 4.5mm


ESP32-CAM se foloseste pentru aplicatii IOT, cum ar fi:

  •  Incarcare de imagini cu dispozitive de tip casa inteligenta
  •  Monitorizare wireless
  •  Agricultura inteligenta
  •  Identificare wireless QR
  •  Recunoastere faciala
  •  Modul ESP32-S, accepta WiFi + Bluetooth
  •  Camera foto OV2640 cu blit
  •  Slot pentru cardul TF, accepta pana la 4G TF card pentru stocarea datelor
  •  Accepta monitorizarea video WiFi si incarcarea de imagini WiFi
  •  Suporta "multi sleep modes", "deep sleep mode" de pana la 6mA
  •  Interfata de control este accesibila prin pinheader, usor de integrat si incorporat in produsele utilizatorului 
 Componentele folosite în acest articol:

 Configurare placa ESP32 CAM in Arduino IDE

  • Deschideți Arduino IDE pe computer, accesați Fișier> Preferințe>  
  • Lipiți linkul de mai jos în board manager URL (vezi in poza de mai jos)
    • https://dl.espressif.com/dl/package_esp32_index.json 

 
Tools>Board > Board manager > & search for ESP 32
Puteți vedea ESP32 board ->  Descărcați și instalați pachetul cu cea mai recentă versiune  


Selectarea plăcii:

  • Select board > ESP32 ” Wrover Module”
  • Flash Mode > QIO
  • Flash Frequency > 40MHZ
  • Partition Scheme > Huge App (3mb No OTA)
  • Upload speed > 115200




 

Conexiune ESP32 CAM la Arduino UNO  

  1. Conectați Arduino 5volt la ESP32 CAM 5 volți. 
  2. Arduino GND la GND Placa 
  3. Arduino RX la ESP32 CAM RX și Arduino TX la ESP32 CAM TX  
  4. Pinul de resetare Arduino la GND 
  5. ESP32 CAM GPIO0 la GND

Conexiunile:

Programarea ESP32 CAM folosind Arduino uno - Configurarea a doua taskuri folosind biblioteca FreeRTOS

  Acum placa ESP32 CAM poate fi programata si ar trebui să se observe in Arduino IDE  următoarele mesaje:

După programare trebuie înlăturată conexiunea dintre GPIO0 la GND, iar apoi să apăsați butonul de reset. Acum o să înceapă rularea aplicației încărcate.

 Sketch-ul de test:

/*
Florin Simedru
Complete project details at https://automatic-house.blogspot.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
*/
#if CONFIG_FREERTOS_UNICORE
#define ARDUINO_RUNNING_CORE 0
#else
#define ARDUINO_RUNNING_CORE 1
#endif
#ifndef LED_BUILTIN
#define LED_BUILTIN 13
#endif
// flash lamp IO
#define LAMP 4
// define two tasks for Blink & AnalogRead
void TaskBlink( void *pvParameters );
void TaskAnalogReadA3( void *pvParameters );
// the setup function runs once when you press reset or power the board
void setup() {
// initialize serial communication at 115200 bits per second:
Serial.begin(115200);
pinMode(LAMP, OUTPUT);
// Now set up two tasks to run independently.
xTaskCreatePinnedToCore(
TaskBlink
, "TaskBlink" // A name just for humans
, 1024 // This stack size can be checked & adjusted by reading the Stack Highwater
, NULL
, 2 // Priority, with 3 (configMAX_PRIORITIES - 1) being the highest, and 0 being the lowest.
, NULL
, ARDUINO_RUNNING_CORE);
xTaskCreatePinnedToCore(
TaskAnalogReadA3
, "AnalogReadA3"
, 1024 // Stack size
, NULL
, 1 // Priority
, NULL
, ARDUINO_RUNNING_CORE);
// Now the task scheduler, which takes over control of scheduling individual tasks, is automatically started.
}
void loop()
{
// Empty. Things are done in Tasks.
}
/*--------------------------------------------------*/
/*---------------------- Tasks ---------------------*/
/*--------------------------------------------------*/
void TaskBlink(void *pvParameters) // This is a task.
{
(void) pvParameters;
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
If you want to know what pin the on-board LED is connected to on your ESP32 model, check
the Technical Specs of your board.
*/
// initialize digital LED_BUILTIN on pin 13 as an output.
pinMode(LED_BUILTIN, OUTPUT);
for (;;) // A Task shall never return or exit.
{
digitalWrite(LAMP, HIGH); // turn the LED on (HIGH is the voltage level)
vTaskDelay(100); // one tick delay (15ms) in between reads for stability
digitalWrite(LAMP, LOW); // turn the LED off by making the voltage LOW
vTaskDelay(100); // one tick delay (100ms) in between reads for stability
}
}
void TaskAnalogReadA3(void *pvParameters) // This is a task.
{
(void) pvParameters;
/*
AnalogReadSerial
Reads an analog input on pin A3, prints the result to the serial monitor.
Graphical representation is available using serial plotter (Tools > Serial Plotter menu)
Attach the center pin of a potentiometer to pin A3, and the outside pins to +5V and ground.
This example code is in the public domain.
*/
for (;;)
{
// read the input on analog pin A3:
int sensorValueA3 = analogRead(A3);
// print out the value you read:
Serial.println(sensorValueA3);
vTaskDelay(10); // one tick delay (10ms) in between reads for stability
}
}

Documentatie proiect:

https://technoreview85.com/how-to-program-esp-32-cam-using-arduino-uno-board/ 

 

 Pentru întrebari și/sau consultanță tehnică vă stau la dispozitie pe blog sau pe email simedruflorin@automatic-house.ro. O seară/zi plăcută tuturor !

Etichete

Afișați mai multe

Arhiva

Afișați mai multe