Showing posts with label alarm. Show all posts
Showing posts with label alarm. Show all posts

Thursday, February 6, 2014

Simple Alarm with Shell Script

In this post, we are going to develop a simple alarm with shell scripts. To get the time we use date command. To play a sound file we use aplay command-line player. It is also a recorder. Since we are developing an alarm it must control the time continuously so we need an infinite loop. Source codes are given in the following. Source Codes:  #!/bin/bash # Purpose: Demo date command # Author: Mustafa Demir -www.eeecoder.blogspot.com-...
Read More