From 261bc5ae85a59aee5cc2aae103b7bac21eb74388 Mon Sep 17 00:00:00 2001 From: volca Date: Thu, 27 Oct 2016 20:43:27 +0800 Subject: [PATCH] Add from original Arduino.h (#26) --- cores/esp32/Arduino.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cores/esp32/Arduino.h b/cores/esp32/Arduino.h index 4489fbdb..5375d695 100644 --- a/cores/esp32/Arduino.h +++ b/cores/esp32/Arduino.h @@ -145,6 +145,12 @@ typedef unsigned int word; #define _min(a,b) ((a)<(b)?(a):(b)) #define _max(a,b) ((a)>(b)?(a):(b)) +// WMath prototypes +long random(long); +long random(long, long); +void randomSeed(unsigned long); +long map(long, long, long, long, long); + #include "pins_arduino.h" #endif /* _ESP32_CORE_ARDUINO_H_ */