How to set the Idle on the config

How do you set the Idle on the config? It looks like in the manual the middle number is the minutes . I am not quite sure. Maybe that’s the only thing you need to change. This is probably a easy one.

Easy it is, my friend!
The value is milliseconds. You can calculate a number anyway you like,
but to make a minute-friendly version, you’d multiply 60 seconds x N minutes x 1000 to get the result in milliseconds.
#define IDLE_OFF_TIME 60*5*1000
Is the same as
#define IDLE_OFF_TIME 60*5000
or
#define IDLE_OFF_TIME 300*1000
or
#define IDLE_OFF_TIME 300000
or
#define IDLE_OFF_TIME 800000-500000

No difference.

Thank you again. :+1: MTFBWY