20
20
* You should have received a copy of the GNU Lesser General Public License
21
21
* along with this program. If not, see <http://www.gnu.org/licenses/>.
23
#include "analogue_clock_mode.h"
23
#include "analogue_clock.h"
24
24
#include "config.h"
25
25
#include "Arduino.h"
27
27
#include "common.h"
30
void AnalogueClockMode::draw( int segment )
30
// the segment that the hour hand should be at
31
static int _hour_segment;
33
// the segment that the minute hand should be at
34
static int _minute_segment;
36
// the segment that the second hand should be at
37
static int _second_segment;
43
void analogue_clock_press()
50
void analogue_clock_draw( int segment )
32
52
bool draw_tick = segment && ( segment % ( NUM_SECOND_SEGMENTS * 5 ) == 0 ||
33
53
segment == 1 || segment == NUM_SEGMENTS - 1 );
34
54
bool draw_hour = segment == _hour_segment;
35
55
bool draw_hour_side = 2 >=
36
56
( abs( _hour_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
58
// ( segment == ( _hour_segment + 1 ) % NUM_SEGMENTS ) ||
59
// ( segment == ( _hour_segment + NUM_SEGMENTS - 1 ) % NUM_SEGMENTS );
37
60
bool draw_minute = segment == _minute_segment;
38
61
bool draw_minute_side = 1 >=
39
62
( abs( _minute_segment - segment ) + NUM_SEGMENTS ) % NUM_SEGMENTS;
56
void AnalogueClockMode::draw_reset()
79
void analogue_clock_draw_reset()
81
Time &time = Time::get_instance();
58
83
// calculate hand locations
59
_hour_segment = ( Time::get_hours() % 12 ) * 5 * NUM_SECOND_SEGMENTS +
60
( 5 * NUM_SECOND_SEGMENTS * Time::get_minutes() / 60 );
61
_minute_segment = Time::get_minutes() * NUM_SECOND_SEGMENTS +
62
( NUM_SECOND_SEGMENTS * Time::get_seconds() / 60 );
63
_second_segment = Time::get_seconds() * NUM_SECOND_SEGMENTS;
67
void AnalogueClockMode::activate()
73
void AnalogueClockMode::press()
84
_hour_segment = ( time.get_hours() % 12 ) * 5 * NUM_SECOND_SEGMENTS +
85
( 5 * NUM_SECOND_SEGMENTS * time.get_minutes() / 60 );
86
_minute_segment = time.get_minutes() * NUM_SECOND_SEGMENTS +
87
( NUM_SECOND_SEGMENTS * time.get_seconds() / 60 );
88
_second_segment = time.get_seconds() * NUM_SECOND_SEGMENTS;