Showing posts with label Count Down Timer in Arduino. Show all posts
Showing posts with label Count Down Timer in Arduino. Show all posts

Thursday, January 24, 2019

Count Down Timer in Arduino

A simple program that I wrote using C in Arduino with the use of TM1637 seven-segment LCD display to perform count down. The code is very simple and easy to understand. I hope you will find my work useful. Thank you.

I am currently accepting programming work, it projects, school and application development.

programming projects, thesis and capstone projects, IT consulting.

work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com




                                                               Sample Program Output


Program Listing

/* Countdown timer in Arduino using seven segment LED
 *  Written By Mr. Jake R. Pomperada,MAED-IT
 *  January 24, 2019     8:21 PM  Thursday
 *  Bacolod City, Negros Occidental
 *  jakerpomperada@gmail.com
 */
#include "TM1637.h"

#define CLK 3
#define DIO 2

TM1637 disp(CLK,DIO);

void setup()
{
  disp.set(5);
  disp.init(D4056A);
}

void loop() {
  int a=2000;

  while (a>=1 ) {
  disp.display(a);
  delay(20);
  a-=1;
  if (a==1) {
    break;
  }
  }
}


DOWNLOAD SOURCE CODE HERE