1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
Thomas Kohler 865e724af0
Build(v2): revert move to v2 subfolder (#932)
* revert move to v2 subfolder
* fix CI and adjust CHANGELOG
2023-05-29 19:23:28 +02:00

14 lines
196 B
C

#ifndef LITTLEWIRE_UTIL_H
#define LITTLEWIRE_UTIL_H
#ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h>
#endif
/* Delay in miliseconds */
void delay(unsigned int duration);
#endif