forked from khoih-prog/MDNS_Generic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWiFiMultiFileProject.ino
More file actions
35 lines (24 loc) · 1.25 KB
/
Copy pathWiFiMultiFileProject.ino
File metadata and controls
35 lines (24 loc) · 1.25 KB
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
/****************************************************************************************************************************
multiFileProject.ino
mDNS library to support mDNS (registering services) and DNS-SD (service discovery).
Based on and modified from https://github.com/arduino-libraries/ArduinoMDNS
Built by Khoi Hoang https://github.com/khoih-prog/MDNS_Generic
Licensed under MIT license
*****************************************************************************************************************************/
// To demo how to include files in multi-file Projects
// The .hpp contains only definitions, and can be included as many times as necessary, without `Multiple Definitions` Linker Error
// The .h contains implementations, and can be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
#include "defines.h"
#include "arduino_secrets.h"
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
#include "MDNS_Generic.h"
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
#include "MDNS_Responder.h"
#include "multiFileProject.h"
void setup()
{
}
void loop()
{
// put your main code here, to run repeatedly:
}