DevHeads IoT Integration Server
The DevHeads IoT Integration Server accelerates technology engineering by helping pro devs learn, share and collaborate.
JoinDevHeads IoT Integration Server
The DevHeads IoT Integration Server accelerates technology engineering by helping pro devs learn, share and collaborate.
Joinseeking-collabs
🪲-firmware-and-baremetal
📦-middleware-and-os
📡-edge-networking
🟩-pcb-and-analog
jobs
☁-iot-cloud
✅-code-review
devheads-feed
general-dev-chat
How do I implement real-time inference on ESP32 and reduce latency for image recognition
LCD
or send data to the cloud? Cause my Inference latency is too high for real-time application, what's the best way to implement this to ensure that Inference time does not remains above acceptable thresholds for real-time use.How do I achieve a fully functional voice-controlled system with reliable command recognition
MicroPython
and TinyML
on an ESP32
microcontroller to recognize specific voice commands ("turn on" and "turn off") for controlling an LED. It runs smoothly as intended with no errors but sometimes doesn't respond to the voice command, how can i achieve consistent voice recognition and LED
control with the ESP32
, leveraging TinyML and MicroPython....Troubleshooting WiFi Connection Issues and High Latency with ESP32 CAM on Isolated Network
Preventing data loss on ESP32 during MQTT disconnects
How can I resolve BLE connection issues with ESP32 and Android 11 using ArduinoBLE?
Configuring AVR128DA48 for Real-Time CAN Bus Communication
CAN IDs
to each sensor, with higher priority for critical sensors like vibration.
Optimize the CAN Bus
speed according to your system’s bandwidth
and distance requirements, typically between 125 kbps
and 1 Mbps
....ESP32-Pico Failing to Publish MQTT Messages Due to Payload Size Exceeding Broker's Limit
How do I set up UART communication between BeagleBone Black and Esp32?
BeagleBone Black
and a Esp32. How do I set up UART
communication between BeagleBone Black
and Esp32
?
Because am receiving no data from microcontroller, I have checked checked UART
pin connections and baud rate settings.
```python...Why Does the MQTT Connection on ESP32-Pico Frequently Disconnect with Error errno=113?
ESP32 BLE Reconnection Issue with REMOTEXY App

Best Tool to Diagnose Intermittent Wi-Fi Drops on ESP32 in Home Automation Project?
ESP32 BLE Fails to Advertise or Get Detected by Mobile App in Temperature Monitoring Project
MicroPython
on a Zephyr
RTOS
-supported microcontroller, such as the ESP32
, and transmit the data over Bluetooth
Low Energy (BLE) to a mobile app. Am currently transmit the temperature and humidity data over Bluetooth Low Energy (BLE) from the ESP32
to a mobile app but BLE
fails to advertise or the mobile app does not detect the ESP32
.
Here's my code
```python...How to Force HTTP Requests to Timeout on ESP32 When Router Freezes?
http.setConnectTimeout(500);
) and a response timeout (http.setTimeout(1000);
). This will make sure the request stops if it doesn't finish within the given time. For even better performance, you might want to use asynchronous requests with ESPAsyncHTTPClient
to keep your main loop running smoothly.Troubleshooting HDMI Output on BeagleBone Black: No Signal Issue
sudo nano /boot/uEnv.txt
sudo nano /boot/uEnv.txt
How to Fix USB Serial "DEVICE_DESCRIPTOR_FAILURE" Issue with MKR Device?
How to resolve network error 61 when sending an email with SIM800C module using AT commands
Issues with unstable or non-functional CAN bus communication on BeagleBone Black
BeagleBone Black
(BBB) running Embedded Linux. The project involves communicating with multiple devices over the CAN
bus. However, I encountered issues where the CAN
bus communication is unstable or non-functional. I configured the CAN
interface on the BeagleBone Black
using the command
```bash
sudo ip link set can0 up type can bitrate 500000
sudo ifconfig can0 up...How to ensure reliable wireless data transmission with RF module and SPI on AVR128DA48?
How can I resolve persistent Wi-Fi connectivity issues with BeagleBone Black running Embedded Linux?
connmanctl
to configure and connect to a Wi-Fi network:
```bash...Does anyone know what happened to face detection in esp32 cam?
ESP32-CAM
might be missing because the newer versions of the ESP32
hardware libraries I think from 2.1 and above have dropped support for face recognition on these modules. The face recognition algorithm was updated, but it now runs too slowly on the ESP32
processors, leading to its removal from these releases. You might need to downgrade to an older version of the ESP32
libraries or use alternative methods for face detection.