refactor display

- part of components
- separation between LMS & driver
- move slimp message to squeezelite
This commit is contained in:
philippe44
2020-01-18 16:19:06 -08:00
parent 4dad444349
commit 5a9df7b0d5
42 changed files with 443 additions and 316 deletions

View File

@@ -49,8 +49,10 @@ uint32_t _gettime_ms_(void) {
return (uint32_t) (esp_timer_get_time() / 1000);
}
extern void cli_controls_init(void);
extern void sb_controls_init(void);
extern void sb_display_init(void);
void embedded_init(void) {
cli_controls_init();
sb_controls_init();
sb_display_init();
}