2023-04-25 14:32:42 +02:00
|
|
|
#include <ESP8266WiFi.h>
|
2023-04-24 20:26:49 +02:00
|
|
|
#include <WiFiUdp.h>
|
2023-04-25 14:32:42 +02:00
|
|
|
#include <NTPClient.h>
|
2023-04-28 10:56:26 +02:00
|
|
|
#include <TimeLib.h>
|
2023-04-24 20:26:49 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
//***********************************//
|
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
// 6 byte
|
|
|
|
#define TIMER_DATA_HH 0
|
|
|
|
#define TIMER_DATA_MM 1
|
|
|
|
#define TIMER_DATA_CH1 2 // the brightness of the channel
|
|
|
|
#define TIMER_DATA_CH2 3 // the brightness of the channel
|
|
|
|
#define TIMER_DATA_CH3 4 // the brightness of the channel
|
|
|
|
#define TIMER_DATA_CH4 5 // the brightness of the channel
|
2023-04-24 20:26:49 +02:00
|
|
|
|
|
|
|
#define LENGTH_OF_TIMER_DATA_BLOCK (TIMER_DATA_CH4 + 1)
|
|
|
|
#define NUMBER_OF_TIMER_DATA_BLOCKS 10
|
|
|
|
|
|
|
|
//***********************************//
|
2023-04-25 14:32:42 +02:00
|
|
|
/* Globals */
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-27 16:40:27 +02:00
|
|
|
bool tc_testOngoing = false;
|
2023-04-27 11:26:21 +02:00
|
|
|
|
2023-04-25 15:35:04 +02:00
|
|
|
uint32_t tc_last_check = 60000;
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
WiFiUDP ntpUDP;
|
2023-04-28 10:56:26 +02:00
|
|
|
NTPClient timeClient(ntpUDP, MY_NTP_SERVER);
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
struct tc_data_st {
|
2023-04-24 20:26:49 +02:00
|
|
|
uint8_t hh;
|
|
|
|
uint8_t mm;
|
|
|
|
uint8_t ch1;
|
|
|
|
uint8_t ch2;
|
|
|
|
uint8_t ch3;
|
|
|
|
uint8_t ch4;
|
|
|
|
};
|
|
|
|
|
2023-04-25 15:35:04 +02:00
|
|
|
struct tc_data_st tc_data[10];
|
2023-04-24 20:26:49 +02:00
|
|
|
|
|
|
|
uint8_t example_timer_data_block[] = {
|
2023-04-27 11:26:21 +02:00
|
|
|
// hour min ch1 ch2 ch3 ch3
|
|
|
|
8, 0, 0, 0, 0, 0, // 0: off
|
|
|
|
8, 30, 25, 0, 0, 0, // 1: 10% ch1 blues
|
|
|
|
9, 0, 25, 0, 25, 0, // 2: 10% all blues
|
|
|
|
13, 0, 205, 205, 205, 205, // 3: 80% all
|
|
|
|
18, 0, 205, 205, 205, 205, // 4: 80% all for 5 hours
|
|
|
|
19, 0, 50, 50, 50, 50, // 5: 20% all
|
|
|
|
19, 30, 50, 0, 50, 0, // 6: 20% all blues
|
2023-04-27 16:40:27 +02:00
|
|
|
20, 0, 25, 0, 25, 0, // 9: disabled
|
2023-04-27 11:26:21 +02:00
|
|
|
20, 30, 25, 0, 0, 0, // 7: 10% ch1 blues
|
|
|
|
21, 0, 0, 0, 0, 0, // 8: 0% all
|
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t test_timer_data_block[] = {
|
2023-04-27 13:38:41 +02:00
|
|
|
// hour min ch1 ch2 ch3 ch3
|
2023-04-27 11:26:21 +02:00
|
|
|
9, 20, 0, 0, 0, 0, // 0: off
|
|
|
|
9, 30, 25, 0, 0, 0, // 1: 10% ch1 blues
|
|
|
|
9, 40, 25, 0, 25, 0, // 2: 10% all blues
|
|
|
|
9, 50, 205, 205, 205, 205, // 3: 80% all
|
|
|
|
10, 0, 100, 100, 100, 100, // 4: 80% all for 5 hours
|
|
|
|
10, 10, 50, 50, 50, 50, // 5: 20% all
|
|
|
|
10, 20, 50, 0, 50, 0, // 6: 20% all blues
|
|
|
|
10, 30, 25, 0, 0, 0, // 7: 10% ch1 blues
|
|
|
|
10, 40, 0, 0, 0, 0, // 8: all off
|
|
|
|
11, 0, 0, 0, 0, 0, // 9: all off
|
2023-04-24 20:26:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
//***********************************//
|
|
|
|
|
|
|
|
void tc_init()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (tc_check_no_data_block() == true)
|
|
|
|
{
|
|
|
|
//Serial.println("TC: No data block found, writing example block to EEPROM.");
|
|
|
|
tc_write_default();
|
|
|
|
}
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
while ( WiFi.status() != WL_CONNECTED )
|
2023-04-24 20:26:49 +02:00
|
|
|
{
|
2023-04-25 14:32:42 +02:00
|
|
|
delay (500);
|
|
|
|
Serial.print ( "." );
|
2023-04-24 20:26:49 +02:00
|
|
|
}
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
tc_last_check = millis();
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-28 10:56:26 +02:00
|
|
|
// Set the timezone to Europe/Berlin
|
|
|
|
setenv("TZ", "CET-1CEST,M3.5.0,M10.5.0/3", 1);
|
|
|
|
tzset();
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
timeClient.begin();
|
|
|
|
|
|
|
|
Serial.println("TC: Read data block from eeprom");
|
|
|
|
tc_readConfig();
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
if (tc_testOngoing == true)
|
|
|
|
{
|
|
|
|
Serial.println("TC: Test ongoing, reading test data");
|
|
|
|
for (uint8_t i = 0; i < NUMBER_OF_TIMER_DATA_BLOCKS * LENGTH_OF_TIMER_DATA_BLOCK; i += LENGTH_OF_TIMER_DATA_BLOCK)
|
|
|
|
{
|
|
|
|
tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].hh = test_timer_data_block[i];
|
|
|
|
tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].mm = test_timer_data_block[i+1];
|
|
|
|
tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch1 = test_timer_data_block[i+2];
|
|
|
|
tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch2 = test_timer_data_block[i+3];
|
|
|
|
tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch3 = test_timer_data_block[i+4];
|
|
|
|
tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch4 = test_timer_data_block[i+5];
|
|
|
|
|
|
|
|
Serial.print("data block: "); Serial.println(i / LENGTH_OF_TIMER_DATA_BLOCK);
|
|
|
|
Serial.print(" hh: "); Serial.println(tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].hh);
|
|
|
|
Serial.print(" mm: "); Serial.println(tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].mm);
|
|
|
|
Serial.print(" ch1: "); Serial.println(tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch1);
|
|
|
|
Serial.print(" ch2: "); Serial.println(tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch2);
|
|
|
|
Serial.print(" ch3: "); Serial.println(tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch3);
|
|
|
|
Serial.print(" ch4: "); Serial.println(tc_data[i / LENGTH_OF_TIMER_DATA_BLOCK].ch4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-29 12:00:20 +02:00
|
|
|
if (tc_enabled == TIMING_CONTROL_ENABLED)
|
|
|
|
{
|
|
|
|
Serial.println("tc_enabled = " + (String)tc_enabled);
|
|
|
|
tc_update_main();
|
|
|
|
}
|
2023-04-24 20:26:49 +02:00
|
|
|
}
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
//********************************//
|
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
void tc_update_loop()
|
2023-04-24 20:26:49 +02:00
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
static uint8_t last_min_check = 255;
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
if ((timeClient.getMinutes() % 10) != 0 || last_min_check == timeClient.getMinutes()) // && tc_testOngoing == false
|
2023-04-24 20:26:49 +02:00
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
last_min_check = timeClient.getMinutes();
|
2023-04-24 20:26:49 +02:00
|
|
|
return; // only run every 10 minutes
|
|
|
|
}
|
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
tc_update_main();
|
|
|
|
}
|
|
|
|
|
|
|
|
void tc_update_main()
|
|
|
|
{
|
|
|
|
static uint8_t current_target_data_block = 255;
|
|
|
|
uint8_t target_data_block = 255;
|
|
|
|
|
|
|
|
tc_updateTime();
|
|
|
|
|
|
|
|
// search for the current active time slot
|
2023-04-27 16:40:27 +02:00
|
|
|
for (int i = NUMBER_OF_TIMER_DATA_BLOCKS-1; i >= 0 && target_data_block == 255; --i)
|
2023-04-24 20:26:49 +02:00
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
//Serial.println((String)tc_data[i].hh + ":" + (String)tc_data[i].mm);
|
|
|
|
|
2023-04-28 10:56:26 +02:00
|
|
|
/*if (tc_data[i].hh <= timeClient.getHours() &&
|
|
|
|
tc_data[i].mm <= timeClient.getMinutes())*/
|
|
|
|
if (tc_data[i].hh <= hour() &&
|
|
|
|
tc_data[i].mm <= minute())
|
2023-04-25 14:32:42 +02:00
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
target_data_block = i+1; // found the next block to load
|
2023-04-24 20:26:49 +02:00
|
|
|
}
|
2023-04-27 11:26:21 +02:00
|
|
|
//Serial.println((String)i + " => " + target_data_block);
|
2023-04-24 20:26:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (target_data_block == 255)
|
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
// no new predecessor or successor found, start over
|
|
|
|
current_target_data_block = 255;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_target_data_block != target_data_block)
|
|
|
|
{
|
|
|
|
// new target block should be reached
|
|
|
|
current_target_data_block = target_data_block;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// drop the found target block, we are already going on to reach it
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target_data_block >= NUMBER_OF_TIMER_DATA_BLOCKS)
|
|
|
|
{
|
|
|
|
target_data_block = 255;
|
|
|
|
current_target_data_block = 255;
|
2023-04-24 20:26:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
// print out the current light state
|
|
|
|
Serial.println("-----\nCurrent values");
|
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("current_bri[" + (String)i + "] = " + (String)current_bri[i]);
|
|
|
|
}
|
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("bri[" + (String)i + "] = " + (String)bri[i]);
|
|
|
|
}
|
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("step_level[" + (String)i + "] = " + (String)step_level[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Serial.println("-----\ntdb = " + (String)target_data_block);
|
2023-04-28 10:56:26 +02:00
|
|
|
Serial.print("target time: ");
|
|
|
|
Serial.print(tc_data[target_data_block].hh);
|
|
|
|
Serial.print(":");
|
|
|
|
Serial.print(tc_data[target_data_block].mm);
|
|
|
|
Serial.println();
|
2023-04-27 11:26:21 +02:00
|
|
|
|
|
|
|
// set the channels current and target brightness
|
2023-04-24 20:26:49 +02:00
|
|
|
bri[0] = tc_data[target_data_block].ch1;
|
|
|
|
bri[1] = tc_data[target_data_block].ch2;
|
|
|
|
bri[2] = tc_data[target_data_block].ch3;
|
|
|
|
bri[3] = tc_data[target_data_block].ch4;
|
2023-04-27 11:26:21 +02:00
|
|
|
if (tc_data[target_data_block-1].ch1 != current_bri[0])
|
|
|
|
{
|
2023-04-29 20:30:42 +02:00
|
|
|
current_bri[0] = tc_data[target_data_block-1].ch1 + ((tc_data[target_data_block].ch1 == 0) ? 1 : -1);
|
2023-04-27 11:26:21 +02:00
|
|
|
}
|
|
|
|
if (tc_data[target_data_block-1].ch2 != current_bri[1])
|
|
|
|
{
|
2023-04-29 20:30:42 +02:00
|
|
|
current_bri[1] = tc_data[target_data_block-1].ch2 + ((tc_data[target_data_block].ch2 == 0) ? 1 : -1);
|
2023-04-27 11:26:21 +02:00
|
|
|
}
|
|
|
|
if (tc_data[target_data_block-1].ch3 != current_bri[2])
|
|
|
|
{
|
2023-04-29 20:30:42 +02:00
|
|
|
current_bri[2] = tc_data[target_data_block-1].ch3 + ((tc_data[target_data_block].ch3 == 0) ? 1 : -1);
|
2023-04-27 11:26:21 +02:00
|
|
|
}
|
|
|
|
if (tc_data[target_data_block-1].ch4 != current_bri[3])
|
|
|
|
{
|
2023-04-29 20:30:42 +02:00
|
|
|
current_bri[3] = tc_data[target_data_block-1].ch4 + ((tc_data[target_data_block].ch4 == 0) ? 1 : -1);
|
2023-04-27 11:26:21 +02:00
|
|
|
}
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("current_bri[" + (String)i + "] = " + (String)current_bri[i]);
|
|
|
|
}
|
2023-04-25 20:06:04 +02:00
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("bri[" + (String)i + "] = " + (String)bri[i]);
|
|
|
|
}
|
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
// enable the lights
|
|
|
|
light_state[0] = true;
|
|
|
|
light_state[1] = true;
|
|
|
|
light_state[2] = true;
|
|
|
|
light_state[3] = true;
|
2023-04-25 20:06:04 +02:00
|
|
|
|
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("light_state[" + (String)i + "] = " + (String)light_state[i]);
|
|
|
|
}
|
2023-04-24 20:26:49 +02:00
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
// set the transition time
|
2023-04-24 20:26:49 +02:00
|
|
|
int t_time = 0;
|
|
|
|
if (target_data_block > 0)
|
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
// hours as seconds from now on to the next enabled block
|
2023-04-28 14:26:02 +02:00
|
|
|
t_time = ((uint16_t)tc_data[target_data_block].hh * 60 * 60) - ((uint16_t)hour() * 60 * 60);
|
2023-04-27 11:26:21 +02:00
|
|
|
// add the left over seconds to the next enabled block
|
2023-04-28 14:26:02 +02:00
|
|
|
t_time += ((uint16_t)tc_data[target_data_block].mm * 60) - ((uint16_t)minute() * 60);
|
2023-04-27 11:26:21 +02:00
|
|
|
|
2023-04-24 20:26:49 +02:00
|
|
|
}
|
|
|
|
transitiontime[0] = t_time;
|
|
|
|
transitiontime[1] = t_time;
|
|
|
|
transitiontime[2] = t_time;
|
|
|
|
transitiontime[3] = t_time;
|
|
|
|
|
2023-04-27 11:26:21 +02:00
|
|
|
// calculate the step level
|
2023-04-25 20:06:04 +02:00
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
2023-04-27 11:26:21 +02:00
|
|
|
process_lightdata(i, transitiontime[i]);
|
2023-04-25 20:06:04 +02:00
|
|
|
Serial.println("transitiontime[" + (String)i + "] = " + (String)transitiontime[i]);
|
|
|
|
}
|
2023-04-27 11:26:21 +02:00
|
|
|
for (uint8_t i = 0; i < LIGHTS_COUNT; i++)
|
|
|
|
{
|
|
|
|
Serial.println("step_level[" + (String)i + "] = " + (String)step_level[i]);
|
|
|
|
}
|
2023-04-25 20:06:04 +02:00
|
|
|
|
2023-04-24 20:26:49 +02:00
|
|
|
}
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
//********************************//
|
|
|
|
|
|
|
|
void tc_updateTime()
|
|
|
|
{
|
2023-04-25 15:35:04 +02:00
|
|
|
/**/
|
|
|
|
if (timeClient.update() || millis() > (tc_last_check + TIME_CHECK_INTERVAL_MS))
|
2023-04-25 14:32:42 +02:00
|
|
|
{
|
2023-04-25 15:35:04 +02:00
|
|
|
tc_last_check = millis();
|
2023-04-28 10:56:26 +02:00
|
|
|
|
|
|
|
adjustTimeForDST();
|
2023-04-27 11:26:21 +02:00
|
|
|
|
|
|
|
Serial.print("=====\nLocal time: ");
|
2023-04-28 10:56:26 +02:00
|
|
|
Serial.print(hour());
|
2023-04-25 14:32:42 +02:00
|
|
|
Serial.print(":");
|
2023-04-28 10:56:26 +02:00
|
|
|
Serial.println(minute());
|
2023-04-25 14:32:42 +02:00
|
|
|
}
|
2023-04-25 15:35:04 +02:00
|
|
|
/**/
|
2023-04-25 14:32:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//********************************//
|
|
|
|
|
2023-04-28 10:56:26 +02:00
|
|
|
void adjustTimeForDST()
|
|
|
|
{
|
|
|
|
|
|
|
|
// Get the time and date information
|
|
|
|
time_t now = timeClient.getEpochTime();
|
|
|
|
struct tm timeinfo;
|
|
|
|
localtime_r(&now, &timeinfo);
|
|
|
|
|
|
|
|
// set the local time
|
|
|
|
setTime(timeinfo.tm_hour, timeinfo.tm_min, timeinfo.tm_sec, timeinfo.tm_mday, timeinfo.tm_mon + 1, timeinfo.tm_year + 1900);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//********************************//
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
void tc_readConfig()
|
|
|
|
{
|
|
|
|
for (uint8_t i = 0; i < NUMBER_OF_TIMER_DATA_BLOCKS; i++)
|
|
|
|
{
|
|
|
|
/*Serial.print("Reading from address: "); Serial.print(EEPROM_TIMING_DATA_ADDRESS);
|
|
|
|
Serial.print(" + (");
|
|
|
|
Serial.print(i);
|
|
|
|
Serial.print(" * ");
|
|
|
|
Serial.print(LENGTH_OF_TIMER_DATA_BLOCK);
|
|
|
|
Serial.print(") + ");
|
|
|
|
Serial.println(TIMER_DATA_ENSTATE);*/
|
|
|
|
|
|
|
|
tc_data[i].hh = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i * LENGTH_OF_TIMER_DATA_BLOCK + TIMER_DATA_HH);
|
|
|
|
tc_data[i].mm = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i * LENGTH_OF_TIMER_DATA_BLOCK + TIMER_DATA_MM);
|
|
|
|
tc_data[i].ch1 = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i * LENGTH_OF_TIMER_DATA_BLOCK + TIMER_DATA_CH1);
|
|
|
|
tc_data[i].ch2 = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i * LENGTH_OF_TIMER_DATA_BLOCK + TIMER_DATA_CH2);
|
|
|
|
tc_data[i].ch3 = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i * LENGTH_OF_TIMER_DATA_BLOCK + TIMER_DATA_CH3);
|
|
|
|
tc_data[i].ch4 = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i * LENGTH_OF_TIMER_DATA_BLOCK + TIMER_DATA_CH4);
|
|
|
|
|
|
|
|
/*Serial.print("data block: "); Serial.print(i);
|
|
|
|
Serial.print(" @ ");
|
|
|
|
Serial.println((EEPROM_TIMING_DATA_ADDRESS + (i * LENGTH_OF_TIMER_DATA_BLOCK) + TIMER_DATA_ENSTATE));
|
|
|
|
|
|
|
|
Serial.print(" es: "); Serial.println(tc_data[i].enstate);
|
|
|
|
Serial.print(" hh: "); Serial.println(tc_data[i].hh);
|
|
|
|
Serial.print(" mm: "); Serial.println(tc_data[i].mm);
|
|
|
|
Serial.print(" ch1: "); Serial.println(tc_data[i].ch1);
|
|
|
|
Serial.print(" ch2: "); Serial.println(tc_data[i].ch2);
|
|
|
|
Serial.print(" ch3: "); Serial.println(tc_data[i].ch3);
|
|
|
|
Serial.print(" ch4: "); Serial.println(tc_data[i].ch4);*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//********************************//
|
|
|
|
|
2023-04-24 20:26:49 +02:00
|
|
|
void tc_write_default()
|
|
|
|
{
|
|
|
|
//Serial.print("-----\nWrite data block starting from address EEPROM_TIMING_DATA_ADDRESS = "); Serial.println(EEPROM_TIMING_DATA_ADDRESS);
|
|
|
|
for (int i = 0; i < NUMBER_OF_TIMER_DATA_BLOCKS * LENGTH_OF_TIMER_DATA_BLOCK; i++)
|
|
|
|
{
|
|
|
|
//Serial.print(EEPROM_TIMING_DATA_ADDRESS + i); Serial.print(" <= "); Serial.print(example_timer_data_block[i]); Serial.print(" <= ");
|
|
|
|
|
|
|
|
EEPROM.write(EEPROM_TIMING_DATA_ADDRESS + i, example_timer_data_block[i]);
|
|
|
|
EEPROM.commit();
|
|
|
|
|
|
|
|
//Serial.println(EEPROM.read(EEPROM_TIMING_DATA_ADDRESS + i));
|
|
|
|
}
|
|
|
|
//Serial.println("-----");
|
|
|
|
}
|
|
|
|
|
2023-04-25 14:32:42 +02:00
|
|
|
//********************************//
|
|
|
|
|
2023-04-24 20:26:49 +02:00
|
|
|
bool tc_check_no_data_block()
|
|
|
|
{
|
|
|
|
//Serial.print("Check data block address EEPROM_TIMING_DATA_ADDRESS = "); Serial.println(EEPROM_TIMING_DATA_ADDRESS);
|
|
|
|
uint8_t e = EEPROM.read(EEPROM_TIMING_DATA_ADDRESS);
|
|
|
|
//Serial.println(e);
|
|
|
|
|
|
|
|
if (e == 255)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2023-04-25 14:32:42 +02:00
|
|
|
|
|
|
|
//********************************//
|
2023-04-27 13:38:41 +02:00
|
|
|
|
|
|
|
String tc_getJsonData()
|
|
|
|
{
|
2023-04-27 16:40:27 +02:00
|
|
|
String output = "{\"tcdata\":[";
|
|
|
|
for (uint8_t i = 0; i < NUMBER_OF_TIMER_DATA_BLOCKS; i++)
|
2023-04-27 13:38:41 +02:00
|
|
|
{
|
|
|
|
output += "{\"hour\":" + (String)(int)tc_data[i].hh + ",";
|
2023-04-27 16:40:27 +02:00
|
|
|
output += "\"min\":" + (String)(int)tc_data[i].mm + ",";
|
|
|
|
output += "\"ch1\":" + (String)(int)tc_data[i].ch1 + ",";
|
|
|
|
output += "\"ch2\":" + (String)(int)tc_data[i].ch2 + ",";
|
|
|
|
output += "\"ch3\":" + (String)(int)tc_data[i].ch3 + ",";
|
|
|
|
output += "\"ch4\":" + (String)(int)tc_data[i].ch4 + "}";
|
|
|
|
if (i < NUMBER_OF_TIMER_DATA_BLOCKS-1)
|
2023-04-27 13:38:41 +02:00
|
|
|
{
|
|
|
|
output += ",";
|
|
|
|
}
|
|
|
|
}
|
2023-04-28 10:56:26 +02:00
|
|
|
if (tc_testOngoing == false)
|
|
|
|
{
|
2023-04-28 12:01:50 +02:00
|
|
|
output += "], \"currenttime\":{\"hour\":" + (String)hour() + ",\"min\":" + (String)minute() + "}}";
|
2023-04-28 10:56:26 +02:00
|
|
|
} else {
|
|
|
|
output += "], \"currenttime\":{\"hour\":16,\"min\":0}}";
|
|
|
|
}
|
2023-04-27 13:38:41 +02:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2023-04-27 13:51:00 +02:00
|
|
|
//********************************//
|
|
|
|
|
2023-04-27 16:40:27 +02:00
|
|
|
void tc_jsonDataBlocksToEEPROM(String json_data_string)
|
2023-04-27 13:38:41 +02:00
|
|
|
{
|
|
|
|
StaticJsonDocument<512> doc;
|
|
|
|
deserializeJson(doc, json_data_string);
|
|
|
|
|
|
|
|
// Loop through each data block in the JSON data and store it in the tc_data array
|
2023-04-27 16:40:27 +02:00
|
|
|
for (uint8_t i = 0; i < NUMBER_OF_TIMER_DATA_BLOCKS; i++)
|
2023-04-27 13:38:41 +02:00
|
|
|
{
|
|
|
|
JsonObject obj = doc[i];
|
2023-04-27 13:51:00 +02:00
|
|
|
tc_data[i].hh = obj["hour"];
|
|
|
|
tc_data[i].mm = obj["min"];
|
2023-04-27 13:38:41 +02:00
|
|
|
tc_data[i].ch1 = obj["ch1"];
|
|
|
|
tc_data[i].ch2 = obj["ch2"];
|
|
|
|
tc_data[i].ch3 = obj["ch3"];
|
|
|
|
tc_data[i].ch4 = obj["ch4"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the tc_data array to the EEPROM
|
|
|
|
for (uint16_t i = 0; i < (NUMBER_OF_TIMER_DATA_BLOCKS * LENGTH_OF_TIMER_DATA_BLOCK); i++)
|
|
|
|
{
|
|
|
|
EEPROM.write(EEPROM_TIMING_DATA_ADDRESS + i, *((uint8_t*)&tc_data + i));
|
|
|
|
}
|
|
|
|
EEPROM.commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
//********************************//
|