-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkaruino.ino
417 lines (340 loc) · 8.27 KB
/
karuino.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/**
* Karuino
* An arduino based clock using an LED matrix display and a real time clock module
* By Stefan Ostermann 2020
* BSD-2
*
* */
#include <MD_Parola_lib.h>
#include <MD_Parola.h>
#include <MD_MAX72xx_lib.h>
#include <MD_MAX72xx.h>
#include "MyDS3231.h"
// Adafruit Sensor Library
#include "DHT.h"
//display
#define HARDWARE_TYPE MD_MAX72XX::FC16_HW
#define MAX_DEVICES 4
// sensor
#define DHTTYPE DHT22 // DHT 22 (AM2302)
// Wiring:
#define CLK_PIN 9 // or SCK
#define DATA_PIN 8 // or MOSI
#define CS_PIN 10 // or SS
// Button wiring:
// RTC SDA: A4
// RTC SCL: A5
#define MINUS_BUTTON 6
#define PLUS_BUTTON 7
#define MODE_BUTTON 5
#define BRIGHT_BUTTON 4
// Sensor wiring
#define DHTPIN 2
// Modes:
#define TIME_MODE 0
#define TEMP_MODE 1
#define HUMI_MODE 2
#define DATE_MODE 3
#define MAX_MODE 3
uint8_t mode = TIME_MODE;
// Button press modes:
#define MODEBUTTON_NONE 0
#define MODEBUTTON_SHORT 1
#define MODEBUTTON_LONG 2
// Modes Settings:
#define SETTINGS_NONE 0
#define SETTINGS_MINUTE 1
#define SETTINGS_HOUR 2
#define SETTINGS_DAY 3
#define SETTINGS_MONTH 4
#define SETTINGS_YEAR 5
#define MAX_SETTINGS_MODE 5
// Button timings:
#define BUTTON_DELAY 180
// after this, long button press detected:
#define BUTTON_LONG 1000
// Real time clock:
MyDS3231 RTC(0x68);
// LED Display:
MD_Parola mx = MD_Parola(HARDWARE_TYPE, DATA_PIN, CLK_PIN, CS_PIN, MAX_DEVICES);
// Sensor:
DHT dht(DHTPIN, DHTTYPE);
uint8_t settingsMode = SETTINGS_NONE;
uint8_t lastSecond = 0;
unsigned long lastTime = 0;
bool refresh = false;
uint8_t intensity = 0;
// the previous state from the input pin
int lastModeButtonState = LOW;
// the current reading from the input pin
int currentModeButtonState;
unsigned long modePressedTime = 0;
unsigned long modeReleasedTime = 0;
boolean longPressDetectedWhilePressing = false;
char dateString[11];
char timeString[9];
float humidity = 0.0;
float temperature = 0.0;
#define DELAYTIME 100;
void setup()
{
Serial.begin(115200);
pinMode(MINUS_BUTTON, INPUT);
pinMode(PLUS_BUTTON, INPUT);
pinMode(MODE_BUTTON, INPUT);
pinMode(BRIGHT_BUTTON, INPUT);
// Intialize the object:
mx.begin();
// Set the intensity (brightness) of the display (0-15):
mx.setIntensity(intensity);
// Clear the display:
mx.displayClear();
dht.begin();
}
void loop()
{
if (mx.displayAnimate() && mode == DATE_MODE)
{
mode = TIME_MODE;
}
RTC.nowDateTime();
// Reading temperature or humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
humidity = dht.readHumidity();
// Read temperature as Celsius
temperature = dht.readTemperature();
uint8_t minusButtonState = digitalRead(MINUS_BUTTON);
uint8_t plusButtonState = digitalRead(PLUS_BUTTON);
uint8_t brightButtonState = digitalRead(BRIGHT_BUTTON);
uint16_t button_press_diff = millis() - lastTime;
bool somethingHappened = false;
if (button_press_diff > BUTTON_DELAY && (minusButtonState == HIGH || plusButtonState == HIGH))
{
uint8_t inc = 1;
if (minusButtonState == HIGH) {
inc = -1;
}
if (settingsMode==SETTINGS_MINUTE) {
increaseMinute(inc);
} else if (settingsMode==SETTINGS_HOUR) {
increaseHour(inc);
} else if (settingsMode==SETTINGS_DAY) {
increaseDay(inc);
} else if (settingsMode==SETTINGS_MONTH) {
increaseMonth(inc);
} else if (settingsMode==SETTINGS_YEAR) {
increaseYear(inc);
}
somethingHappened = true;
}
if (brightButtonState == HIGH && button_press_diff > BUTTON_DELAY)
{
intensity += 4;
if (intensity > 15)
{
intensity = 0;
}
mx.setIntensity(intensity);
somethingHappened = true;
}
uint8_t modeButtonState = processModeButton();
if (modeButtonState == MODEBUTTON_LONG)
{
if (settingsMode==0) {
settingsMode=1;
} else {
settingsMode=0;
}
somethingHappened = true;
}
else if (modeButtonState == MODEBUTTON_SHORT)
{
if (settingsMode==SETTINGS_NONE) {
nextMode();
} else {
nextSettingsMode();
}
somethingHappened = true;
}
if (somethingHappened)
{
lastTime = millis();
refresh = true;
RTC.nowDateTime();
}
if (refresh || (mode==TIME_MODE && lastSecond != RTC.nowSec)) {
display();
}
refresh = false;
lastSecond = RTC.nowSec;
}
void nextMode()
{
mode++;
if (mode > MAX_MODE)
{
mode = 0;
}
}
void nextSettingsMode()
{
settingsMode++;
if (settingsMode > MAX_SETTINGS_MODE)
{
settingsMode = 1;
}
}
uint8_t processModeButton()
{
// read the state of the switch/button:
currentModeButtonState = digitalRead(MODE_BUTTON);
uint8_t retval = MODEBUTTON_NONE;
unsigned long pressDuration;
if (lastModeButtonState == LOW && currentModeButtonState == HIGH)
{ // button is pressed
modePressedTime = millis();
longPressDetectedWhilePressing = false;
}
else if (lastModeButtonState == HIGH && currentModeButtonState == LOW && !longPressDetectedWhilePressing)
{ // button is released
modeReleasedTime = millis();
pressDuration = modeReleasedTime - modePressedTime;
if (pressDuration > BUTTON_LONG)
{
retval = MODEBUTTON_LONG;
}
else
{
retval = MODEBUTTON_SHORT;
}
}
else if (lastModeButtonState == HIGH && currentModeButtonState == HIGH && !longPressDetectedWhilePressing)
{ // detect long press while pressing
pressDuration = millis() - modePressedTime;
if (pressDuration > BUTTON_LONG)
{
retval = MODEBUTTON_LONG;
longPressDetectedWhilePressing = true;
}
}
// save the the last state
lastModeButtonState = currentModeButtonState;
return retval;
}
char* getNumberSettingsText(char* dest, char* prefix, uint8_t number) {
dest[0]='\0';
char numberText[4];
itoa(number, numberText, 10);
strcat(dest,prefix);
strcat(dest,numberText);
return dest;
}
char* getFloatText(char* dest, char* suffix, float number) {
dest[0]='\0';
char numberText[8];
dtostrf(number,4, 1, numberText);
strcat(dest,numberText);
strcat(dest,suffix);
return dest;
}
void display()
{
if (settingsMode != SETTINGS_NONE)
{
char timeStr[10];
switch (settingsMode) {
case SETTINGS_MINUTE:
getNumberSettingsText(timeStr,"mm:",RTC.nowMin);
break;
case SETTINGS_HOUR:
getNumberSettingsText(timeStr,"hh:",RTC.nowHour);
break;
case SETTINGS_DAY:
getNumberSettingsText(timeStr,"DD:",RTC.nowDay);
break;
case SETTINGS_MONTH:
getNumberSettingsText(timeStr,"MM:",RTC.nowMonth);
break;
case SETTINGS_YEAR:
getNumberSettingsText(timeStr,"YY:", RTC.nowYear);
}
mx.print(timeStr);
}
else
{
switch (mode)
{
case TIME_MODE:
RTC.getTimeString(timeString, HH_MM);
mx.setTextAlignment(PA_LEFT);
mx.print(timeString);
break;
case DATE_MODE:
RTC.getDateString(timeString, false);
mx.displayClear();
mx.displayScroll(timeString, PA_LEFT, PA_SCROLL_LEFT, 25);
break;
case TEMP_MODE:
getFloatText(timeString," C",temperature);
mx.print(timeString);
break;
case HUMI_MODE:
getFloatText(timeString,"%",humidity);
mx.print(timeString);
break;
}
}
}
void increaseHour(uint8_t incVal)
{
uint8_t newHour = 0;
newHour = RTC.nowHour + incVal;
if (newHour > 23)
{
newHour = 0;
}
RTC.setTime(newHour, RTC.nowMin, RTC.nowSec);
}
void increaseMinute(uint8_t incVal)
{
uint8_t newMinute = 0;
newMinute = RTC.nowMin + incVal;
if (newMinute > 59)
{
newMinute = 0;
}
RTC.setTime(RTC.nowHour, newMinute, RTC.nowSec);
}
void increaseDay(uint8_t incVal) {
uint8_t newDay = 1;
newDay = RTC.nowDay + incVal;
if (newDay > 31)
{
newDay = 1;
} else if (newDay<1) {
newDay = 31;
}
RTC.setDate(newDay, RTC.nowMonth, RTC.nowYear);
}
void increaseMonth(uint8_t incVal) {
uint8_t newMonth = 1;
newMonth = RTC.nowMonth + incVal;
if (newMonth > 12)
{
newMonth = 1;
} else if (newMonth<1) {
newMonth = 12;
}
RTC.setDate(RTC.nowDay, newMonth, RTC.nowYear);
}
void increaseYear(uint8_t incVal) {
uint8_t newYear = 1;
newYear = RTC.nowYear + incVal;
if (newYear > 40)
{
newYear = 20;
} else if (newYear<20) {
newYear = 40;
}
RTC.setDate(RTC.nowDay, RTC.nowMonth, newYear);
}