Polymer lithium battery applications:
- Recording pen,Reading pen, Story machine, Early education machine
- MP3 MP4 MP5 , Bluetooth small speakers, Bluetooth glasse
- Miniature camera, tablet PC, music player, Mobile speaker, oudspeaker
- Driving recorder, Car keys, Locator, Phone, GPS
- Watch, Camera,MD,Digital cameras, Portable DVD
Features:
- Model: 103450 3.7V 2000mAh
- Quantity: 1
- Voltage: 3.7V
- Length: 50 mm / Width: 34mm / Thickness: 10 mm
- Capacity: 2000 mAh
- Chemical composition: Lithium Polymer
- 100% brand new high quality Li-polymer rechargeable battery
- light weight, large capacity, no memory effect.
- suitable for mp3 loudspeaker GPS/MID/PDA/bluetooth/mp3/mp4/reader backup power and other devices!
- Built-in protection circuit PCM for prevent over charging or over discharging.
#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
//
// Select camera model
//#define CAMERA_MODEL_WROVER_KIT // Has PSRAM
//#define CAMERA_MODEL_ESP_EYE // Has PSRAM
//#define CAMERA_MODEL_M5STACK_PSRAM // Has PSRAM
//#define CAMERA_MODEL_M5STACK_V2_PSRAM // M5Camera version B Has PSRAM
//#define CAMERA_MODEL_M5STACK_WIDE // Has PSRAM
//#define CAMERA_MODEL_M5STACK_ESP32CAM // No PSRAM
#define CAMERA_MODEL_AI_THINKER // Has PSRAM
//#define CAMERA_MODEL_TTGO_T_JOURNAL // No PSRAM
#include "camera_pins.h"
const char* ssid = "az-003";
const char* password = "mc34063a";
// Set your Static IP address
IPAddress local_IP(192, 168, 1, 192);
// Set your Gateway IP address
IPAddress gateway(192, 168, 1, 1);
IPAddress subnet(255, 255, 0, 0);
void startCameraServer();
void setup() {
Serial.begin(115200);
Serial.setDebugOutput(true);
Serial.println();