Does the new Arduino IDE allow you to create files within a project that will be visible to the project and easy to insert via #include?
If this feature already works, how do I get it? There is only a sketchbook.
1 Like
Hi @cevepe!
Yes.
- Click the downward pointing triangle on the right side of the IDE's tab bar.
- From the dropdown menu, click "New Tab"
- In the "Name for new file" dialog that appears, add the name for the file you want to add. If you want to include it in your sketch via an
#include
directive, you must use the.h
file extension (e.g.,MyHeader.h
) for the file. You also have the option of using.ino
(Arduino Language files, the default),.cpp
(C++ programming language files),.c
(C programming language files),.S
(assembly language files). - Click the OK button
Make sure to use the double quotes syntax in your #include
directives for files in your sketch. For example:
#include "MyHeader.h"
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.