move wifi and sd init functions to cpp file

This commit is contained in:
StrangeD0s
2024-07-24 00:37:00 +02:00
parent 2dd26918df
commit 5c2968eead
3 changed files with 87 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
#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