/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/button.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
Button::Button( int pin )
28
28
        :
29
29
        _pin( pin ),
30
 
        _state( digitalRead( pin )? false : true ),
31
 
        _state_millis( ::millis() ),
32
 
        _state_duration( 0 ),
33
 
        _pending_event( 0 )
 
30
        _state( false ),
 
31
        _millis_state( 0 ),
 
32
        _millis_done( 0 ),
 
33
        _pending_event( 0 ),
 
34
        _last_real_state( false ),
 
35
        _millis_real_state( 0 )
34
36
{
35
37
}
36
38
 
46
48
        // get time
47
49
        unsigned long millis = ::millis();
48
50
 
49
 
        // get state and check for change
50
 
        bool state = digitalRead( _pin )? false : true;
51
 
        if( state != _state )
52
 
        {
53
 
                _state = state;
54
 
                _state_millis = millis;
55
 
                _state_duration = 0;
 
51
 
 
52
        // get button state
 
53
        bool real_state = digitalRead( _pin )? false : true;
 
54
 
 
55
        // if real state has changed, reset the timer
 
56
        if( real_state != _last_real_state ) {
 
57
                _last_real_state = real_state;
 
58
                _millis_real_state = millis;
56
59
        }
57
60
 
58
 
        // if button has been pressed for any amount of time
59
 
        if( state && millis > _state_millis )
 
61
        // work out current state; if the real state timer has elapsed, set our
 
62
        // state to real state
 
63
        bool state = _state;
 
64
        if( _last_real_state != state && millis - _millis_real_state > 15 )
 
65
                state = _last_real_state;
 
66
 
 
67
        // if the button is pressed
 
68
        if( state )
60
69
        {
61
 
                // calculate new duration for this state
62
 
                unsigned long duration = millis - _state_millis;
63
 
 
64
 
                // check through events to see if the button has been
65
 
                // pressed long enough to trigger one
 
70
                // if it has just been pressed, record the time now and reset how much
 
71
                // of the press we have already generated events for
 
72
                if( !_state ) {
 
73
                        _millis_state = millis;
 
74
                        _millis_done = 0;
 
75
                }
 
76
 
 
77
                // calculate time that has elapsed in total this press
 
78
                unsigned long elapsed = millis - _millis_state;
 
79
 
 
80
                // look through the events to see if any need to be triggered
66
81
                for( int a = 0; _event_times[ a ]; a++ )
67
82
                {
68
 
                        // if this event is in the future, we can stop looking
69
 
                        if( duration < (unsigned long)_event_times[ a ] )
70
 
                                break;
71
 
 
72
 
                        // if this event happened since the previous update, we
73
 
                        // can trigger it
74
 
                        if( _state_duration < (unsigned long)_event_times[ a ] )
75
 
                                _pending_event = a + 1;
 
83
                        // if this event is in the future, stop
 
84
                        if( (unsigned)_event_times[ a ] > elapsed ) break;
 
85
 
 
86
                        // if this event has already been triggered, skip
 
87
                        if( (unsigned)_event_times[ a ] <= _millis_done ) continue;
 
88
 
 
89
                        // trigger event
 
90
                        _pending_event = a + 1;
76
91
                }
77
92
 
78
 
                // update the duration we've accounted for
79
 
                _state_duration = duration;
 
93
                // update the amount of press we have processed
 
94
                _millis_done = elapsed;
80
95
        }
 
96
 
 
97
        // update our state
 
98
        _state = state;
81
99
}
82
100
 
83
101
 
87
105
        _pending_event = 0;
88
106
        return event;
89
107
}
 
108
 
 
109
 
 
110
bool Button::get_state()
 
111
{
 
112
        return _state;
 
113
}