Synchronize emotional health
JSON fields received by the App:
Field name | Field type | Field description |
---|---|---|
year | int | Data date year |
month | int | Data date month |
day | int | Data date day |
start_time | int | Start time, in minutes, offset from 0 |
emotion_health_item_num | int | Number of emotional health values, maximum value 1440 |
items | Collection | Emotional health values, collection of time_offset & emotion_health_val |
Field name | Field type | Field description |
---|---|---|
time_offset | int | Time offset, in minutes |
emotion_health_val | int | Emotional health value, 0xFF invalid value 0: Happy 1: Calm 2: Unhappy |
Example:
{
"year":2022,
"month":12,
"day":26,
"start_time":0,
"emotion_health_item_num":0,
"items":[
{
"time_offset":5,
"emotion_health_val":0
}
]
}