bianchi77
Advanced Member level 4
- Joined
- Jun 11, 2009
- Messages
- 1,313
- Helped
- 21
- Reputation
- 44
- Reaction score
- 20
- Trophy points
- 1,318
- Location
- California
- Activity points
- 9,442
Guys,
I created a clock using DS1307,
How can I beep it everytime it's reaching zero ?
I have created:
Any ideas ?
thanks
I created a clock using DS1307,
How can I beep it everytime it's reaching zero ?
I have created:
Code:
//turn on chime
minute = num2str(ds1307_addr[1]);
second = num2str(ds1307_addr[0]);
if ((second =="00") && (minute =="00"))
{
beep_sound_2();
}
Any ideas ?
thanks