add sum day data

This commit is contained in:
Yunhorn 2025-01-15 13:27:31 +08:00
parent 7b0c42df47
commit 110b3f6e06
2 changed files with 7 additions and 0 deletions

View File

@ -680,6 +680,13 @@ void STS_TOF_VL53LX_PeopleCounting_Process_Start(void)
{
sts_people_count_sensor_data.Count_Valid = 0;
//APP_LOG(TS_OFF, VLEVEL_M,"# Counting time out... \r\n");
} else {
// add up counting value since begin of day till now
sts_people_count_sensor_data.Sum_Day_Walk_In_People_Count += sts_people_count_sensor_data.Walk_In_People_Count;
sts_people_count_sensor_data.Sum_Day_Walk_Out_People_Count += sts_people_count_sensor_data.Walk_Out_People_Count;
sts_people_count_sensor_data.Sum_Day_Walk_Around_People_Count += sts_people_count_sensor_data.Walk_Around_People_Count;
}
}