more feature

This commit is contained in:
sharandac
2020-07-09 16:43:48 +02:00
parent dbe29b31b1
commit 8ac776e670
49 changed files with 1638 additions and 442 deletions

24
src/gui/splashscreen.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef _SPLASHSCREEN_H
#define _SPLASHSCREEN_H
/*
* @brief start splashscreen
*
* @param ttgo pointer to TTGOClass
*/
void splash_screen_stage_one( TTGOClass *ttgo );
/*
* @brief update spash screen text and bar
*
* @param msg splash screen text
* @param value splash screen bar value (0-100)
*/
void splash_screen_stage_update( const char* msg, int value );
/*
* @brief finish splashscreen
*
* @param ttgo pointer to TTGOClass
*/
void splash_screen_stage_finish( TTGOClass *ttgo );
#endif // _SPLASHSCREEN_H