Set time date helper 60 mins in the future

Hello,

Again I know this is a simple one but I have real issues using the time data helper. I’m trying set up an automation that when a device is switched on it sets the value of a time date helper to 10 hours time. I can get it to set the current time but can’t figure out where i need to place the 606010 to set the value for 10 hours time.
Is anybody able to help, this is the code I currently have.

service: input_datetime.set_datetime
data:
  datetime: '{{ now().strftime(''%Y-%m-%d %H:%M:%S'') }}'
entity_id: input_datetime.heated_airer
{{ (as_timestamp(now())+ 36000 )|timestamp_custom('%Y-%m-%d %H:%M:%S') }}

Remove a zero, that’s 10 hours

Edit: unless that’s what op wants which differs from his title??

Yeah, I know. :slightly_smiling_face:

The title of the thread and what the OP asked for in the first post don’t match.

I replied to the post, not the title.

:man_shrugging: yeah I just read the title then your answer. Then responded. Then I read his post :joy::joy:

So much for morning browsing while not awake

1 Like

Cheers, that worked.

Yeah sorry for the confusion, I must have also been half asleep when typing it! It more where to put the seconds and in what format!