Become a leader in the IoT community!
Join our community of embedded and IoT practitioners to contribute experience, learn new skills and collaborate with other developers with complementary skillsets.
hey there guys, I am working on home automation with esp32 module with wifi and bluetooth. I have developed the model that will get the data from firebase in esp32 […]
I found this code for connecting the bluetooth #include “BluetoothSerial.h” BluetoothSerial SerialBT; bool isConnected = false; void setup() { Serial.begin(115200); SerialBT.begin(“ESP32_BT”); // Bluetooth device name Serial.println(“The device started, now you […]
Hello everyone. Does anyone know what happened to face detection in esp32 cam? I don’t see the option in my browser as others have online. I read somewhere its been […]
Hi all, I have an ESP32 receiving information from another ESP32 equipped with sensors. Below is the code for the receiving ESP: “`C++ #include #include const char* ssid = “XXXX”; […]
Greetings every one what you do if you iot device infield get disconnected to wifi and you dont have anyother connectivity available? How you can ensure that data is not […]
How do I set up and establish communication between the ESP32 and the R307 fingerprint sensor, ensuring that the sensor can be recognized and initialized by the ESP32? My aim […]
Hello everyone, I have created a web server on an ESP32 and successfully established communication with the client (my HTML page on my PC). However, the client’s request is for […]
Hey guys In a recent lot project, l used ESP32 to connect various sensors to a cloud platform for data storage and remote monitoring. While the initial connection and data […]
Hey guys i’m attempting on working on an ESP32 robotic arm control system using FreeRTOS and MQTT, but the system occasionally freezes. I suspect a deadlock between `controlArmTask` and `sendCommandTask`. […]