/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/modes/info_mode.cc

  • Committer: Tim Marston
  • Date: 2013-03-31 17:07:36 UTC
  • Revision ID: tim@ed.am-20130331170736-hphm2hg0y6l7w6z1
made rtc-test's DS1307 library a symlink to the main one in src/util

Show diffs side-by-side

added added

removed removed

27
27
#include "Arduino.h"
28
28
 
29
29
 
30
 
// display flavour
31
 
static int _flavour = 0;
32
 
 
33
 
 
34
 
static void reset_messages()
 
30
 
 
31
void InfoMode::draw_reset()
35
32
{
36
33
        switch( _flavour )
37
34
        {
38
 
        case 0:
39
 
                Text::reset_message( 0, Text::MODE_TOP | Text::MODE_THREEQUARTERS );
40
 
                break;
41
 
        case 1:
42
 
                Text::reset_message( 0, Text::MODE_TOP | Text::MODE_HALF );
43
 
                Text::reset_message( 1, Text::MODE_BOTTOM | Text::MODE_HALF );
 
35
        case 0: {
 
36
                        PString str0( Text::_messages[ 0 ], MESSAGE_LEN * 4 );
 
37
                        str0.format(
 
38
                                        "Propeller Clock mk.1   ...   "
 
39
                                        "Created by Tim and Dan Marston in 2012   ...   "
 
40
                                        "http://ed.am/dev/elec/propeller-clock" );
 
41
                        Text::set_message_text( 0, str0 );
 
42
                }
 
43
                break;
 
44
        case 1: {
 
45
                        PString str0( Text::_messages[ 0 ], MESSAGE_LEN );
 
46
                        PString str1( Text::_messages[ 1 ], MESSAGE_LEN );
 
47
                        str0.format( "RPM" );
 
48
                        unsigned long millis = ::millis();
 
49
                        str1.format( "%ld",
 
50
                                        (unsigned long)60 * 1000 / ( millis - _millis_last ) );
 
51
                        _millis_last = millis;
 
52
                        Text::set_message_text( 0, str0 );
 
53
                        Text::set_message_text( 1, str1 );
 
54
                }
 
55
                break;
 
56
        case 2: {
 
57
                        PString str0( Text::_messages[ 0 ], MESSAGE_LEN );
 
58
                        PString str1( Text::_messages[ 1 ], MESSAGE_LEN );
 
59
                        str0.format( "FPS" );
 
60
                        unsigned long millis = ::millis();
 
61
                        str1.format( "%ld",
 
62
                                        (unsigned long)1000 / ( millis - _millis_last ) );
 
63
                        _millis_last = millis;
 
64
                        Text::set_message_text( 0, str0 );
 
65
                        Text::set_message_text( 1, str1 );
 
66
                }
44
67
                break;
45
68
        }
46
69
}
47
70
 
48
71
 
49
 
void info_mode_press()
50
 
{
51
 
        if( ++_flavour >= 2 )
 
72
void InfoMode::activate()
 
73
{
 
74
        _flavour = 0;
 
75
        _millis_last = ::millis();
 
76
 
 
77
        reset_messages();
 
78
}
 
79
 
 
80
 
 
81
void InfoMode::press()
 
82
{
 
83
        if( ++_flavour >= 3 )
52
84
                _flavour = 0;
53
85
 
54
 
        // reset messages
55
86
        reset_messages();
56
87
}
57
88
 
58
89
 
59
 
void info_mode_draw( int segment )
60
 
{
61
 
        Text::draw( 0, segment );
62
 
        if( _flavour == 1 )
63
 
                Text::draw( 1, segment );
64
 
}
65
 
 
66
 
 
67
 
void info_mode_draw_reset()
68
 
{
69
 
        PString str0( Text::_messages[ 0 ], MESSAGE_LEN );
70
 
        PString str1( Text::_messages[ 1 ], MESSAGE_LEN );
71
 
        str0.begin();
72
 
        str1.begin();
 
90
void InfoMode::reset_messages()
 
91
{
 
92
        Text::reset();
73
93
 
74
94
        switch( _flavour )
75
95
        {
76
96
        case 0:
77
 
                str0.format(
78
 
                        "Propeller Clock mk.1   ...   "
79
 
                        "Created by Tim and Dan Marston in 2011   ...   "
80
 
                        "http://ed.am/dev/elec/propeller-clock" );
 
97
                Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_THREEQUARTERS |
 
98
                                Text::MODE_HSCROLL, Text::SCALE_SMALL );
81
99
                break;
82
 
        case 1:
83
 
                str0.format( "RPM" );
84
 
                str1.format( "%d", 123 );
 
100
        case 1: // fall through
 
101
        case 2:
 
102
                Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_HALF,
 
103
                                Text::SCALE_FAT );
 
104
                Text::set_up_message( 1, Text::MODE_BOTTOM | Text::MODE_HALF,
 
105
                                Text::SCALE_FAT );
85
106
                break;
86
107
        }
87
 
 
88
 
        Text::set_message( 0, str0 );
89
 
        Text::set_message( 1, str1 );
90
 
}
91
 
 
92
 
 
93
 
void info_mode_activate()
94
 
{
95
 
        _flavour = 0;
96
 
 
97
 
        // reset messages
98
 
        reset_messages();
99
108
}