172
175
// pin 4 needs to be inverted (it's driving a PNP)
173
176
// NOTE: PIN 4 TEMPORARILY DISABLED
174
if( num == 4 ) on = true; //!on
177
// if( num == 4 ) on = true;
178
if( num == 4 ) on = !on;
176
180
digitalWrite( num, on? HIGH : LOW );
180
184
// draw a segment for the test display
181
void drawNextSegment_test( bool reset )
185
void drawNextSegment_test( int segment )
183
// keep track of segment
184
static unsigned int segment = 0;
185
if( reset ) segment = 0;
188
187
// turn on inside and outside LEDs
190
188
ledOn( 9, true );
192
190
// display segment number in binary across in the inside LEDs,
193
191
// with the LED on pin 12 showing the least-significant bit
194
for( int a = 0; a < 8; a++ )
192
for( int a = 0; a < 9; a++ )
195
193
ledOn( 8 - a, ( segment >> a ) & 1 );
199
197
// draw a segment for the time display
200
void drawNextSegment_time( bool reset )
198
void drawNextSegment_time( int segment )
202
static int second = 0;
203
static int segment = 0;
205
// handle display reset
200
int second = segment / NUM_SECOND_SEGMENTS;
201
int second_segment = segment % NUM_SECOND_SEGMENTS;
211
203
// what needs to be drawn?
212
bool draw_tick = !segment && second % 5 == 0;
213
bool draw_second = !segment && second == time_seconds;
214
bool draw_minute = !segment && second == time_minutes;
215
bool draw_hour = !segment && second == time_hours;
204
bool draw_tick = !second_segment && second % 5 == 0;
205
bool draw_second = !second_segment && second == time_seconds;
206
bool draw_minute = !second_segment && second == time_minutes;
207
bool draw_hour = !second_segment && second == time_hours;
218
210
ledOn( 9, true );
221
213
ledOn( a, draw_minute || draw_second );
222
214
for( int a = 0; a <= 5; a++ )
223
215
ledOn( a, draw_minute || draw_second || draw_hour );
226
if( ++segment >= NUM_SECOND_SEGMENTS ) {
236
222
static int draw_mode = 0;
224
// keep track of segment
226
static int segment = 0;
227
if( reset ) segment = 0;
229
static int segment = NUM_SEGMENTS - 1;
230
if( reset ) segment = NUM_SEGMENTS - 1;
238
233
// handle mode switch requests
239
234
if( reset && inc_draw_mode ) {
240
235
inc_draw_mode = false;