Subversion Repositories Projects

Rev

Rev 1115 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1115 Rev 1117
Line 287... Line 287...
287
/**************************************************************/
287
/**************************************************************/
Line 288... Line 288...
288
 
288
 
289
void Beep(uint8_t time)
289
void Beep(uint8_t time)
290
{
290
{
291
  PORTB |= (1<<BEEPER);
-
 
292
//  PINB &= ~(1<<BEEPER);
291
  PORTB |= (1<<BEEPER);
293
  _delay_ms(time);
-
 
294
//  PINB |= (1<<BEEPER);
292
  _delay_ms(time);
295
  PORTB &= ~(1<<BEEPER);
293
  PORTB &= ~(1<<BEEPER);
Line 296... Line 294...
296
}
294
}
297
 
295