-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds3231-tests.sb
112 lines (91 loc) · 1.87 KB
/
ds3231-tests.sb
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
//*****************************************************************************
// Project: RM186/BL600 DS3231 library tests
// Copyright (C) 2016 Jose Marcelino - Metavurt Ltd
//*****************************************************************************/
#include "ds3231-lib.sb"
DIM rc
DIM handle
DIM nSlaveAddr
DIM stWrite$, stRead$, nReadLen
dim i, res, nRegVal
FUNCTION HandlerTimer0()
print "."
ENDFUNC 0
// Event handler for the timer
ONEVENT EVTMR0 CALL HandlerTimer0
rc=I2cOpen(100000,0,handle)
if rc!= 0 THEN
print "\nFailed to open I2C interface with error code ";integer.h' rc
else
print "\nI2C open success \nHandle is "; handle; "\n"
endif
res = setClockMode(1)
if res == 0 then
print "\nChanged to AM/PM mode"
endif
// Try to set clock to 5PM
res = setHour(17)
if res == 0 then
print "\nHour changed"
endif
// Test read hours and AM/PM mode
dim hour, h12, pm
res = getHour(hour, h12, pm)
if res == 0 THEN
print "\n12h clock: "
if h12 > 0 then
print "Yes (use AM/PM)"
else
print "No (24h)"
endif
print "\nHour: "; hour
if h12 > 0 then
if pm then
print "PM"
else
print "AM"
endif
endif
endif
// Test read minutes
dim minutes
res = getMinutes(minutes)
if res == 0 THEN
print "\nMinute: ";minutes
endif
// Test read seconds
for i = 1 to 10 step 1
dim sec
res = getSeconds(sec)
if res == 0 THEN
print "\nSecond: "; sec
endif
TimerStart(0,1000,0)
waitevent
next
// Test read Day of Week
dim dow
res = getDoW(dow)
if res == 0 THEN
print "\nDoW: ";dow
endif
// Test read Day of month
dim day
res = getDate(day)
if res == 0 THEN
print "\nDay ";day
endif
// Test read month
dim month, century
res = getMonth(month, century)
if res == 0 then
print "\nMonth ";month
print "\nCentury overflow: ";century
endif
// Test read year
dim year
res = getYear(year)
if res == 0 THEN
print "\nYear ";year
endif
I2cClose(handle)