Hi, I have a question. What library did you use? I want to do something similar, but it throws a warning and tells me that my library is not compatible.
It throws a warning for me too. Look at the description and try installing the same library. I’ve been using this library on ESP32 for all the projects that I make with ESP32. I’ll see if they have a compatible library.
Hi, I'm usign ARDUINO IDE 2, my module is ESP32 DEV MODULE, but it doesn't compile and show me these error: In member function 'MFRC522::StatusCode MFRC522Extended::TCL_Transceive(TagInfo*, byte*, byte, byte*, byte*)': c:\Users\fernando\Documents\Arduino\libraries\MFRC522\src\MFRC522Extended.cpp:824:34: error: ordered comparison of pointer with integer zero ('byte*' {aka 'unsigned char*'} and 'int') 824 | if (backData && (backLen > 0)) { | ~~~~~~~~^~~ c:\Users\fernando\Documents\Arduino\libraries\MFRC522\src\MFRC522Extended.cpp:847:42: error: ordered comparison of pointer with integer zero ('byte*' {aka 'unsigned char*'} and 'int') 847 | if (backData && (backLen > 0)) { | ~~~~~~~~^~~ exit status 1 Compilation error: exit status 1 EDIT: I solved this error reading arduino forums. that issue can be fixed ading the symbol * if (backData && (backLen > 0)) { now rewrite the code into this if (backData && (*backLen > 0)) { I hope this colud help anybody who need it.
@@GabrielDiniz-n9c hi, it’s a library problem. Basically the argument Of One Of the functions inside the library, has a wrong declaration work pointers. Ley me check today please, Im a lil busy now.
Check out other related videos or check my playlist out on ESP32 Projects. ❤ You can use LCD I2C library which is compatible with ESP32
Love from india.. Go head my dear brother.. We want more like this❤
Thanks
sorry for ask question, can you help me? Compilation error: MFRC522.h: No such file or directory. what is this im beginner of this . thankyou so much
I think you need to install the MFRC522 library. If it's still not working after installation, check for an update.
Hi, I have a question. What library did you use? I want to do something similar, but it throws a warning and tells me that my library is not compatible.
It throws a warning for me too. Look at the description and try installing the same library. I’ve been using this library on ESP32 for all the projects that I make with ESP32. I’ll see if they have a compatible library.
Good news! I found a compatible library for ESP32 without warning, just search for LCD I2C and install it
thanks 🍹
Thank you
played in 1.5x and I figured out that the narrator is just fluent in GPIO and nothing else.
Sorry 😞 what do you need sir ?
Hi, I'm usign ARDUINO IDE 2, my module is ESP32 DEV MODULE, but it doesn't compile and show me these error:
In member function 'MFRC522::StatusCode MFRC522Extended::TCL_Transceive(TagInfo*, byte*, byte, byte*, byte*)':
c:\Users\fernando\Documents\Arduino\libraries\MFRC522\src\MFRC522Extended.cpp:824:34: error: ordered comparison of pointer with integer zero ('byte*' {aka 'unsigned char*'} and 'int')
824 | if (backData && (backLen > 0)) {
| ~~~~~~~~^~~
c:\Users\fernando\Documents\Arduino\libraries\MFRC522\src\MFRC522Extended.cpp:847:42: error: ordered comparison of pointer with integer zero ('byte*' {aka 'unsigned char*'} and 'int')
847 | if (backData && (backLen > 0)) {
| ~~~~~~~~^~~
exit status 1
Compilation error: exit status 1
EDIT: I solved this error reading arduino forums.
that issue can be fixed ading the symbol *
if (backData && (backLen > 0)) {
now rewrite the code into this
if (backData && (*backLen > 0)) {
I hope this colud help anybody who need it.
Did you use my code ?.
@@uploadideaswithitamar yes I downloaded from your link.
That Issue was reported in the arduino forums when you work with ESP32.
But I fixed it.
@@adiktofer How you fixed it? I'm looking for the same problem right now.
@@GabrielDiniz-n9c hi, it’s a library problem. Basically the argument Of One Of the functions inside the library, has a wrong declaration work pointers. Ley me check today please, Im a lil busy now.
@@adiktofer hi can you show how you solve this problems