ESP32 + RFID RC522 Tutorial with LCD Screen (BEGINNER-FRIENDLY)

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 18

  • @uploadideaswithitamar
    @uploadideaswithitamar  4 місяці тому +1

    Check out other related videos or check my playlist out on ESP32 Projects. ❤ You can use LCD I2C library which is compatible with ESP32

  • @hi-12-y3d
    @hi-12-y3d 4 місяці тому +1

    Love from india.. Go head my dear brother.. We want more like this❤

  • @muhammadaniqnukmanamran1256
    @muhammadaniqnukmanamran1256 Місяць тому +1

    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

    • @uploadideaswithitamar
      @uploadideaswithitamar  Місяць тому

      I think you need to install the MFRC522 library. If it's still not working after installation, check for an update.

  • @becerrinlexx7138
    @becerrinlexx7138 4 місяці тому +1

    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.

    • @uploadideaswithitamar
      @uploadideaswithitamar  4 місяці тому

      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.

    • @uploadideaswithitamar
      @uploadideaswithitamar  4 місяці тому

      Good news! I found a compatible library for ESP32 without warning, just search for LCD I2C and install it

  • @DilZedth
    @DilZedth Місяць тому +1

    thanks 🍹

  • @tharii314
    @tharii314 29 днів тому +1

    played in 1.5x and I figured out that the narrator is just fluent in GPIO and nothing else.

  • @adiktofer
    @adiktofer 4 місяці тому +2

    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.

    • @uploadideaswithitamar
      @uploadideaswithitamar  4 місяці тому +1

      Did you use my code ?.

    • @adiktofer
      @adiktofer 4 місяці тому

      @@uploadideaswithitamar yes I downloaded from your link.
      That Issue was reported in the arduino forums when you work with ESP32.
      But I fixed it.

    • @GabrielDiniz-n9c
      @GabrielDiniz-n9c Місяць тому

      @@adiktofer How you fixed it? I'm looking for the same problem right now.

    • @adiktofer
      @adiktofer Місяць тому

      @@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.

    • @luqmanh9620
      @luqmanh9620 10 днів тому

      @@adiktofer hi can you show how you solve this problems