andunio 如何引用头文件
时间: 2024-02-02 08:04:31 浏览: 74
c语言编程常用头文件,下载即可引用。
在 Arduino 中,可以通过以下方式来引用头文件:
1. 在 .ino 文件中,使用 #include 指令来引用头文件。例如:
```c++
#include <Wire.h>
```
2. 在 .cpp 文件中,使用 #include 指令来引用头文件。例如:
```c++
#include "myheader.h"
```
注意,引用自定义头文件时需要使用双引号,而引用系统头文件时需要使用尖括号。
3. 在 .h 文件中,可以使用 #include 指令来引用其他头文件。例如:
```c++
#include <Wire.h>
#include "myotherheader.h"
```
在头文件中引用其他头文件可以方便地组织代码和定义常量和函数。
阅读全文