Basic add a libray question

I am including a link to a picture of the mystery I am trying to solve, you can see at the top the file camera_pins.h

Further down you can see the sketch when clicked on opens in the IDE but when I run the sketch I get the error message that camera_pins is not installed

How do you install an H file like that the Vendor Freenove had no answer in their tutorial

picture link

Your question may be answered in this forum thread.

1 Like

The easiest thing to do is to put the camera_pins.h file in the same folder as the sketch file and to ensure that this line of code in the sketch

#include "camera_pins.h"

The sketch will then look for the file in the sketch directory

A more general way to make the file available to all sketches is to create a folder named camera_pins in the libraries folder of your sketchbook and to put the file in there

Once you have done that the file can be #included in any sketch using

#include <camera_pins.h>
2 Likes

thanks

Choose the local option so it doesn't cause a problem later on.

1 Like

Solved the issue was a matter of not fully unzipping the files.
This a has been a nice experience this Freenove ESP32S3 kit FNK00085

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.