Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ZaparooEsp32/FeedbackManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ void FeedbackManager::init(Preferences* prefs) {
i2sDoutPin = preferences->getInt("i2sDoutPin", 25);
setupPins();
delay(500);
createUidMappingFile();

}

Expand Down
2 changes: 1 addition & 1 deletion ZaparooEsp32/FeedbackManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class FeedbackManager {
private:
Preferences* preferences;
void setupPins();
void createUidMappingFile();
public:
float audioGain = 1.0;
bool wifiLedEnabled = false;
Expand Down Expand Up @@ -62,4 +61,5 @@ class FeedbackManager {
int playAudio(const char* audioPath);
void cardInsertedActions(ZaparooToken* obj);
void cardRemovedActions(ZaparooToken* obj);
void createUidMappingFile();
};
1 change: 1 addition & 0 deletions ZaparooEsp32/ZaparooEsp32.ino
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ void setup() {
}
fileManager->setServer(&server);
fileManager->begin();
feedback.createUidMappingFile();
}

void loop() {
Expand Down
Loading