-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.ino
65 lines (53 loc) · 1.38 KB
/
clock.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <Arduino.h>
#include <TM1637Display.h>
// Define the pin connections
#define CLK_PIN 4
#define DIO_PIN 5
TM1637Display display(CLK_PIN, DIO_PIN);
// Define segment patterns for digits 0-9 and blank
const uint8_t segments[] = {
0b00111111, // 0
0b00000110, // 1
0b01011011, // 2
0b01001111, // 3
0b01100110, // 4
0b01101101, // 5
0b01111101, // 6
0b00000111, // 7
0b01111111, // 8
0b01100111, // 9
0b00000000 // Blank
};
unsigned long previousMillis = 0;
unsigned long interval = 60000; // 1 minute interval
byte hours = 7;
byte minutes = 29;
void setup() {
// Initialize the display
display.setBrightness(7); // Adjust the brightness (0-7)
}
void loop() {
unsigned long currentMillis = millis();
// Check if the interval has elapsed
if (currentMillis - previousMillis >= interval) {
// Increment the time
minutes++;
if (minutes >= 60) {
minutes = 0;
hours++;
if (hours >= 24) {
hours = 0;
}
}
previousMillis = currentMillis;
}
byte hour_1 = hours / 10;
byte hour_2 = hours % 10;
byte minute_1 = minutes / 10;
byte minute_2 = minutes % 10;
display.setSegments(&segments[hour_1], 1, 0);
display.setSegments(&segments[hour_2], 1, 1);
display.setSegments(&segments[minute_1], 1, 2);
display.setSegments(&segments[minute_2], 1, 3);
delay(100); // Small delay to avoid flickering
}