renamed .ino file according to folder.

This commit is contained in:
s.aydarov
2024-12-15 05:39:46 -08:00
parent ffa1564a45
commit 8c15a865ee

14
eye_trainer.ino Normal file
View File

@@ -0,0 +1,14 @@
#include "EyeTrainerMain.h"
EyeTrainerMain m_EyeTrainerMain;
void setup()
{
m_EyeTrainerMain = EyeTrainerMain();
m_EyeTrainerMain.setup();
}
void loop()
{
m_EyeTrainerMain.loop();
}