Search found 2 matches

by rmendes
Mon Mar 20, 2023 5:03 pm
Forum: ESP-IDF
Topic: C++ error: Guru Meditation Error: Core 0 panic'ed (InstructionFetchError). Exception was unhandled
Replies: 2
Views: 2851

C++ error: Guru Meditation Error: Core 0 panic'ed (InstructionFetchError). Exception was unhandled

I'm buiding a simple task project with C++, with the following code: #include <stdio.h> #include "esp_log.h" #include <freertos/FreeRTOS.h> #include <freertos/task.h> static const char *TAG = "main"; void task(void *params) { while (true) { ESP_LOGD(TAG, "Tick..."); vTaskDelay(1000); } } extern "C" ...
by rmendes
Mon Oct 10, 2022 11:46 am
Forum: Hardware
Topic: Recommended ZigBee module to use with ESP32
Replies: 0
Views: 688

Recommended ZigBee module to use with ESP32

Hi, I'm starting an IoT project that will required Wireless internet (WiFi), cable internet and ZigBee connectivity. Wifi comes with ESP32, but what is the most recommended board for ZigBee and cable internet? What are the recommended manufacturers and parts to have a reliable and trustable unit? Th...