Include / Import / Add File?

I have a program that has a bunch of #define's in the top of the sketch. Most of them are setting that get adjusted to change the way the program works. The rest are the pins and their uses. I would like to create a .h file to hold the header of the sketch, so that when I adjust the program, I only make changes to the .h file.

Do I use #include file.h at the top of the sketch and then input the header into a file name file.h?

And what is the difference between include and import?

Lets say your sketch is Blink.ino
Move your defines to Blink.h in the same folder as Blink.ino
Add:
include "Blink.h" to Blink.ino

Ok, It was a syntax error. It needs to be #include "something.h"
Got it. :wink: