Indention fixed

This commit is contained in:
Kai Lauterbach 2023-04-27 13:51:00 +02:00
parent 334dd19614
commit b553db6206

View file

@ -387,6 +387,8 @@ String tc_getJsonData()
return output;
}
//********************************//
tc_jsonDataBlockToEEPROM(String json_data_string)
{
StaticJsonDocument<512> doc;
@ -396,8 +398,8 @@ tc_jsonDataBlockToEEPROM(String json_data_string)
for (uint8_t i = 0; i < LENGTH_OF_TIMER_DATA_BLOCK; i++)
{
JsonObject obj = doc[i];
tc_data[i].hh = obj["hour"];
tc_data[i].mm = obj["min"];
tc_data[i].hh = obj["hour"];
tc_data[i].mm = obj["min"];
tc_data[i].ch1 = obj["ch1"];
tc_data[i].ch2 = obj["ch2"];
tc_data[i].ch3 = obj["ch3"];