Thread Rating:
  • 5 Vote(s) - 4.2 Average
  • 1
  • 2
  • 3
  • 4
  • 5

WeatherDuino Pro2 'PLUS' Build
#45

User Options - Day Light Savings

This section is pretty self explanatory and straight forward, and the examples show you how to enter the details.  You need to set your timezone names or labels (eg. PST, GMT or AEDT, AEST), the correct date that your timezones changes over to daylight savings, and the amount of offset for your timezones.


// --------------------------------------------------------------------------------------
//   Define rules for Auto Summer Time Display, and clock adjustment
// --------------------------------------------------------------------------------------
// Example for Australia Eastern Time Zone (Sydney, Melbourne)
// TimeChangeRule aEDT = {"AEDT", First, Sun, Oct, 2, 660};    //UTC + 11 hours
// TimeChangeRule aEST = {"AEST", First, Sun, Apr, 3, 600};    //UTC + 10 hours
// Timezone myTZ(aEDT, aEST);

// Example for Portugal
// TimeChangeRule PST = {"PST", Last, Sun, Mar, 1, 60};   //Portuguese Summer Time -  "UTC + 1" or GMT + 1
// TimeChangeRule GMT = {"GMT", Last, Sun, Oct, 2, 0};    //Portuguese Winter Time -  "UTC + 0" or GMT
// Timezone myTZ(PST, GMT);

TimeChangeRule aEDT = {"AEDT", First, Sun, Oct, 2, 660};    //UTC + 11 hours
TimeChangeRule aEST = {"AEST", First, Sun, Apr, 3, 600};    //UTC + 10 hours
Timezone myTZ(aEDT, aEST);




If you timezone does not have daylight savings, just configure one of the "TimeChangeRule" lines, defining the amount of time offset for your zone and then pass the same rule twice to the constructor, for example: 

// Example for Brisbane, Australia
TimeChangeRule aEDT = {"AEDT", First, Sun, Oct, 2, 660};    //UTC + 11 hours 
TimeChangeRule aEST = {"AEST", First, Sun, Apr, 3, 600};    //UTC + 10 hours 
Timezone myTZ(aEST, aEST);
Reply


Messages In This Thread
WeatherDuino Pro2 'PLUS' Build - by Wizza - 01-01-2017, 07:04
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 01-01-2017, 07:54
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 01-01-2017, 07:56
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 01-01-2017, 08:15
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 01-01-2017, 08:35
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 01-01-2017, 08:44
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 01-01-2017, 10:22
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 01-01-2017, 12:14
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 01-01-2017, 22:20
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 02-01-2017, 00:29
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 02-01-2017, 02:15
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 18-01-2017, 10:37
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 18-01-2017, 11:57
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 18-01-2017, 12:01
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 18-01-2017, 12:03
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 18-01-2017, 12:19
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 18-01-2017, 12:20
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 19-01-2017, 10:09
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 19-01-2017, 11:01
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 19-01-2017, 11:59
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 19-01-2017, 12:03
RE: WeatherDuino Pro2 'PLUS' Build - by hornychz - 19-01-2017, 22:47
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 21-01-2017, 12:10
RE: WeatherDuino Pro2 'PLUS' Build - by AllanG - 21-01-2017, 13:22
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 21-01-2017, 20:19
RE: WeatherDuino Pro2 'PLUS' Build - by AllanG - 21-01-2017, 22:02
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 22-01-2017, 03:44
RE: WeatherDuino Pro2 'PLUS' Build - by AllanG - 22-01-2017, 13:36
RE: WeatherDuino Pro2 'PLUS' Build - by Zack_ster - 23-01-2017, 11:29
RE: WeatherDuino Pro2 'PLUS' Build - by AllanG - 24-01-2017, 13:20
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 22-01-2017, 07:45
RE: WeatherDuino Pro2 'PLUS' Build - by AllanG - 22-01-2017, 13:31
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 21-01-2017, 21:15
RE: WeatherDuino Pro2 'PLUS' Build - by Barrow4491 - 22-01-2017, 02:31
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 22-01-2017, 04:47
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 22-01-2017, 08:17
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 22-01-2017, 21:46
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 23-01-2017, 11:13
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 23-01-2017, 11:30
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 23-01-2017, 12:06
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 24-01-2017, 11:27
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 24-01-2017, 11:39
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 26-01-2017, 02:16
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 26-01-2017, 02:27
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 26-01-2017, 02:38
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 26-01-2017, 02:53
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 26-01-2017, 03:02
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 06-02-2017, 10:31
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 06-02-2017, 10:34
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 06-02-2017, 10:39
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 06-02-2017, 10:42
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 06-02-2017, 10:44
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 07-02-2017, 10:32
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 07-02-2017, 10:40
RE: WeatherDuino Pro2 'PLUS' Build - by Wizza - 09-02-2017, 21:57
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 09-02-2017, 23:58
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 10-02-2017, 12:06
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 10-02-2017, 12:07
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 10-02-2017, 19:33
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 11-02-2017, 01:25
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 11-02-2017, 04:15
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 11-02-2017, 04:21
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 11-02-2017, 09:24
RE: WeatherDuino Pro2 'PLUS' Build - by uncle_bob - 11-02-2017, 10:54
RE: WeatherDuino Pro2 'PLUS' Build - by markkkk42 - 11-02-2017, 11:03
RE: WeatherDuino Pro2 'PLUS' Build - by hornychz - 24-02-2017, 09:49
RE: WeatherDuino Pro2 'PLUS' Build - by werk_ag - 24-02-2017, 23:48
RE: WeatherDuino Pro2 'PLUS' Build - by hornychz - 24-02-2017, 09:51
RE: WeatherDuino Pro2 'PLUS' Build - by zitoune - 24-02-2017, 17:44



Users browsing this thread: 1 Guest(s)