2020-03-28 13:45:20 +01:00
|
|
|
#include "src/dependencies/timezone/Timezone.h"
|
2020-03-25 09:00:55 +01:00
|
|
|
#include "wled.h"
|
2021-05-23 15:51:53 +02:00
|
|
|
#ifndef WLED_USE_REAL_MATH
|
|
|
|
#include "wled_math.h"
|
|
|
|
#else
|
|
|
|
#define sin_t sin
|
|
|
|
#define cos_t cos
|
|
|
|
#define tan_t tan
|
|
|
|
#define asin_t asin
|
|
|
|
#define acos_t acos
|
|
|
|
#define atan_t atan
|
|
|
|
#define fmod_t fmod
|
|
|
|
#define floor_t floor
|
|
|
|
#endif
|
2020-03-31 02:38:08 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Acquires time from NTP server
|
|
|
|
*/
|
2021-05-25 09:59:19 +02:00
|
|
|
//#define WLED_DEBUG_NTP
|
2021-05-30 00:08:24 +02:00
|
|
|
#define NTP_SYNC_INTERVAL 42000UL //Get fresh NTP time about twice per day
|
2021-05-25 09:59:19 +02:00
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
Timezone* tz;
|
|
|
|
|
|
|
|
#define TZ_UTC 0
|
|
|
|
#define TZ_UK 1
|
|
|
|
#define TZ_EUROPE_CENTRAL 2
|
|
|
|
#define TZ_EUROPE_EASTERN 3
|
|
|
|
#define TZ_US_EASTERN 4
|
|
|
|
#define TZ_US_CENTRAL 5
|
|
|
|
#define TZ_US_MOUNTAIN 6
|
|
|
|
#define TZ_US_ARIZONA 7
|
|
|
|
#define TZ_US_PACIFIC 8
|
|
|
|
#define TZ_CHINA 9
|
|
|
|
#define TZ_JAPAN 10
|
|
|
|
#define TZ_AUSTRALIA_EASTERN 11
|
|
|
|
#define TZ_NEW_ZEALAND 12
|
|
|
|
#define TZ_NORTH_KOREA 13
|
|
|
|
#define TZ_INDIA 14
|
|
|
|
#define TZ_SASKACHEWAN 15
|
|
|
|
#define TZ_AUSTRALIA_NORTHERN 16
|
|
|
|
#define TZ_AUSTRALIA_SOUTHERN 17
|
2020-11-18 23:27:54 +01:00
|
|
|
#define TZ_HAWAII 18
|
2020-09-20 01:18:31 +02:00
|
|
|
#define TZ_INIT 255
|
|
|
|
|
|
|
|
byte tzCurrent = TZ_INIT; //uninitialized
|
|
|
|
|
|
|
|
void updateTimezone() {
|
|
|
|
delete tz;
|
|
|
|
TimeChangeRule tcrDaylight = {Last, Sun, Mar, 1, 0}; //UTC
|
|
|
|
TimeChangeRule tcrStandard = tcrDaylight; //UTC
|
|
|
|
|
|
|
|
switch (currentTimezone) {
|
|
|
|
case TZ_UK : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 1, 60}; //British Summer Time
|
|
|
|
tcrStandard = {Last, Sun, Oct, 2, 0}; //Standard Time
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_EUROPE_CENTRAL : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 2, 120}; //Central European Summer Time
|
|
|
|
tcrStandard = {Last, Sun, Oct, 3, 60}; //Central European Standard Time
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_EUROPE_EASTERN : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 3, 180}; //East European Summer Time
|
|
|
|
tcrStandard = {Last, Sun, Oct, 4, 120}; //East European Standard Time
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_US_EASTERN : {
|
|
|
|
tcrDaylight = {Second, Sun, Mar, 2, -240}; //EDT = UTC - 4 hours
|
|
|
|
tcrStandard = {First, Sun, Nov, 2, -300}; //EST = UTC - 5 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_US_CENTRAL : {
|
|
|
|
tcrDaylight = {Second, Sun, Mar, 2, -300}; //CDT = UTC - 5 hours
|
|
|
|
tcrStandard = {First, Sun, Nov, 2, -360}; //CST = UTC - 6 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_US_MOUNTAIN : {
|
|
|
|
tcrDaylight = {Second, Sun, Mar, 2, -360}; //MDT = UTC - 6 hours
|
|
|
|
tcrStandard = {First, Sun, Nov, 2, -420}; //MST = UTC - 7 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_US_ARIZONA : {
|
|
|
|
tcrDaylight = {First, Sun, Nov, 2, -420}; //MST = UTC - 7 hours
|
|
|
|
tcrStandard = {First, Sun, Nov, 2, -420}; //MST = UTC - 7 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_US_PACIFIC : {
|
|
|
|
tcrDaylight = {Second, Sun, Mar, 2, -420}; //PDT = UTC - 7 hours
|
|
|
|
tcrStandard = {First, Sun, Nov, 2, -480}; //PST = UTC - 8 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_CHINA : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 1, 480}; //CST = UTC + 8 hours
|
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_JAPAN : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 1, 540}; //JST = UTC + 9 hours
|
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_AUSTRALIA_EASTERN : {
|
|
|
|
tcrDaylight = {Second, Sun, Oct, 2, 660}; //AEDT = UTC + 11 hours
|
|
|
|
tcrStandard = {First, Sun, Apr, 3, 600}; //AEST = UTC + 10 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_NEW_ZEALAND : {
|
|
|
|
tcrDaylight = {Second, Sun, Sep, 2, 780}; //NZDT = UTC + 13 hours
|
|
|
|
tcrStandard = {First, Sun, Apr, 3, 720}; //NZST = UTC + 12 hours
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_NORTH_KOREA : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 1, 510}; //Pyongyang Time = UTC + 8.5 hours
|
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_INDIA : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 1, 330}; //India Standard Time = UTC + 5.5 hours
|
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_SASKACHEWAN : {
|
|
|
|
tcrDaylight = {First, Sun, Nov, 2, -360}; //CST = UTC - 6 hours
|
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_AUSTRALIA_NORTHERN : {
|
2021-05-11 14:54:03 +02:00
|
|
|
tcrDaylight = {First, Sun, Apr, 3, 570}; //ACST = UTC + 9.5 hours
|
2020-09-20 01:18:31 +02:00
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TZ_AUSTRALIA_SOUTHERN : {
|
|
|
|
tcrDaylight = {First, Sun, Oct, 2, 630}; //ACDT = UTC + 10.5 hours
|
|
|
|
tcrStandard = {First, Sun, Apr, 3, 570}; //ACST = UTC + 9.5 hours
|
|
|
|
break;
|
|
|
|
}
|
2020-11-18 23:27:54 +01:00
|
|
|
case TZ_HAWAII : {
|
|
|
|
tcrDaylight = {Last, Sun, Mar, 1, -600}; //HST = UTC - 10 hours
|
|
|
|
tcrStandard = tcrDaylight;
|
|
|
|
break;
|
|
|
|
}
|
2020-09-20 01:18:31 +02:00
|
|
|
}
|
2020-03-28 13:45:20 +01:00
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
tzCurrent = currentTimezone;
|
2020-05-03 01:48:23 +02:00
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
tz = new Timezone(tcrDaylight, tcrStandard);
|
|
|
|
}
|
2018-03-06 23:47:08 +01:00
|
|
|
|
2021-05-27 00:09:52 +02:00
|
|
|
void handleTime() {
|
|
|
|
handleNetworkTime();
|
|
|
|
|
|
|
|
toki.millisecond();
|
|
|
|
toki.setTick();
|
|
|
|
|
|
|
|
if (toki.isTick()) //true only in the first loop after a new second started
|
|
|
|
{
|
2021-05-30 00:08:24 +02:00
|
|
|
#ifdef WLED_DEBUG_NTP
|
|
|
|
Serial.print(F("TICK! "));
|
|
|
|
toki.printTime(toki.getTime());
|
|
|
|
#endif
|
2021-05-27 00:09:52 +02:00
|
|
|
updateLocalTime();
|
|
|
|
checkTimers();
|
|
|
|
checkCountdown();
|
|
|
|
handleOverlays();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-29 00:03:58 +01:00
|
|
|
void handleNetworkTime()
|
|
|
|
{
|
2021-05-30 00:08:24 +02:00
|
|
|
if (ntpEnabled && ntpConnected && millis() - ntpLastSyncTime > (1000*NTP_SYNC_INTERVAL) && WLED_CONNECTED)
|
2017-02-07 16:02:27 +01:00
|
|
|
{
|
|
|
|
if (millis() - ntpPacketSentTime > 10000)
|
|
|
|
{
|
|
|
|
sendNTPPacket();
|
|
|
|
ntpPacketSentTime = millis();
|
|
|
|
}
|
|
|
|
if (checkNTPResponse())
|
|
|
|
{
|
|
|
|
ntpLastSyncTime = millis();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void sendNTPPacket()
|
|
|
|
{
|
2019-12-04 02:01:47 +01:00
|
|
|
if (!ntpServerIP.fromString(ntpServerName)) //see if server is IP or domain
|
|
|
|
{
|
|
|
|
#ifdef ESP8266
|
|
|
|
WiFi.hostByName(ntpServerName, ntpServerIP, 750);
|
|
|
|
#else
|
|
|
|
WiFi.hostByName(ntpServerName, ntpServerIP);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("send NTP"));
|
2019-03-11 17:57:06 +01:00
|
|
|
byte pbuf[NTP_PACKET_SIZE];
|
|
|
|
memset(pbuf, 0, NTP_PACKET_SIZE);
|
|
|
|
|
|
|
|
pbuf[0] = 0b11100011; // LI, Version, Mode
|
|
|
|
pbuf[1] = 0; // Stratum, or type of clock
|
|
|
|
pbuf[2] = 6; // Polling Interval
|
|
|
|
pbuf[3] = 0xEC; // Peer Clock Precision
|
2017-02-07 16:02:27 +01:00
|
|
|
// 8 bytes of zero for Root Delay & Root Dispersion
|
2019-03-11 17:57:06 +01:00
|
|
|
pbuf[12] = 49;
|
|
|
|
pbuf[13] = 0x4E;
|
|
|
|
pbuf[14] = 49;
|
|
|
|
pbuf[15] = 52;
|
2017-02-07 16:02:27 +01:00
|
|
|
|
|
|
|
ntpUdp.beginPacket(ntpServerIP, 123); //NTP requests are to port 123
|
2019-03-11 17:57:06 +01:00
|
|
|
ntpUdp.write(pbuf, NTP_PACKET_SIZE);
|
2017-02-07 16:02:27 +01:00
|
|
|
ntpUdp.endPacket();
|
|
|
|
}
|
|
|
|
|
2018-03-14 13:16:28 +01:00
|
|
|
bool checkNTPResponse()
|
2017-02-07 16:02:27 +01:00
|
|
|
{
|
|
|
|
int cb = ntpUdp.parsePacket();
|
2021-05-25 09:59:19 +02:00
|
|
|
if (!cb) return false;
|
2017-02-07 16:02:27 +01:00
|
|
|
|
2021-05-25 09:59:19 +02:00
|
|
|
uint32_t ntpPacketReceivedTime = millis();
|
|
|
|
DEBUG_PRINT(F("NTP recv, l="));
|
|
|
|
DEBUG_PRINTLN(cb);
|
|
|
|
byte pbuf[NTP_PACKET_SIZE];
|
|
|
|
ntpUdp.read(pbuf, NTP_PACKET_SIZE); // read the packet into the buffer
|
|
|
|
|
|
|
|
Toki::Time arrived = toki.fromNTP(pbuf + 32);
|
|
|
|
Toki::Time departed = toki.fromNTP(pbuf + 40);
|
|
|
|
if (departed.sec == 0) return false;
|
|
|
|
//basic half roundtrip estimation
|
|
|
|
uint32_t serverDelay = toki.msDifference(arrived, departed);
|
|
|
|
uint32_t offset = (ntpPacketReceivedTime - ntpPacketSentTime - serverDelay) >> 1;
|
|
|
|
#ifdef WLED_DEBUG_NTP
|
|
|
|
//the time the packet departed the NTP server
|
|
|
|
toki.printTime(departed);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
toki.adjust(departed, offset);
|
2021-05-27 02:02:02 +02:00
|
|
|
toki.setTime(departed, TOKI_TS_NTP);
|
2021-05-25 09:59:19 +02:00
|
|
|
|
|
|
|
#ifdef WLED_DEBUG_NTP
|
|
|
|
Serial.print("Arrived: ");
|
|
|
|
toki.printTime(arrived);
|
|
|
|
Serial.print("Time: ");
|
|
|
|
toki.printTime(departed);
|
|
|
|
Serial.print("Roundtrip: ");
|
|
|
|
Serial.println(ntpPacketReceivedTime - ntpPacketSentTime);
|
|
|
|
Serial.print("Offset: ");
|
|
|
|
Serial.println(offset);
|
|
|
|
Serial.print("Serverdelay: ");
|
|
|
|
Serial.println(serverDelay);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (countdownTime - toki.second() > 0) countdownOverTriggered = false;
|
|
|
|
// if time changed re-calculate sunrise/sunset
|
|
|
|
updateLocalTime();
|
|
|
|
calculateSunriseAndSunset();
|
|
|
|
return true;
|
2016-12-29 00:03:58 +01:00
|
|
|
}
|
|
|
|
|
2018-03-06 23:47:08 +01:00
|
|
|
void updateLocalTime()
|
|
|
|
{
|
2020-09-20 01:18:31 +02:00
|
|
|
if (currentTimezone != tzCurrent) updateTimezone();
|
2021-05-24 14:34:03 +02:00
|
|
|
unsigned long tmc = toki.second()+ utcOffsetSecs;
|
2020-09-20 01:18:31 +02:00
|
|
|
localTime = tz->toLocal(tmc);
|
2018-03-06 23:47:08 +01:00
|
|
|
}
|
|
|
|
|
2019-03-16 02:09:37 +01:00
|
|
|
void getTimeString(char* out)
|
2016-12-29 00:03:58 +01:00
|
|
|
{
|
2018-03-06 23:47:08 +01:00
|
|
|
updateLocalTime();
|
2020-08-04 15:32:54 +02:00
|
|
|
byte hr = hour(localTime);
|
2019-03-25 22:51:38 +01:00
|
|
|
if (useAMPM)
|
|
|
|
{
|
|
|
|
if (hr > 11) hr -= 12;
|
|
|
|
if (hr == 0) hr = 12;
|
|
|
|
}
|
2021-04-12 21:53:22 +02:00
|
|
|
sprintf_P(out,PSTR("%i-%i-%i, %02d:%02d:%02d"),year(localTime), month(localTime), day(localTime), hr, minute(localTime), second(localTime));
|
2019-03-11 17:57:06 +01:00
|
|
|
if (useAMPM)
|
|
|
|
{
|
2020-08-04 15:32:54 +02:00
|
|
|
strcat(out,(hour(localTime) > 11)? " PM":" AM");
|
2019-03-11 17:57:06 +01:00
|
|
|
}
|
2016-12-29 00:03:58 +01:00
|
|
|
}
|
|
|
|
|
2018-03-06 23:47:08 +01:00
|
|
|
void setCountdown()
|
|
|
|
{
|
2020-09-20 01:18:31 +02:00
|
|
|
if (currentTimezone != tzCurrent) updateTimezone();
|
|
|
|
countdownTime = tz->toUTC(getUnixTime(countdownHour, countdownMin, countdownSec, countdownDay, countdownMonth, countdownYear));
|
2021-05-25 09:59:19 +02:00
|
|
|
if (countdownTime - toki.second() > 0) countdownOverTriggered = false;
|
2018-03-06 23:47:08 +01:00
|
|
|
}
|
|
|
|
|
2018-02-20 22:29:48 +01:00
|
|
|
//returns true if countdown just over
|
|
|
|
bool checkCountdown()
|
|
|
|
{
|
2021-05-25 09:59:19 +02:00
|
|
|
unsigned long n = toki.second();
|
2020-08-04 15:32:54 +02:00
|
|
|
if (countdownMode) localTime = countdownTime - n + utcOffsetSecs;
|
2020-01-01 01:04:54 +01:00
|
|
|
if (n > countdownTime) {
|
2020-08-04 15:32:54 +02:00
|
|
|
if (countdownMode) localTime = n - countdownTime + utcOffsetSecs;
|
2020-01-01 01:04:54 +01:00
|
|
|
if (!countdownOverTriggered)
|
|
|
|
{
|
2021-01-09 00:35:48 +01:00
|
|
|
if (macroCountdown != 0) applyPreset(macroCountdown);
|
2020-01-01 01:04:54 +01:00
|
|
|
countdownOverTriggered = true;
|
|
|
|
return true;
|
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-01-31 00:09:44 +01:00
|
|
|
byte weekdayMondayFirst()
|
|
|
|
{
|
2020-08-04 15:32:54 +02:00
|
|
|
byte wd = weekday(localTime) -1;
|
2019-01-31 00:09:44 +01:00
|
|
|
if (wd == 0) wd = 7;
|
|
|
|
return wd;
|
|
|
|
}
|
|
|
|
|
2018-09-22 22:49:24 +02:00
|
|
|
void checkTimers()
|
|
|
|
{
|
2020-08-04 15:32:54 +02:00
|
|
|
if (lastTimerMinute != minute(localTime)) //only check once a new minute begins
|
2018-09-22 22:49:24 +02:00
|
|
|
{
|
2020-08-04 15:32:54 +02:00
|
|
|
lastTimerMinute = minute(localTime);
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
// re-calculate sunrise and sunset just after midnight
|
|
|
|
if (!hour(localTime) && minute(localTime)==1) calculateSunriseAndSunset();
|
|
|
|
|
|
|
|
DEBUG_PRINTF("Local time: %02d:%02d\n", hour(localTime), minute(localTime));
|
2018-09-22 22:49:24 +02:00
|
|
|
for (uint8_t i = 0; i < 8; i++)
|
|
|
|
{
|
|
|
|
if (timerMacro[i] != 0
|
2020-08-04 15:32:54 +02:00
|
|
|
&& (timerHours[i] == hour(localTime) || timerHours[i] == 24) //if hour is set to 24, activate every hour
|
|
|
|
&& timerMinutes[i] == minute(localTime)
|
2019-01-31 00:09:44 +01:00
|
|
|
&& (timerWeekday[i] & 0x01) //timer is enabled
|
2021-04-12 21:53:22 +02:00
|
|
|
&& ((timerWeekday[i] >> weekdayMondayFirst()) & 0x01)) //timer should activate at current day of week
|
2018-09-22 22:49:24 +02:00
|
|
|
{
|
2020-11-08 23:44:10 +01:00
|
|
|
applyPreset(timerMacro[i]);
|
2018-09-22 22:49:24 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-12 21:53:22 +02:00
|
|
|
// sunrise macro
|
|
|
|
if (sunrise) {
|
|
|
|
time_t tmp = sunrise + timerMinutes[8]*60; // NOTE: may not be ok
|
|
|
|
DEBUG_PRINTF("Trigger time: %02d:%02d\n", hour(tmp), minute(tmp));
|
|
|
|
if (timerMacro[8] != 0
|
|
|
|
&& hour(tmp) == hour(localTime)
|
|
|
|
&& minute(tmp) == minute(localTime)
|
|
|
|
&& (timerWeekday[8] & 0x01) //timer is enabled
|
|
|
|
&& ((timerWeekday[8] >> weekdayMondayFirst()) & 0x01)) //timer should activate at current day of week
|
|
|
|
{
|
|
|
|
applyPreset(timerMacro[8]);
|
|
|
|
DEBUG_PRINTF("Sunrise macro %d triggered.",timerMacro[8]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// sunset macro
|
|
|
|
if (sunset) {
|
|
|
|
time_t tmp = sunset + timerMinutes[9]*60; // NOTE: may not be ok
|
|
|
|
DEBUG_PRINTF("Trigger time: %02d:%02d\n", hour(tmp), minute(tmp));
|
|
|
|
if (timerMacro[9] != 0
|
|
|
|
&& hour(tmp) == hour(localTime)
|
|
|
|
&& minute(tmp) == minute(localTime)
|
|
|
|
&& (timerWeekday[9] & 0x01) //timer is enabled
|
|
|
|
&& ((timerWeekday[9] >> weekdayMondayFirst()) & 0x01)) //timer should activate at current day of week
|
|
|
|
{
|
|
|
|
applyPreset(timerMacro[9]);
|
|
|
|
DEBUG_PRINTF("Sunset macro %d triggered.",timerMacro[9]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ZENITH -0.83
|
|
|
|
// get sunrise (or sunset) time (in minutes) for a given day at a given geo location
|
|
|
|
int getSunriseUTC(int year, int month, int day, float lat, float lon, bool sunset=false) {
|
|
|
|
//1. first calculate the day of the year
|
2021-04-14 16:49:47 +02:00
|
|
|
float N1 = 275 * month / 9;
|
|
|
|
float N2 = (month + 9) / 12;
|
2021-04-16 01:01:24 +02:00
|
|
|
float N3 = (1 + floor_t((year - 4 * floor_t(year / 4) + 2) / 3));
|
2021-04-12 21:53:22 +02:00
|
|
|
float N = N1 - (N2 * N3) + day - 30;
|
|
|
|
|
|
|
|
//2. convert the longitude to hour value and calculate an approximate time
|
2021-04-16 01:01:24 +02:00
|
|
|
float lngHour = lon / 15.0f;
|
2021-04-12 21:53:22 +02:00
|
|
|
float t = N + (((sunset ? 18 : 6) - lngHour) / 24);
|
|
|
|
|
|
|
|
//3. calculate the Sun's mean anomaly
|
2021-04-16 01:01:24 +02:00
|
|
|
float M = (0.9856f * t) - 3.289f;
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//4. calculate the Sun's true longitude
|
2021-04-16 01:01:24 +02:00
|
|
|
float L = fmod_t(M + (1.916f * sin_t(DEG_TO_RAD*M)) + (0.02f * sin_t(2*DEG_TO_RAD*M)) + 282.634f, 360.0f);
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//5a. calculate the Sun's right ascension
|
2021-04-16 01:01:24 +02:00
|
|
|
float RA = fmod_t(RAD_TO_DEG*atan_t(0.91764f * tan_t(DEG_TO_RAD*L)), 360.0f);
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//5b. right ascension value needs to be in the same quadrant as L
|
2021-04-16 01:01:24 +02:00
|
|
|
float Lquadrant = floor_t( L/90) * 90;
|
|
|
|
float RAquadrant = floor_t(RA/90) * 90;
|
2021-04-12 21:53:22 +02:00
|
|
|
RA = RA + (Lquadrant - RAquadrant);
|
|
|
|
|
|
|
|
//5c. right ascension value needs to be converted into hours
|
2021-04-16 01:01:24 +02:00
|
|
|
RA /= 15.0f;
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//6. calculate the Sun's declination
|
2021-04-16 01:01:24 +02:00
|
|
|
float sinDec = 0.39782f * sin_t(DEG_TO_RAD*L);
|
2021-04-14 16:49:47 +02:00
|
|
|
float cosDec = cos_t(asin_t(sinDec));
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//7a. calculate the Sun's local hour angle
|
2021-04-14 16:49:47 +02:00
|
|
|
float cosH = (sin_t(DEG_TO_RAD*ZENITH) - (sinDec * sin_t(DEG_TO_RAD*lat))) / (cosDec * cos_t(DEG_TO_RAD*lat));
|
2021-04-12 21:53:22 +02:00
|
|
|
if (cosH > 1 && !sunset) return 0; // the sun never rises on this location (on the specified date)
|
|
|
|
if (cosH < -1 && sunset) return 0; // the sun never sets on this location (on the specified date)
|
|
|
|
|
|
|
|
//7b. finish calculating H and convert into hours
|
2021-04-14 16:49:47 +02:00
|
|
|
float H = sunset ? RAD_TO_DEG*acos_t(cosH) : 360 - RAD_TO_DEG*acos_t(cosH);
|
2021-04-16 01:01:24 +02:00
|
|
|
H /= 15.0f;
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//8. calculate local mean time of rising/setting
|
2021-04-16 01:01:24 +02:00
|
|
|
float T = H + RA - (0.06571f * t) - 6.622f;
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
//9. adjust back to UTC
|
2021-04-16 01:01:24 +02:00
|
|
|
float UT = fmod_t(T - lngHour, 24.0f);
|
2021-04-12 21:53:22 +02:00
|
|
|
|
|
|
|
// return in minutes from midnight
|
|
|
|
return UT*60;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate sunrise and sunset (if longitude and latitude are set)
|
|
|
|
void calculateSunriseAndSunset() {
|
|
|
|
if ((int)(longitude*10.) || (int)(latitude*10.)) {
|
|
|
|
struct tm tim_0;
|
|
|
|
tim_0.tm_year = year(localTime)-1900;
|
|
|
|
tim_0.tm_mon = month(localTime)-1;
|
|
|
|
tim_0.tm_mday = day(localTime);
|
|
|
|
tim_0.tm_sec = 0;
|
|
|
|
tim_0.tm_isdst = 0;
|
|
|
|
|
|
|
|
int minUTC = getSunriseUTC(year(localTime), month(localTime), day(localTime), latitude, longitude);
|
|
|
|
if (minUTC) {
|
|
|
|
// there is a sunrise
|
|
|
|
tim_0.tm_hour = minUTC / 60;
|
|
|
|
tim_0.tm_min = minUTC % 60;
|
|
|
|
sunrise = tz->toLocal(mktime(&tim_0) - utcOffsetSecs);
|
|
|
|
DEBUG_PRINTF("Sunrise: %02d:%02d\n", hour(sunrise), minute(sunrise));
|
|
|
|
} else {
|
|
|
|
sunrise = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
minUTC = getSunriseUTC(year(localTime), month(localTime), day(localTime), latitude, longitude, true);
|
|
|
|
if (minUTC) {
|
|
|
|
// there is a sunset
|
|
|
|
tim_0.tm_hour = minUTC / 60;
|
|
|
|
tim_0.tm_min = minUTC % 60;
|
|
|
|
sunset = tz->toLocal(mktime(&tim_0) - utcOffsetSecs);
|
|
|
|
DEBUG_PRINTF("Sunset: %02d:%02d\n", hour(sunset), minute(sunset));
|
|
|
|
} else {
|
|
|
|
sunset = 0;
|
|
|
|
}
|
2018-09-22 22:49:24 +02:00
|
|
|
}
|
|
|
|
}
|
2021-05-27 02:02:02 +02:00
|
|
|
|
|
|
|
//time from JSON and HTTP API
|
|
|
|
void setTimeFromAPI(uint32_t timein) {
|
|
|
|
if (timein == 0 || timein == UINT32_MAX) return;
|
2021-05-27 23:29:11 +02:00
|
|
|
uint32_t prev = toki.second();
|
2021-05-27 02:02:02 +02:00
|
|
|
//only apply if more accurate or there is a significant difference to the "more accurate" time source
|
2021-05-27 23:29:11 +02:00
|
|
|
uint32_t diff = (timein > prev) ? timein - prev : prev - timein;
|
|
|
|
if (toki.getTimeSource() > TOKI_TS_JSON && diff < 60U) return;
|
2021-05-27 02:02:02 +02:00
|
|
|
|
|
|
|
toki.setTime(timein, TOKI_NO_MS_ACCURACY, TOKI_TS_JSON);
|
2021-05-27 23:29:11 +02:00
|
|
|
if (diff >= 60U) {
|
2021-05-27 02:02:02 +02:00
|
|
|
updateLocalTime();
|
|
|
|
calculateSunriseAndSunset();
|
|
|
|
}
|
|
|
|
if (presetsModifiedTime == 0) presetsModifiedTime = timein;
|
|
|
|
}
|