Ho
I recognized the Interval is confusing on this - I used it too the first time to create a delay but it is not the right way
There is currently no element to implement a 'real' dealy.
You have to append the code in the code editor to do that.
See for example how the buzzer sound duration is set in the code:
ATMO_Status_t EmbeddedNxpRpkBuzzer_beep(ATMO_Value_t *in, ATMO_Value_t *out) {
ATMO_MK64F_Buzzer_On();
ATMO_PLATFORM_DelayMilliseconds(200);
ATMO_MK64F_Buzzer_Off();
return ATMO_Status_Success;
You have to call ATMO_PLATFORM_DelayMilliseconds()
You might also check the code for
ATMO_DelayMillisecondsNonBlock()
but I never used this one myself.