ticker(second)

koadrobot/arduino/ticker(second)

Outputs pulses at regular intervals in seconds.
ticker(second)
@/ticker(second)
Outputs pulses at regular intervals in seconds.
ENboolean
Enabled or not. If set to `false` pulses on `UPD` do not change the output value. Effictively that means the timer is paused. Set to `true` again to continue time counting.
Tsecnumber
Tick interval in second.
UPDpulse
Triggers the time value update.
ticker(second)
EN
Tsec
UPD
TICK
TICKpulse
Pulses on each time interval end
To use the node in your project you should have the koadrobot/arduino library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

struct State 
{
  TimeMs nextTrig;
};

{{ GENERATED_CODE }}

void evaluate(Context ctx) 
{
    State* state = getState(ctx);

    TimeMs tNow = transactionTime();
    TimeMs tms = getValue<input_Tsec>(ctx) * 1000;  // seconds to milliseconds
    
    if (tms < 0) tms = 0;
    TimeMs tNext = tNow + tms;

    auto isEnabled = getValue<input_EN>(ctx);
    auto isRstDirty = isInputDirty<input_UPD>(ctx);

    if (isTimedOut(ctx) && isEnabled && !isRstDirty) 
    {
        emitValue<output_TICK>(ctx, 1);
        state->nextTrig = tNext;
        setTimeout(ctx, tms);
    }

    if (isRstDirty || isEnabled) 
    {
        // Handle enable/disable/reset
        if (!isEnabled) 
        {
            // Disable timeout loop on zero IVAL or explicit false on EN
            state->nextTrig = 0;
            clearTimeout(ctx);
        } 
        else if (state->nextTrig < tNow || state->nextTrig > tNext) 
        {
            // Start timeout from scratch
            state->nextTrig = tNext;
            setTimeout(ctx, tms);
        }
    }
}

Tabular tests

__time(ms)TsecENUPDTICK
00.1trueno-pulseno-pulse
1000.1truepulseno-pulse
1200.1trueno-pulseno-pulse
2010.1trueno-pulsepulse
2500.1trueno-pulseno-pulse
3020.1trueno-pulsepulse
3500.1falseno-pulseno-pulse
4030.1falseno-pulseno-pulse
01truepulseno-pulse
5001truepulseno-pulse
10011trueno-pulseno-pulse
15011trueno-pulsepulse
// edge case: when IVAL is 0, `clock` should constantly emit pulses
00trueno-pulsepulse
10trueno-pulsepulse
21trueno-pulsepulse
10031trueno-pulsepulse
// edge case: when IVAL is negative, behave like it's 0
0-1trueno-pulsepulse
1-1trueno-pulsepulse
21trueno-pulsepulse
10031trueno-pulsepulse