18 lines
267 B
C
18 lines
267 B
C
#ifndef INITFUNCTIONS_H
|
|
#define INITFUNCTIONS_H
|
|
|
|
#include <Arduino.h>
|
|
#include <WiFi.h>
|
|
#include "FS.h"
|
|
#include "SD.h"
|
|
#include "SPI.h"
|
|
//#include <IRremote.hpp>
|
|
#include "defines.h"
|
|
#include "secrets.h"
|
|
|
|
void initSDCard();
|
|
//void initIR();
|
|
void initWiFi();
|
|
|
|
#endif
|