Search found 3 matches

by Aswinth
Thu Jul 18, 2024 9:59 am
Forum: ESP32 Arduino
Topic: Fastest way to send images from ESP32CAM to cloud server
Replies: 0
Views: 762

Fastest way to send images from ESP32CAM to cloud server

Hi, My idea is to use ESP32CAM for image processing projects. Since the ESP32 core is not powerful enough, I am planning to send the video (as images) from ESP32CAM into my python flask server and perform image processing over there using openCV. I am aware that ESP32CAM is not powerful enough to st...
by Aswinth
Thu Oct 11, 2018 12:49 pm
Forum: ESP32 Arduino
Topic: BLE server for Battery Service application
Replies: 2
Views: 6778

Re: BLE server for Battery Service application

Hi, Thanks for your reply. I am trying to achieve something like this https://i.ytimg.com/vi/092oyAS2Jls/maxresdefault.jpg . Why do we need to add HID service for this? void loop() { BatteryLevelCharacteristic.setValue(level, 1); BatteryLevelCharacteristic.notify(); delay(2000); percentage++; level[...
by Aswinth
Thu Oct 11, 2018 8:26 am
Forum: ESP32 Arduino
Topic: BLE server for Battery Service application
Replies: 2
Views: 6778

BLE server for Battery Service application

Hi, I am using Arduino to program ESP32. I am very new to BLE but have been working with Arduino for a long time. My knowledge on BLE is limited to https://www.youtube.com/watch?v=2mePPqiocUE this video. My idea here is to program the ESP32 as a server which uses GAT services to display the battery ...