This repository was archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmultiFileProject.ino
59 lines (42 loc) · 1.64 KB
/
multiFileProject.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/****************************************************************************************************************************
multiFileProject.ino
For ESP8266 boards
Written by Khoi Hoang
Built by Khoi Hoang https://github.com/khoih-prog/ESP8266TimerInterrupt
Licensed under MIT license
*****************************************************************************************************************************/
// To demo how to include files in multi-file Projects
#ifndef ESP8266
#error This code is designed to run on ESP8266 platform! Please check your Tools->Board setting.
#endif
#define ESP8266_TIMER_INTERRUPT_VERSION_MIN_TARGET "ESP8266TimerInterrupt v1.6.0"
#define ESP8266_TIMER_INTERRUPT_VERSION_MIN 1006000
#include "multiFileProject.h"
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
#include "ESP8266TimerInterrupt.h"
#include "ESP8266_ISR_Timer.h"
void doingSomething1()
{
Serial.println("doingSomething1 triggered");
}
void setup()
{
Serial.begin(115200);
while (!Serial && millis() < 5000);
delay(500);
Serial.println("\nStart multiFileProject");
Serial.println(ESP8266_TIMER_INTERRUPT_VERSION);
#if defined(ESP8266_TIMER_INTERRUPT_VERSION_MIN)
if (ESP8266_TIMER_INTERRUPT_VERSION_INT < ESP8266_TIMER_INTERRUPT_VERSION_MIN)
{
Serial.print("Warning. Must use this example on Version equal or later than : ");
Serial.println(ESP8266_TIMER_INTERRUPT_VERSION_MIN_TARGET);
}
#endif
setupISR(); // in multifileProject.cpp
ISR_Timer.setTimeout(5000, doingSomething1);
}
void loop()
{
// put your main code here, to run repeatedly:
}