/* * This file is part of the "bluetoothheater" distribution * (https://gitlab.com/mrjones.id.au/bluetoothheater) * * Copyright (C) 2018 Ray Jones * * 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 3 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, see . * */ #include "ClockScreen.h" #include "KeyPad.h" #include "../Protocol/helpers.h" #include "fonts/Tahoma16.h" #include "../RTC/Clock.h" /////////////////////////////////////////////////////////////////////////// // // CClockScreen // // This screen presents a large format clock // /////////////////////////////////////////////////////////////////////////// CClockScreen::CClockScreen(C128x64_OLED& display, CScreenManager& mgr) : CScreenHeader(display, mgr) { _colon = false; } void CClockScreen::showTime(int) { // override and DO NOTHING! } bool CClockScreen::show() { CScreenHeader::show(); const BTCDateTime& now = Clock.get(); char str[32]; // if(now.second() & 0x01) if(_colon) sprintf(str, "%d:%02d", now.hour(), now.minute()); else sprintf(str, "%d %02d", now.hour(), now.minute()); _colon = !_colon; int yPos = 25; { CTransientFont AF(_display, &tahoma_16ptFontInfo); // temporarily use a large font _printMenuText(_display.xCentre(), yPos, str, false, eCentreJustify); } sprintf(str, "%s %d %s %d", now.dowStr(), now.day(), now.monthStr(), now.year()); _printMenuText(_display.xCentre(), 56, str, false, eCentreJustify); return true; } bool CClockScreen::keyHandler(uint8_t event) { if(event & keyPressed) { // press LEFT if(event & key_Left) { _ScreenManager.prevMenu(); } // press RIGHT if(event & key_Right) { _ScreenManager.nextMenu(); } // press UP if(event & key_Up) { _ScreenManager.selectMenu(CScreenManager::BranchMenu, CScreenManager::SetClockUI); // switch to clock set screen } // press DOWN if(event & key_Down) { _ScreenManager.selectMenu(CScreenManager::TimerMenuLoop); // switch to timer set screen loop } } return true; }