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.
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`. […]
Hi everyone, I have a problem with the string function indexOf() that I don’t understand. My board with the ESP32 module is connected via RS485 (on UART1) to another board. […]
hello everyone i am following the book: INTERNET OF THINGS PROJECT WITH ESP32 BY: AGUS KURNIAWAN I am facing a problem in setting up esp-idf in vs code can someone […]
is it possible to send the HTML page from a Web Server in async mode upon initial client request? tried that and all i get in the browser is the […]
when using ESP-NOW If I want to enable long-range transmission I have to enable it for the receiver as well?
Hey guys while sending sensor data from an ESP32-Pico to an MQTT broker,And combining multiple sensor readings into a single MQTT message, the payload size exceeds the broker’s limit. As […]
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 […]