mirror of
https://github.com/Crocmagnon/buzzer.git
synced 2024-11-25 01:18:06 +01:00
17 lines
301 B
C
17 lines
301 B
C
#ifndef __SETUP_H__
|
|
#define __SETUP_H__
|
|
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <Adafruit_SSD1306.h>
|
|
#include <Preferences.h>
|
|
#include <Audio.h>
|
|
|
|
void setupScreen();
|
|
void setupSPIFFS();
|
|
void setupSDCard();
|
|
void setupAudio();
|
|
void selectDefaultFile();
|
|
void setupWifi();
|
|
void setupWebServer();
|
|
|
|
#endif
|