sketch_apr17a.ino:1:24: fatal error: Deprecated.h: For Using RFID

Hello
I have got this code for using RFID reader

#include <Deprecated.h>
#include <MFRC522.h>
#include <MFRC522Debug.h>
#include <MFRC522Extended.h>
#include <MFRC522Hack.h>
#include <require_cpp11.h>

#include <SPI.h>
#include <MFRC522Extended.h>
#define SS_PIN 10
#define RST_PIN 9
MFRC522 rfid(SS_PIN, RST_PIN);

Void setup()
{ Serial begin (9600);
SPI.begin();
mfrc522.PCD_Init();
Serial.printIn();
Serial.printIn();
}
Void loop()
{
if (mfrc522.PICC_IsNewcardpresent())
{
return;
}
if (mfrc522.PICC_readcardserial())
{
return;
}
Serial.print(UIDtag);
String content = ;
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i+1)
{
Serial.print(mfrc522.uid.uidbyte < 0x10"0":"");
_ Serial.print(mfrc522.uid.uidbyte HEX);_
_ content.concat(string(mfrc522.uid.uidbyte <0x10"0":""));
content.concat(string(mfrc522.uid.uidbyte HEX));
* }
Serial.print();
Serial.print(message);
content.to upper case();
if ((1)==)
{
Serial.print in();
Serial.print();
delay(3000);
}
else{
Serial.printin();
delay(3000);
}
}_

But it gives me this error ---> sketch_apr17a.ino:1:24: fatal error: Deprecated.h: No such file or directory*

compilation terminated.
Error compiling.
Can anyone help me out please, appreciate it.

You didn't install a needed library.

Seems like you didn't read the tutorial carefully enough.

Deprecated.h is not the same as deprecated.h, maybe? The deprecated.h file is included by MFRC522.h so I don't think that you should have to include it.

Please read the posting guidelines here (#7 for posting code and errors).

ieee488:
You didn't install a needed library.

Seems like you didn't read the tutorial carefully enough.

I`ve read the project about 10 times but it still does not seem to work

groundFungus:
Deprecated.h is not the same as deprecated.h, maybe? The deprecated.h file is included by MFRC522.h so I don't think that you should have to include it.

Please read the posting guidelines here (#7 for posting code and errors).

I have tried changing the capital letter but still the same error and I have checked my MFRC522 folder and it has the deprecated file in it

galigilabs:
I have tried changing the capital letter but still the same error and I have checked my MFRC522 folder and it has the deprecated file in it

If you're still getting the same error that would indicate you didn't actually change the capital letter since the error contains the capital letter.

If you want help with this you need to provide an exact set of instructions that will allow us to reproduce the problem. This means we need to know exactly where you got the libraries, how you installed them, and which board you're compiling for.