/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/settings_mode.cc

  • Committer: edam
  • Date: 2012-03-20 22:13:38 UTC
  • Revision ID: tim@ed.am-20120320221338-4zvmyesujc0zwwsx
updated arduino makefile

Show diffs side-by-side

added added

removed removed

42
42
{
43
43
        switch( _item )
44
44
        {
45
 
        case TIME_SET_IDX:
 
45
/*      case TIME_SET_IDX:
46
46
                switch( _part ) {
47
47
                case 0: Time::inc_hours(); break;
48
48
                case 1: Time::inc_minutes(); break;
55
55
                case 1: Time::inc_month(); break;
56
56
                case 2: Time::inc_day(); break;
57
57
                }
58
 
                break;
 
58
                break;*/
59
59
        case FONT_SET_IDX:
60
60
                TextRenderer::inc_font();
61
61
                break;
62
62
        }
63
63
}
64
64
 
 
65
 
65
66
static void reset_messages()
66
67
{
67
68
        Text::reset_message( 0, Text::MODE_TOP | Text::MODE_ALL );
104
105
        switch( _item ) {
105
106
        case TIME_SET_IDX:
106
107
                if( _part == 0 && flash )
107
 
                        str0.print( ( Time::get_hours() % 12 ) < 10? " " : "  " );
 
108
                        str0.print( "  " );
108
109
                else
109
 
                        str0.format( "%d", Time::get_hours() % 12 );
 
110
                        str0.format( "%2d", Time::get_hours() % 12 );
110
111
                str0.print( ':' );
111
112
                if( _part == 1 && flash )
112
113
                        str0.print( "  " );
117
118
                        str0.print( "  " );
118
119
                else
119
120
                        str0.format( "%02d", Time::get_seconds() );
120
 
                str0.print( ' ' );
121
121
                if( _part == 0 && flash )
122
122
                        str0.print( "  " );
123
123
                else