mirror of
https://github.com/xodio/xod.git
synced 2026-03-04 07:54:04 +01:00
13 lines
142 B
C++
13 lines
142 B
C++
|
|
#include "Arduino.h"
|
|
|
|
static uint32_t g_time = 1;
|
|
|
|
uint32_t millis() {
|
|
return ++g_time;
|
|
}
|
|
|
|
void delay(uint32_t dt) {
|
|
g_time += dt;
|
|
}
|