Missing libraries

Hello,
I have a valid .ino file that contains several calls to libraries that are currently missing.
I have the corresponding .h files.
How can I get the Arduino 1.8.19 IDE to recognise them ?

Bonjour,
J'ai un fichier .ino correct dans lequel plusieurs appels à librairies actuellement absentes figurent.
Je dispose des fichiers .h correspondants.
Comment faire pour que l'IDE ARDUINO 1.8.19 les prenne en compte ?

Most often a library not only consist of the .h file. There maybe many more files. You can try to look for the name of library (mostly the name of the.h file ) in library manager and install it from there.
If you really only need your .h files without anything else, you can copy them to your sketch folder and include them with "" instead of <>:
#include "myfile.h"

We need to see your source code. Aply the Auto Formatter then Coipy for Forum and post in a reply. Also post the verbose compile log.

Thank you for your replies.
"MicroBahner" – indeed, the error message disappeared after I copied the necessary ".h" files into the .ino file folder.
Everything is fine now :slightly_smiling_face: