97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
/****************************************************************************
|
|
my-ttgo-watch.ino
|
|
|
|
Tu May 22 21:23:51 2020
|
|
Copyright 2020 Dirk Brosswick
|
|
* Email: dirk.brosswick@googlemail.com
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
#include "config.h"
|
|
#include <Arduino.h>
|
|
|
|
#include "gui/gui.h"
|
|
#include "gui/splashscreen.h"
|
|
#include "gui/screenshot.h"
|
|
|
|
#include "hardware/display.h"
|
|
#include "hardware/powermgm.h"
|
|
#include "hardware/motor.h"
|
|
#include "hardware/wifictl.h"
|
|
|
|
#include "app/weather/weather.h"
|
|
#include "app/example_app/example_app.h"
|
|
|
|
TTGOClass *ttgo = TTGOClass::getWatch();
|
|
|
|
void setup()
|
|
{
|
|
motor_setup();
|
|
Serial.begin(115200);
|
|
Serial.printf("starting t-watch V1, version: " __FIRMWARE__ "\r\n");
|
|
ttgo->begin();
|
|
ttgo->lvgl_begin();
|
|
|
|
SPIFFS.begin();
|
|
display_setup( ttgo );
|
|
|
|
screenshot_setup();
|
|
|
|
splash_screen_stage_one( ttgo );
|
|
splash_screen_stage_update( "init serial", 10 );
|
|
|
|
splash_screen_stage_update( "init spiff", 20 );
|
|
if ( !SPIFFS.begin() ) {
|
|
splash_screen_stage_update( "format spiff", 30 );
|
|
SPIFFS.format();
|
|
}
|
|
|
|
splash_screen_stage_update( "init rtc", 50 );
|
|
ttgo->rtc->syncToSystem();
|
|
splash_screen_stage_update( "init powermgm", 100 );
|
|
powermgm_setup( ttgo );
|
|
splash_screen_stage_update( "init gui", 100 );
|
|
splash_screen_stage_finish( ttgo );
|
|
|
|
gui_setup();
|
|
lv_task_handler();
|
|
ttgo->bl->adjust( 32 );
|
|
|
|
/*
|
|
* add apps and widgets here!!!
|
|
*/
|
|
weather_app_setup();
|
|
example_app_setup();
|
|
/*
|
|
*
|
|
*/
|
|
|
|
wifictl_on();
|
|
display_set_brightness( display_get_brightness() );
|
|
|
|
Serial.printf("Total heap: %d\r\n", ESP.getHeapSize());
|
|
Serial.printf("Free heap: %d\r\n", ESP.getFreeHeap());
|
|
Serial.printf("Total PSRAM: %d\r\n", ESP.getPsramSize());
|
|
Serial.printf("Free PSRAM: %d\r\n", ESP.getFreePsram());
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
gui_loop( ttgo );
|
|
powermgm_loop( ttgo );
|
|
}
|