Advertisement
Krypt0n_C0R3

Untitled

Mar 8th, 2023
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. #define CLK 10
  2. #define DIO 11
  3.  
  4. #include "GyverTM1637.h"
  5. #include <TimerMs.h>
  6. TimerMs clock(1000, 1,0);  
  7. GyverTM1637 disp(CLK, DIO);
  8. int time_remaining = 3600;
  9.  
  10. void setup() {
  11.   // put your setup code here, to run once:
  12.   disp.clear();
  13.   disp.brightness(4);
  14. }
  15.  
  16. void loop() {
  17.   if (clock.tick()){
  18.     time_remaining--;
  19.     FillTime();
  20.     /*ShowBuff();*/
  21.   }
  22.  
  23. }
  24.  
  25. void FillTime(){
  26.   int mins = time_remaining / 60;
  27.   int secs = time_remaining % 60;
  28.   disp.displayClockScroll(mins, secs,10);
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement