#pragma once #include 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); } }