move the Wrapper-Project out of the root directory and change readme and docs

This commit is contained in:
ZennDev1337 2023-08-16 12:08:25 +02:00
parent fd48cc36c5
commit 747ec6e9c9
19 changed files with 34 additions and 35 deletions

View file

@ -0,0 +1,18 @@
#pragma once
#include <Arduboy2.h>
extern "C"
{
long arduino_random_between(long min, long max)
{
return random(min, max);
}
long arduino_random_less_than(long max)
{
return random(max);
}
void arduino_delay(unsigned long ms)
{
delay(ms);
}
}