-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use DRAM for ESP32 protocol list (#352)
And replace ICACHE_RAM_ATTR by IRAM_ATTR for ESP32, so as to avoir core dump when using in conjunction with Wifi 1technophile/OpenMQTTGateway#620
- Loading branch information
1 parent
bd0d2d5
commit ebe9171
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ebe9171
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @1technophile, friend, I have been looking for a library for ESP32 for a long time that works properly with an RF 433 module. I found the RCSwitch.h library that seemed promising. However, even with the change suggested by the friend, the module still didn't work. There was also no error on the console. I'm a novice and I don't have the knowledge to solve it myself. Could you tell me if this suggested change worked on your equipment, what version of your esp, gpio, in short, anything that helps me find the cause of the failure. Thank you!
My software
#include <RCSwitch.h>
RCSwitch mySwitch = RCSwitch();
void setup() {
Serial.begin(115200);
mySwitch.enableReceive(34);
Serial.println("Setup realizado!");
}
void loop() {
if(mySwitch.available()) {
}
}
ebe9171
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hello, try to use gpio 27 or 26 for the receiver.
Please do not comment on a commit unless you are sure it is related to your issue.
Just open a new issue.