-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FTP server as service (with settings in menu) #182
Conversation
@@ -136,6 +138,49 @@ void LauncherApp::run() { | |||
ITEM::MENU("Мережі WiFi", [this]() { this->wifiManager(); }), | |||
ITEM::MENU("Потужність WiFi", [this]() { this->setWiFiTxPower(); }), | |||
ITEM::MENU("Звук", [this]() { this->runApp<SoundConfigApp>(); }), | |||
ITEM::SUBMENU("Сервіси", { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
я так розумію що більше двох рівнів вкладень меню, тут не підтримується, судячи з того як ти вирішив проблему з таблицею розділів :)
Сервіси було б непогано запхати в налаштування.
може залишити просто від цих трьох ITEM:MENU, ITEM:SUBMENU і ITEM:APP щось одне, наприклад вон той самий MENU, а всередини в лямбді організовати ще одне ITEM:MENU і т.д.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Чого ж не пітримується? Налаштування - Сервіси - FTP - ...
Не хочеться рефакторити ITEM... бо ця структура доживає свої останні дні. По суті після додавання коллбеку в меню, можна стіорювати одразу його структуру, тоді вже і оптимізувати.
Зараз по суті APP та MENU відрізняються тільки наявністью дефолтної іконки
Опис: Клас для малювання сповіщень | ||
--]] | ||
|
||
WHITE = display.color565(255, 255, 255) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не очікував тут побачити код на луа :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Поспіх. А він, як відомо, потрібен коли руку від собаки прибираєш)
Все виправив.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
#181