move the Wrapper-Project out of the root directory and change readme and docs
This commit is contained in:
parent
fd48cc36c5
commit
747ec6e9c9
19 changed files with 34 additions and 35 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue