Zum Inhalt

slot0_test.tc

Slot 0 test — Counter A (increments every second)

Source on GitHub

// Slot 0 test — Counter A (increments every second)
int counterA = 0;

void EverySecond() {
    counterA++;
}

void WebCall() {
    char buf[64];
    sprintf(buf, "{s}Slot 0 Counter A{m}%d{e}", counterA);
    webSend(buf);
}

int main() {
    return 0;
}