Search found 44 matches

by Aussie Susan
Tue Dec 19, 2023 10:51 pm
Forum: ESP-IDF
Topic: How to set up Zigbee attribute reporting
Replies: 1
Views: 9636

How to set up Zigbee attribute reporting

Environment: ESP32-H2 DEvKitM-1 V1.2; latest ESP-IDF and Zigbee library. Using the HA_ON_OFF_LIGHT as the basis with a temperature measurement attribute and cluster added (to endpoint 2), I can connect to the coordinator successfully and it sees the switch and temperature value. If I regularly call ...
by Aussie Susan
Mon Nov 13, 2023 1:27 am
Forum: ESP-IDF
Topic: ESP_ZB_NLME_STATUS_INDICATION
Replies: 1
Views: 601

Re: ESP_ZB_NLME_STATUS_INDICATION

Bumping this so it does not get lost in the other unanswered questions
Susan
by Aussie Susan
Wed Nov 08, 2023 1:33 am
Forum: ESP-IDF
Topic: ESP_ZB_NLME_STATUS_INDICATION
Replies: 1
Views: 601

ESP_ZB_NLME_STATUS_INDICATION

I have an ESP32-H2-DevKitM-1 and the Espressif IDF (V1.6.5) installed on VS Code. Using that I did an 'express' setup about 3 days ago so I should have the latest versions of the SDK etc. I have tried to use the 'HA_ON_OFF_LIGHT" example code (unaltered in all key aspects) to connect to my "Home Ass...
by Aussie Susan
Tue Jun 21, 2022 11:11 pm
Forum: ESP-IDF
Topic: ESP-IDF extension in VSCode on MacOS M1 iMac
Replies: 1
Views: 2148

Re: ESP-IDF extension in VSCode on MacOS M1 iMac

OK - I'll answer this myself! I went back to deleted everything in the ~/.espressif, ~/.vscode and ~/esp folders and restarted Visual Studio Code again but the issue remained. I then deleted the above folders PLUS ~/Library/Application\ Support/Code and restarted VSCode. This time I could install th...
by Aussie Susan
Mon Jun 20, 2022 11:36 pm
Forum: ESP-IDF
Topic: ESP-IDF extension in VSCode on MacOS M1 iMac
Replies: 1
Views: 2148

ESP-IDF extension in VSCode on MacOS M1 iMac

I am running an iMac with Apple Silicon and the fully updated OS. I have installed Visual Studio Code - see below for the full details. I have installed the Espressif IDF V1.4.0 from the Extensions list in VSCode. As per the video at https://www.youtube.com/watch?v=Lc6ausiKvQM I typed in the 'Config...
by Aussie Susan
Thu Dec 17, 2020 2:45 am
Forum: ESP32 Arduino
Topic: ADC sampling noise
Replies: 2
Views: 3126

Re: ADC sampling noise

I certainly do have the same issue.
Personally I use multiple sampling - sample 128 samples adding each to a total value and then dividing that by 128.
Susan
by Aussie Susan
Thu Oct 08, 2020 1:57 am
Forum: ESP-IDF
Topic: Developping using ESP-IDF
Replies: 3
Views: 3335

Re: Developping using ESP-IDF

Second the use of PlatformIO.
Sometimes you may need to wait after Espressif releases a new version of the framework but otherwise is it all very straight forward.
Susan
by Aussie Susan
Tue Sep 22, 2020 7:04 am
Forum: ESP-IDF
Topic: How to keep a DNS entry active
Replies: 0
Views: 1597

How to keep a DNS entry active

I have built a WiFi station (which has a WROVER MCU on board) using ESP-IDF V4.1 which calls the 'tcpip_adapter_set_hostname' within the WIFI_EVENT WIFI_EVENT_STA_START event handler and that seems to be working nicely as I can see the hostname in my home routers list of hostnames, IP address and MA...
by Aussie Susan
Tue Sep 08, 2020 9:54 am
Forum: ESP-IDF
Topic: esp_event_handler_instance_t not defined in V4.1 - so says my compiler
Replies: 1
Views: 2545

esp_event_handler_instance_t not defined in V4.1 - so says my compiler

A few days ago I created a project using the ESP-IDF framework inside PlatformIO running in Atom. At that stage it was ESP-IDF V4.0 and I coded accordingly. Today I saw that V4.1 was released and I upgraded the framework. I also changed some of the code to conform to the V4.1 changes in the WiFi are...
by Aussie Susan
Thu Aug 27, 2020 3:44 am
Forum: ESP-IDF
Topic: How do I investigate the stack of a task to make sure there's enough space?
Replies: 3
Views: 3224

Re: How do I investigate the stack of a task to make sure there's enough space?

I assume you are referring to the some RTOS stack - most have a function you can call to tell you the maximum used to that point in the execution. You will need to refer to the documentation of the RTOS you are using.
Susan