Search found 45 matches

by azz-zza
Fri Oct 18, 2019 12:30 am
Forum: ESP32 Arduino
Topic: rcswitch not availble
Replies: 1
Views: 3884

rcswitch not availble

Hello, is there a way to troubleshoot this to understand what exactly is not working ? i have a simple FS1000 modules and devkit esp32 module... the output is always "Switch is not available" thank you void setup() { //enable serial monitor int ISR_PIN = 8 ; Serial.begin(9600); delay(3000); // Recei...
by azz-zza
Tue Oct 15, 2019 6:19 am
Forum: General Discussion
Topic: Library for Etekcity ZAP Remote Outlet
Replies: 1
Views: 2862

Re: Library for Etekcity ZAP Remote Outlet

there is a lib to decode the transmissions https://github.com/ibenot/Arduino/tree/ ... z_Receiver
But it uses the RCSwitch.h... and where do i find that one ?
thank you
by azz-zza
Tue Oct 15, 2019 6:05 am
Forum: General Discussion
Topic: Library for Etekcity ZAP Remote Outlet
Replies: 1
Views: 2862

Library for Etekcity ZAP Remote Outlet

Hello, im looking for a library to work with Etekcity outlet. I used to have the Arduino library. But over the years the author seemed to take it down. the only thing I was able to find is https://github.com/DanielOgorchock/ST_Anything/ Is there smth in esp32 world to simplify the work with the outl...
by azz-zza
Mon Oct 14, 2019 1:53 am
Forum: General Discussion
Topic: Is there another ide for esp instead of Eclipse?
Replies: 4
Views: 7281

Re: Is there another ide for esp instead of Eclipse?

my answer implies you are a windoze user.
in this case :
a. codeblocks
b. clion (paid for)
c. vscode
by azz-zza
Sat Oct 12, 2019 9:05 pm
Forum: General Discussion
Topic: Core dump:Guru Meditation Error: Core 0 panic'ed (Unhandled debug exception)
Replies: 3
Views: 5183

Re: Core dump:Guru Meditation Error: Core 0 panic'ed (Unhandled debug exception)

after adding logging and err checking the error went away and the code started to work //faceplam
by azz-zza
Sat Oct 12, 2019 2:32 pm
Forum: General Discussion
Topic: Core dump:Guru Meditation Error: Core 0 panic'ed (Unhandled debug exception)
Replies: 3
Views: 5183

Core dump:Guru Meditation Error: Core 0 panic'ed (Unhandled debug exception)

Hello, im at my wits end and would appreciate your guidance, please. the following basic code falls with the core dump. #include <stdio.h> #include <string.h> #include "freertos/FreeRTOS.h" #include <unistd.h> #include "esp_timer.h" #include "esp_log.h" #include "esp_sleep.h" #include "sdkconfig.h" ...
by azz-zza
Sat Oct 12, 2019 2:12 pm
Forum: General Discussion
Topic: What is the proper way to use a timer?
Replies: 6
Views: 8141

Re: What is the proper way to use a timer?

https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/system/esp_timer.html Although FreeRTOS provides software timers, these timers have a few limitations: Maximum resolution is equal to RTOS tick period Timer callbacks are dispatched from a low-priority task Hardware timers are free...
by azz-zza
Sun Oct 06, 2019 5:40 pm
Forum: General Discussion
Topic: What is the proper way to use a timer?
Replies: 6
Views: 8141

Re: What is the proper way to use a timer?

username wrote:
Sun Oct 06, 2019 4:14 am
In the link you provided does not work off IRQ's. So if that is what you want you found it.
right, i'm trying to understand what is the difference ( other the use of interrupt) between these solutions? they use different API...
by azz-zza
Sat Oct 05, 2019 4:09 am
Forum: General Discussion
Topic: What is the proper way to use a timer?
Replies: 6
Views: 8141

Re: What is the proper way to use a timer?

well, but there is also https://github.com/espressif/esp-idf/tr ... /esp_timer

And what i is the difference, i'm not sure...

All im trying to achieve is to have an alarm raised without invoking an interrupt.
by azz-zza
Wed Oct 02, 2019 3:26 am
Forum: General Discussion
Topic: What is the proper way to use a timer?
Replies: 6
Views: 8141

What is the proper way to use a timer?

Hello, i want to perform a series of steps after a timer reached a certain value. the documentation ( https://docs.espressif.com/projects/esp-idf/en/v3.3/api-reference/peripherals/timer.html#timer-api-alarms ) states: "... After the alarm is enabled and the timer reaches the alarm value, depending o...