Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define CLK 10
- #define DIO 11
- #include "GyverTM1637.h"
- #include <TimerMs.h>
- TimerMs clock(1000, 1,0);
- GyverTM1637 disp(CLK, DIO);
- int time_remaining = 3600;
- void setup() {
- // put your setup code here, to run once:
- disp.clear();
- disp.brightness(4);
- }
- void loop() {
- if (clock.tick()){
- time_remaining--;
- FillTime();
- /*ShowBuff();*/
- }
- }
- void FillTime(){
- int mins = time_remaining / 60;
- int secs = time_remaining % 60;
- disp.displayClockScroll(mins, secs,10);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement