MAXIM DS3231 accurate Real Time Clock Library

Dependents:   20180621_FT813

Fork of DS3231 by remi cormier

Committer:
JackB
Date:
Mon Jul 23 12:25:27 2018 +0000
Revision:
3:1af2ff7cfe26
RTC

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JackB 3:1af2ff7cfe26 1 /*
JackB 3:1af2ff7cfe26 2 http://hemel.waarnemen.com/aarde/zomertijd.html#2016
JackB 3:1af2ff7cfe26 3 De zomertijd (of zomeruur) begint in de EU op de laatste zondag van maart en eindigt op de laatste zondag van oktober.
JackB 3:1af2ff7cfe26 4 Dit gebeurt in alle lidstaten op hetzelfde moment.
JackB 3:1af2ff7cfe26 5 In België en Nederland is dat 's nachts om 2 uur wintertijd (of winteruur; MET).
JackB 3:1af2ff7cfe26 6 In het voorjaar betekent dat dat de klok van 2 uur MET wordt omgezet naar 3 uur MEZT,
JackB 3:1af2ff7cfe26 7 zodat de nacht een uur korter duurt.
JackB 3:1af2ff7cfe26 8 In het najaar wordt de klok om 3 uur MEZT teruggezet naar 2 uur MET,
JackB 3:1af2ff7cfe26 9 zodat we een uur langer kunnen slapen (de tijdspanne tussen 2 en 3 uur komt immers tweemaal voor).
JackB 3:1af2ff7cfe26 10 */
JackB 3:1af2ff7cfe26 11
JackB 3:1af2ff7cfe26 12 const char * const SummerTime[] = {
JackB 3:1af2ff7cfe26 13 "2011", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 14 "2012", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 15 "2013", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 16 "2014", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 17 "2015", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 18 "2016", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 19 "2017", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 20 "2018", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 21 "2019", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 22 "2020", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 23
JackB 3:1af2ff7cfe26 24 "2021", "03", "28", "10", "31",
JackB 3:1af2ff7cfe26 25 "2022", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 26 "2023", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 27 "2024", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 28 "2025", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 29 "2026", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 30 "2027", "03", "28", "10", "31",
JackB 3:1af2ff7cfe26 31 "2028", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 32 "2029", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 33 "2030", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 34
JackB 3:1af2ff7cfe26 35 "2031", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 36 "2032", "03", "28", "10", "31",
JackB 3:1af2ff7cfe26 37 "2033", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 38 "2034", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 39 "2035", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 40 "2036", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 41 "2037", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 42 "2038", "03", "28", "10", "31",
JackB 3:1af2ff7cfe26 43 "2039", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 44 "2040", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 45
JackB 3:1af2ff7cfe26 46 "2041", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 47 "2042", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 48 "2043", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 49 "2044", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 50 "2045", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 51 "2046", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 52 "2047", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 53 "2048", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 54 "2049", "03", "28", "10", "31",
JackB 3:1af2ff7cfe26 55 "2050", "03", "27", "10", "30",
JackB 3:1af2ff7cfe26 56
JackB 3:1af2ff7cfe26 57 "2051", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 58 "2052", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 59 "2053", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 60 "2054", "03", "29", "10", "25",
JackB 3:1af2ff7cfe26 61 "2055", "03", "28", "10", "31",
JackB 3:1af2ff7cfe26 62 "2056", "03", "26", "10", "29",
JackB 3:1af2ff7cfe26 63 "2057", "03", "25", "10", "28",
JackB 3:1af2ff7cfe26 64 "2058", "03", "31", "10", "27",
JackB 3:1af2ff7cfe26 65 "2059", "03", "30", "10", "26",
JackB 3:1af2ff7cfe26 66 "2060", "03", "28", "10", "31"
JackB 3:1af2ff7cfe26 67 };